1. 23
    Redux: Extracting Container Components (VisibleTodoList, AddTodo)
    6m 19s

Redux: Extracting Container Components (VisibleTodoList, AddTodo)

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 avoid the boilerplate of passing the props down the intermediate components by introducing more container components.

[00:00] In the previous lesson, I separated the link presentational component from the filter link container component that is subscribed to the Redux chore and that provides the data and the behavior for the link component it renders.

[00:14] While it makes the data flow a little bit less explicit, it makes it easy to use filter link in any component without worrying about passing additional data to the filter link or to the component that contains it. In this lesson we'll continue extracting the container components from the top level container component. The first candidate is the ToDoList component.

[00:39] I actually want to keep the ToDoList presentational component. However, I want to encapsulate within the currently visible ToDos this into a separate container component that connects the ToDoList to the Redux chore. I'm going to call this component the visible ToDoList.

[00:59] Just like when declaring the filter link component in the previous lesson, I calculate the data from the current component by using the current state which is the state from the Redux chore. I'm using the get visible ToDos function to calculate the currently visible ToDos based on all the ToDos from the Redux chore and the current visibility filter from the Redux chore state. I'm specifying the behavior as well. I'm seeing that when the ToDo is clicked, we should dispatch an action [inaudible] type toggle ToDo and the ID of the ToDo being clicked.

[01:36] All container components are similar. Their job is to connect a presentational component to the Redux chore and specify the data and the behavior that it needs. I'm scrolling up to the filter link container component I wrote in the previous lesson to copy-paste this chore subscription logic.

[01:57] Just like the filter link, the visible ToDoList is going to subscribe to this chore and force an update any time this chore state changes because it uses this state in its render method. Now that the visible ToDoList is connected to the Redux chore, we can use it instead of the TodoList. We no longer have to pass all the props from the top.

[02:19] Finally, in the previous lesson, I made app ToDo a presentational component, but I'm going to backtrack on this now. I will copy-paste the dispatch call back in line into the onClick handler inside the component because there isn't really a lot of presentation or behavior here.

[02:39] It's easier to keep them together until we figure out how to split the presentation. For example, if in the future, we're going to have something like a form component, we may split it, but for now we'll keep them together.

[02:51] I'm scrolling down to my ToDo app component. I'm removing the onAuth click prop. I just noticed that none of the containers actually need any props from this street. I can remove the props of the ToDo app component. I can remove the render function that renders the ToDo app component with the current street of this chore because I can just call it once, remove all the props that are related to this state and just render it as is because the container components that I render are going to subscribe to this chore themselves and are going to update themselves when this chore state changes.

[03:33] Let's recap the data flow after separating the presentational and the container components. There is just one react on render call at the very end. We don't render again when this chore state changes because the container components take care of that.

[03:50] The first component I'm looking at is called a ToDo. Frankly, I can classify it either as a presentational component or as a container component because it doesn't fit either category. The input and the button are the presentational part, but dispatching an action onClick is the behavior which is usually specified by the container.

[04:13] However, in this case, I'd rather keep them together because there isn't any street, the UI is very simple. It's hard to imagine any other behavior other than dispatching the at ToDo action.

[04:28] The second component are rendering inside the at To-Do app is called the visible ToDoList. This time, it is a proper container component that subscribes to this chore and re-renders the ToDoList any time this chore state changes. It calculates the visible ToDos from the current Redux chore street, the ToDos and the visibility filter fields. It passes them as the To-Dos.

[04:54] When the To-Dos are clicked, it's going to dispatch an action with the type [inaudible] ToDo and the ID of the respective ToDo. The actual rendering here is performed by the ToDoList component that just renders the ToDos passed through it as prop and binds their clicks through the on ToDo click prop.

[05:14] Finally, the last component ToDo app renders is the footer. The footer is just a presentational component rendering three different filter links. The filter link is a container component. It subscribes to this chore and it renders the presentational component called, "link," calculating whether it should be active based on its props and the current Redux chore street and specifies the behavior what happens when it's clicked.

[05:45] Finally, the link component is just a presentational component that render a-check. Separating the container and the presentational components is often a good idea, but you shouldn't take it as a dogma. Only do this when it truly reduces the complexity of your code base.

[06:04] In general, I suggest first trying to extract the presentational components. If there is too much boilerplate passing the props through them, then you can create the containers around them that load the data and specify the behavior.

Dillon
Dillon
~ 7 years ago

These videos deserve a Nobel. I've never experienced anything taught so well.

Anil Jeeyani
Anil Jeeyani
~ 5 years ago

Hi Dan, I am wondering on store.subscribe() to VisibleTodoList and FilterLink container components. so do they render same time whenever store changes? like in async way?

wendy
wendy
~ 5 years ago

how to use forceUpdate in React hooks ?

Michael
Michael
~ 4 years ago

You have a lot of components in one file. In real world use would you separate each component to its own file?

Zac Jones
Zac Jones
~ 4 years ago

@Michael The amount of components in one file in the lesson above is definitely extreme. File/component structure will largely depend on your team preferences and isn't strictly 1-to-1 on component to file.

In Build A React App With Redux, Andy structures his app in a more common pattern though you'll notice that for something like a TodoList he'll define a TodoItem inline.

Markdown supported.
Become a member to join the discussionEnroll Today