Build a React To-Do App with Hooks

In this React tutorial for beginners, we are going to build a “to-do list”.

10 Min Read
|
Technical

Hooks

Hooks were first introduced to React back in 2019, when React 16.8 was released to the public. Although only being around for a few years they have quickly become the standard when developing with React. 

Hooks allow you to hook into the state, and use other React features without having to write a class. There are several different hooks available to use in our application.

Some of the popular ones include:

useState: Helps to pass in the state variables in a functional component. 

useEffect: Comes into play for any side effect that needs to be performed after updating the DOM. It takes two arguments: a function and an optional array. 

useContext: Helps to build a context API. It is used to share data without passing in props.  

Before hooks, we would use classes for React components in order to use state and other React features. Hooks provide a more flexible and simpler way to do this.  

1. Create a React app

Inside your terminal type in the following:

npm: npx create-react-app my-to-do-list

2. Navigate inside of App.js

Delete everything between the two <div> tags  

3. Create a new file called Title.js

Inside of it create a presentational component that displays the title of your application.

4. Navigate back to App.js

Import the Title component

5. Create a new file called mock-todos.json inside the src folder

Inside of this json file it will include the tasks for the app, if they are completed and a unique id.

6. Navigate back to App.js

Import the mock-todos.json. 

7. Read the data from the mock to-dos

We will need to read the data from the mock-todos.json and will use useState() in order to do that. Import the useState() hook. Declare both toDoList and setToDo. Pass into useState() the todos. 

8. Create a new file called ToDoList.js

This will hold all of the to-do’s.

9. Navigate back to App.js and import ToDoList.js

Pass in the toDoList in the ToDoList component 

10. Create a new file called ToDo.js

This will contain individual to-do’s. Leave it empty for now. 

11. Navigate back to the ToDoList.js component

Import the ToDo component we just created. Next, we need to map over our toDoList. 

12. Navigate into ToDo.js

Map over each todo in order to add specific styling to each to-do later on. On the parent <div>, create a className that includes a ternary expression which checks if the todo.done is true, style the text to turn red when a user clicks on the item to be done.

13. Navigate to index.css

Remove all of the current code and add the below:

14. Create a function that will allow us to dynamically select if a task is complete.

Navigate back to App.js where we are controlling the state. Create a new function called toggle() that takes in the unique id. Inside this function map over the toDoList and return the todo.id based on the to-do that was selected. 

15. Pass the toggle() in the ToDoList component.

Add the below:

16. Handle the toggle() function inside ToDoList.js.

Pass it into the ToDo component. 

17. Inside of ToDo.js we need to handle the click.

Create a handleClick() function that will call the toggle() function and pass into it the unique id. 

We have just completed part 1 in this React tutorial series. Make sure to follow along for part 2!