Tạo một component CurrencyConverter trong ReactJS
Trong bài này, mình sẽ tạo một component CurrencyConverter
chứa một biểu mẫu cho phép người dùng nhập số tiền và chọn đơn vị tiền tệ, sử dụng Controlled Components để quản lý trạng thái và hiển thị kết quả chuyển đổi trong console.
Currency Converter trong ReactJS
Mình sẽ bắt đầu bằng việc tạo một ứng dụng React mới và thêm component CurrencyConverter
vào đó.
Bước 1: Tạo một ứng dụng React mới
npx create-react-app react-currency-converter cd react-currency-converter
Bước 2: Tạo component CurrencyConverter
Trong thư mục src, tạo một file mới có tên là CurrencyConverter.js.
File này sẽ chứa component CurrencyConverter
.
CurrencyConverter.js
import React, { useState } from 'react'; import './CurrencyConverter.css'; const CurrencyConverter = () => { const [amount, setAmount] = useState(''); const [currency, setCurrency] = useState('USD'); const handleAmountChange = (e) => { setAmount(e.target.value); }; const handleCurrencyChange = (e) => { setCurrency(e.target.value); }; const handleSubmit = (e) => { e.preventDefault(); console.log('Số tiền:', amount); console.log('Đơn vị tiền tệ:', currency); // Thêm logic chuyển đổi tiền tệ ở đây (ví dụ: gửi đến API, tính toán kết quả, ...) }; return ( <div className="currency-converter-container"> <form onSubmit={handleSubmit}> <label> Nhập số tiền: <input type="number" value={amount} onChange={handleAmountChange} step="0.01" placeholder="0.00" /> </label> <br /> <label> Chọn đơn vị tiền tệ: <select value={currency} onChange={handleCurrencyChange}> <option value="USD">USD</option> <option value="EUR">EUR</option> <option value="GBP">GBP</option> {/* Thêm các đơn vị tiền tệ khác nếu cần */} </select> </label> <br /> <button type="submit">Chuyển Đổi</button> </form> </div> ); }; export default CurrencyConverter;
Bước 3: Tạo file CSS cho CurrencyConverter
Tạo một file CSS mới có tên là CurrencyConverter.css
trong thư mục src để trang trí giao diện của CurrencyConverter
.
CurrencyConverter.css
.currency-converter-container { max-width: 400px; margin: auto; padding: 20px; border: 1px solid #ccc; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } label { display: block; margin-bottom: 8px; } input, select { width: 100%; padding: 8px; margin-bottom: 16px; border: 1px solid #ccc; border-radius: 4px; } button { background-color: #3498db; color: white; padding: 10px 15px; border: none; border-radius: 4px; cursor: pointer; } button:hover { background-color: #2980b9; }
Bước 4: Sử dụng component CurrencyConverter trong App
Sửa nội dung file src/App.js
để sử dụng component CurrencyConverter
.
App.js
import React from 'react'; import CurrencyConverter from './CurrencyConverter'; function App() { return ( <div className="App"> <h1>React Currency Converter Exercise</h1> <CurrencyConverter /> </div> ); } export default App;
Bước 5: Chạy ứng dụng React
Quay lại terminal và chạy lệnh sau để khởi động ứng dụng React:
npm start
Mở trình duyệt và truy cập http://localhost:3000 để xem ứng dụng của bạn. Bạn sẽ thấy một biểu mẫu cho phép người dùng nhập số tiền và chọn đơn vị tiền tệ, và nút "Chuyển Đổi". Khi bạn nhập thông tin và nhấn nút, thông tin về số tiền và đơn vị tiền tệ sẽ hiển thị trong console.
Kết bài:
Với bài tập "Currency Converter" này, mình đã sử dụng Controlled Components để quản lý trạng thái và xử lý sự kiện khi người dùng nhập số tiền và chọn đơn vị tiền tệ. CSS đã được kết hợp để tạo ra giao diện thân thiện và dễ sử dụng. Hãy tiếp tục tìm hiểu và thực hành để làm quen với các tính năng khác của ReactJS và phát triển kỹ năng lập trình của bạn!
Bài giải
-------------------- ######## --------------------
Câu hỏi thường gặp liên quan:
- Tạo một component BasicForm trong ReactJS
- Tạo một component LoginForm trong ReactJS
- Tạo một component RegistrationForm trong ReactJS
- Tạo một component SearchBar trong ReactJS
- Tạo một component TodoForm trong ReactJS
- Tạo một component FileUpload trong ReactJS
- Tạo một component PasswordChangeForm trong ReactJS
- Tạo một component DynamicFormFields trong ReactJS
- Tạo một component CurrencyConverter trong ReactJS
- Tạo một component DatePicker trong ReactJS
- Tạo một component AutocompleteSearch trong ReactJS
- Tạo một component SurveyForm trong ReactJS
- Tạo một component MultiStepForm trong ReactJS
- Tạo một component ColorPicker trong ReactJS
- Tạo một component AddressForm trong ReactJS
- Tạo một component SurveyPoll trong ReactJS
- Tạo một component TimeTrackingForm trong ReactJS
- Tạo một component QuizForm trong ReactJS
- Tạo một component ReservationForm trong ReactJS