Hello folks! welcome back to a new section of our tutorial on ReactJS. In this section of our tutorial on ReactJS, we will be studying about ReactJS controlled component.
Controlled component must follow a unique process to perform Form programming. Let us check the step by step procedures to be followed for a single input element.
Create a form element.
Controlled component must follow a unique process to perform Form programming. Let us check the step by step procedures to be followed for a single input element.
Create a form element.
<input type="text" name="username" />
Create a state for input element.
this.state = { username: '' }
Add a value attribute and assign the value from state.
<input type="text" name="username" value={this.state.username} />
Next, add an onChange attribute and assign a handler method.
<input type="text" name="username" value={this.state.username} onChange={this.handleUsernameChange} />
Next, write the handler method and update the state whenever the event is triggered.
handleUsernameChange(e) { this.setState({ username = e.target.value }); }
Bind the event handler in the constructor of the component.
this.handleUsernameChange = this.handleUsernameChange.bind(this)
Lastly, get the input value by making use of username from this.state during validation and submission.
handleSubmit(e) { e.preventDefault(); alert(this.state.username); }
Let us create a simple form to add expense entry making use of controller component is this tutorial.
First, create a new react application, react-form-app using Create React App or Rollup bundler following instructions in Creating a React application tutorial.
Next, open the application in your favorite editor.
Next, create an src folder beneath the root directory of the application.
Next, create component folder beneath src folder.
Next, create a file, ExpenseForm.css under src folder to style the component.
First, create a new react application, react-form-app using Create React App or Rollup bundler following instructions in Creating a React application tutorial.
Next, open the application in your favorite editor.
Next, create an src folder beneath the root directory of the application.
Next, create component folder beneath src folder.
Next, create a file, ExpenseForm.css under src folder to style the component.
input[type=text], input[type=number], input[type=date], select { width: 100%; padding: 12px 20px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } input[type=submit] { width: 100%; background-color: #4CAF50; color: white; padding: 14px 20px; margin: 8px 0; border: none; border-radius: 4px; cursor: pointer; } input[type=submit]:hover { background-color: #45a049; } input:focus { border: 1px solid #d9d5e0; } #expenseForm div { border-radius: 5px; background-color: #f2f2f2; padding: 20px; }
Next, create a file, ExpenseForm.js beneath src/components folder and start editing.
Next, import React library.
Next, import React library.
import React from 'react';
Next, import ExpenseForm.css file.
import './ExpenseForm.css'
Next, create a class, ExpenseForm and call constructor with props.
class ExpenseForm extends React.Component { constructor(props) { super(props); } }
Next, initialize the state of the component.
this.state = { item: {} }
Next, create a render() method and add a form with input fields to add expense items.
render() { return ( <div id="expenseForm"> <form> <label for="name">Title</label> <input type="text" id="name" name="name" placeholder="Enter expense title" /> <label for="amount">Amount</label> <input type="number" id="amount" name="amount" placeholder="Enter expense amount" /> <label for="date">Spend Date</label> <input type="date" id="date" name="date" placeholder="Enter date" /> <label for="category">Category</label> <select id="category" name="category" <option value="">Select</option> <option value="Food">Food</option> <option value="Entertainment">Entertainment</option> <option value="Academic">Academic</option> </select> <input type="submit" value="Submit" /> </form> </div> ) }
Next, create event handler for all the input fields to update the expense details in the state.
handleNameChange(e) { this.setState( (state, props) => { let item = state.item item.name = e.target.value; return { item: item } }); } handleAmountChange(e) { this.setState( (state, props) => { let item = state.item item.amount = e.target.value; return { item: item } }); } handleDateChange(e) { this.setState( (state, props) => { let item = state.item item.date = e.target.value; return { item: item } }); } handleCategoryChange(e) { this.setState( (state, props) => { let item = state.item item.category = e.target.value; return { item: item } }); }
Bind the event handler in the constructor.
this.handleNameChange = this.handleNameChange.bind(this); this.handleAmountChange = this.handleAmountChange.bind(this); this.handleDateChange = this.handleDateChange.bind(this); this.handleCategoryChange = this.handleCategoryChange.bind(this);
Next, add an event handler for the submit action.
onSubmit = (e) => { e.preventDefault(); alert(JSON.stringify(this.state.item)); }
Next, attach the event handlers to the form.
render() { return ( <div id="expenseForm"> <form onSubmit={(e) => this.onSubmit(e)}> <label for="name">Title</label> <input type="text" id="name" name="name" placeholder="Enter expense title" value={this.state.item.name} onChange={this.handleNameChange} /> <label for="amount">Amount</label> <input type="number" id="amount" name="amount" placeholder="Enter expense amount" value={this.state.item.amount} onChange={this.handleAmountChange} /> <label for="date">Spend Date</label> <input type="date" id="date" name="date" placeholder="Enter date" value={this.state.item.date} onChange={this.handleDateChange} /> <label for="category">Category</label> <select id="category" name="category" value={this.state.item.category} onChange={this.handleCategoryChange} > <option value="">Select</option> <option value="Food">Food</option> <option value="Entertainment">Entertainment</option> <option value="Academic">Academic</option> </select> <input type="submit" value="Submit" /> </form> </div> ) }
Finally, export the component.
export default ExpenseForm
The complete code of the ExpenseForm component is as follows -
import React from 'react'; import './ExpenseForm.css' class ExpenseForm extends React.Component { constructor(props) { super(props); this.state = { item: {} } this.handleNameChange = this.handleNameChange.bind(this); this.handleAmountChange = this.handleAmountChange.bind(this); this.handleDateChange = this.handleDateChange.bind(this); this.handleCategoryChange = this.handleCategoryChange.bind(this); } handleNameChange(e) { this.setState( (state, props) => { let item = state.item item.name = e.target.value; return { item: item } }); } handleAmountChange(e) { this.setState( (state, props) => { let item = state.item item.amount = e.target.value; return { item: item } }); } handleDateChange(e) { this.setState( (state, props) => { let item = state.item item.date = e.target.value; return { item: item } }); } handleCategoryChange(e) { this.setState( (state, props) => { let item = state.item item.category = e.target.value; return { item: item } }); } onSubmit = (e) => { e.preventDefault(); alert(JSON.stringify(this.state.item)); } render() { return ( <div id="expenseForm"> <form onSubmit={(e) => this.onSubmit(e)}> <label for="name">Title</label> <input type="text" id="name" name="name" placeholder="Enter expense title" value={this.state.item.name} onChange={this.handleNameChange} /> <label for="amount">Amount</label> <input type="number" id="amount" name="amount" placeholder="Enter expense amount" value={this.state.item.amount} onChange={this.handleAmountChange} /> <label for="date">Spend Date</label> <input type="date" id="date" name="date" placeholder="Enter date" value={this.state.item.date} onChange={this.handleDateChange} /> <label for="category">Category</label> <select id="category" name="category" value={this.state.item.category} onChange={this.handleCategoryChange} > <option value="">Select</option> <option value="Food">Food</option> <option value="Entertainment">Entertainment</option> <option value="Academic">Academic</option> </select> <input type="submit" value="Submit" /> </form> </div> ) } } export default ExpenseForm;
Next, create a file, index.js beneath the src folder and use ExpenseForm component.
import React from 'react'; import ReactDOM from 'react-dom'; import ExpenseForm from './components/ExpenseForm' ReactDOM.render( <React.StrictMode> <ExpenseForm /> </React.StrictMode>, document.getElementById('root') );
Finally, create a public folder under the root folder and create index.html file.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>React App</title> </head> <body> <div id="root"></div> <script type="text/JavaScript" src="./index.js"></script> </body> </html>
Next, serve the application making use of npm command.
npm start
Next, open the web browser and then enter http://localhost:3000 in the address bar and press enter.
Finally, enter a sample expense details and then click on submit button. The submitted data will be collected and showed in a pop-up message box.
READ: ReactJS | Material UI
Alright guys! This is where we are going to be rounding up for this tutorial. In our next tutorial, we are going to be studying about ReactJS Uncontrolled Component.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.