1. 18
    Redux: React Todo List Example (Toggling a Todo)
    3m 29s

Redux: React Todo List Example (Toggling a Todo)

Dan Abramov
InstructorDan Abramov
Share this video with your friends

Social Share Links

Send Tweet
Published 8 years ago
Updated 3 years ago

Learn how to create a React todo list application using the reducers we wrote before.

[00:00] In the last lesson, we implemented a simple UI for the todo list application that is able to add new todos and view the existing todos in the list.

[00:11] To add the todos, we dispatched the add todo action. In this lesson, we're going to dispatch the toggle todo action to toggle the completed state of the todos by clicking on them.

[00:22] I'm scrolling down to my React component. I've got a list item here corresponding to the todo, so I'm adding the on click handler. When the user clicks on the list item, I want to dispatch an action to my store with a type toggle todo and the ID of the todo being toggled, which I get from the todo object.

[00:47] The event handler knows which todo it corresponds to, so it is able to pass its ID in the action.

[00:54] In the user interface, I want the completed todos to appear crossed out, so I'm adding this trial attribute to the list item. I'm going to use the text decoration property, which is going to be a line through when todo completed is true, and non when todo completed is false, so I get a normal looking todo.

[01:19] Now, if I add a couple of todos, I can click on them and they're going to appear toggled, and I can toggle them back. Isn't that satisfying?

[01:31] Let's recap how toggling the todo actually works.

[01:35] It starts with me dispatching the toggle todo action inside my click handler, with a type toggle todo and the ID, which is the ID of the todo being rendered. I get the todo object as an argument to the array map call back inside my render method where I render all the todos.

[01:56] When an action is dispatched, the store will call the root reducer, which will call the todos reducer with the array of todos and the action. In this case, the action type is toggle todo, so the todos reducer delegates handling of every todo to the todo reducer with a map function to call it for every todo item. The todo reducer receives the todo as state, and the action.

[02:24] Again, we switch on the action type, and it matches toggle todo string. Now, for every todo whose ID does not match the ID specified in the action, we just return the previous state, that is the todo object, as it was.

[02:39] However, if the ID of the todo matches the one specified in the action, we're going to return any object with all the properties of the original todo, but with the completed field equal to the opposite value of what it was.

[02:56] The updated todo item will be included in the todos field under the new application state. Because we subscribe, the render function is going to get the next state of the application in store -- get state -- and pass the new version of the todos to the todo app component, which is going to render the updated todos.

[03:18] Finally, this trial of the list item, the bands on the todo completed field, which we just updated, which is why it re-renders in a cross-child state.

Ashwin
Ashwin
~ 8 years ago

Dan, the recaps you give at the end of the lessons are great!

Sebastian Belmar
Sebastian Belmar
~ 8 years ago

Isn't that satisfying?

Oisín
Oisín
~ 7 years ago

It sure is :)

Jeremy Stover
Jeremy Stover
~ 5 years ago

Recaps make this so much easier to understand!

Markdown supported.
Become a member to join the discussionEnroll Today