Make Compound React Components Flexible

Kent C. Dodds
InstructorKent C. Dodds
Share this video with your friends

Social Share Links

Send Tweet
Published 6 years ago
Updated 3 years ago

Our current compound component implementation is great, but it's limited in that users cannot render the structure they need. Let's allow the user to have more flexibility by using React context to share the implicit state to our child <Toggle/> components. We will walk through using React's official context API with React.createContext and use the given Provider and Consumer components to share state implicitly between our compound components giving our users the flexibility they need out of our component.

Instructor: [00:00] Our toggle button is now broken, and it's because somebody's using our compound components in an unexpected way, by nesting the toggle button in a div.

[00:08] The problem is that we're mapping over our this.props.children, but that only includes toggle on, toggle off, and a div. It doesn't include any of the children of those child elements.

[00:21] If we want to enable this kind of structural flexibility, then we need to find some other way to provide the on and toggle properties to these components. We're going to use React Context to do that.

[00:35] We'll start with consttogglecontext=react.createcontext. Then we'll use toggle context provider to provide these values to our compound components.

[00:45] We'll return toggle context provider. As the children, it'll be this.props.children. For the value, we'll actually provide the same object here. Then we can remove this.

[00:59] Next we need to update our compound components to consume those values rather than accept them as props, so we'll start with this one. We'll take this, and we'll return togglecontext.consumer.

[01:12] As the children here, it's going to be a function that accepts the context value and returns what we want it to render, so we'll say contextvalue.on.

[01:22] Now we no longer need the on prop because the on component is going to be responsible for getting that context value out of context using the toggle context consumer.

[01:32] We'll do something very similar for the off static component. We'll get rid of this one. We'll change this to off, and if it is on, then we'll render null. Otherwise, we'll render children.

[01:44] For the button, we'll render togglecontext.consumer. For children, we'll say context value and render the switch, where on comes from contextvalue.on, and toggle comes from contextvalue.toggle.

[02:03] Then we don't need on and toggle from props anymore. We can just call this props, and spread the rest of the props to the switch. With that, our toggle button is now working again.

Cristofer
Cristofer
~ 6 years ago

Hey Kent! enjoying a lot this course so far! I am wondering about the use of context, in our company we are still using React 15, and we would like to migrate soon to 16. We are using context in some places, however we know that the API was experimental and actually it was not recommended to use it. I am wondering if for 16 is safe to use, I also notice that the way of using it is a bit different, so maybe now is "stable" and ready to go. Thanks!

Kent C. Dodds
Kent C. Doddsinstructor
~ 6 years ago

Hi Cristofer,

The new context API is stable and recommended for use. Learn more here, here, and here.

Joseph Curtis
Joseph Curtis
~ 6 years ago

These videos helped me out enormously, I got my moneys worth for the subscription and thank you Kent for the great videos!

Kent C. Dodds
Kent C. Doddsinstructor
~ 6 years ago

Awesome Joseph! I'm so glad :)

Philipp Blume
Philipp Blume
~ 5 years ago

These videos helped me out enormously, I got my moneys worth for the subscription and thank you Kent for the great videos! Double ditto !

Kent C. Dodds
Kent C. Doddsinstructor
~ 5 years ago

Thanks Philipp! 😊

Andy
Andy
~ 2 years ago

code sandbox issue: Error /src/exercises-final/01.js: hasn't been transpiled yet.

Markdown supported.
Become a member to join the discussionEnroll Today