Cleanly Map Over A Stateless Functional Component with a Higher Order Component

Andy Van Slaars
InstructorAndy Van Slaars
Share this video with your friends

Social Share Links

Send Tweet
Published 7 years ago
Updated 5 years ago

In this lesson we'll create a Higher Order Component (HOC) that takes care of the key property that React looks for when using map to create elements from a list. This HOC will allow us to wrap any component and it will take care of placing the key prop on the component for us based on the property name that we specify.

[00:00] Here, I have a simple React app that receives a hard coded array of to-do objects as a prop, a mapping over the to-dos, and rendering a list item for each object in the array.

[00:09] Everything appears to be working fine, but if I open up DevTools, and I reload this, we're going to see that I get a warming in the console that each child in the array or the iterator should have a unique key prop.

[00:21] It's happening here as we're rendering this LI for each item in the list, React is looking for a key on this parent level tech. I can fix that by just adding key, and I can use the to-do items' ID property as the key. I'll clear the console, and reload, and we'll see that this time, there's no warning in the console.

[00:44] Now, that I've fixed that error, I want to continue refactoring this component. We're going to take this function that I'm mapping over, and I'm going to extract this out into its own stateless functional component.

[00:53] I'm just going to cut this here, and write in the same file. I'm going to declare a constant, and I'm going to call it a to-do item. I'm just going to paste that right back in. Now, I have this to-do item component that I can call "write in my map."

[01:13] Now, I'm going to clear out the console, and I'm going to reload my view, and everything looks just fine. If we jump over to the React documentation, we'll see that this is actually the wrong way to put a key on an item. The right way is listed below, and the way we should do that is inside the map, we should specify our key directly on our new component.

[01:33] If we jump back over to the code, we can fix this by wrapping this in a function that takes in a to-do, and then close our to-do item component with key, and we'll make that key property our todo.id. Then we can spread the rest of our properties out for our to-do.

[01:55] Then I can come up here, and I can get rid of this key because it's actually not doing us any good. I'll clear the console, and reload, and everything is working as expected. Now, the problem here is that I've basically created an unnecessary function just to get this one property on my item.

[02:17] There's a better way to do this. The solution here is to create a higher order component that will essentially do exactly what we just did with our function, or wrap it up in a nice reusable way, and get it out of our application code.

[02:29] I'm going to cut this, and I'm going to come up here, and I'm going to declare a new constant, and I'm going to call this with key. A higher order component is just a function that takes in a component, and returns a new component.

[02:44] In our case, it's going to be a stateless functional component. I'm going to paste in what I have here, and I'm just going to make this a little more generic. To-do here is going to become props, and then I'm going to update this to be props.id, and then spread the rest of the props.

[03:00] Because I'm taking in my component with the name comp, I'm just going to use the same thing here. Now, I have this with key function that I can pass in any component, and that will return a function that's waiting for props which will return a rendered component with a key using the ID value from the props.

[03:21] Now that that's defined, let's use it on our to-do item component. I'm going to drop down here, and I'm going to declare a new constant, and I'm going to call it to-do display, and I'm going to set that to equal, or call to with key.

[03:36] Then I'm going to pass that in to-do item, and then I'm going to use this to-do to display component in my map. Now, everything works as expected, but we don't have to actually put the key property in the JSX. We can just map over a function.

[03:56] This works just fine, and it solves our problem, but it assumes that we have an ID property on our props, and that might not always be the case. I'm going to come here, and I'm going to just edit this a little bit, and I'm going to give this a second argument which I'll call prop name.

[04:09] Prop name is going to be the name of the property, or the key that we want to get off of props to define the key attribute on our component. Now, I can just change this, and I can use bracket notation to get at my property by name.

[04:24] I'll pass in prop name, and I can update this with a more appropriate name, so we'll call it with key from props. Then I'm going to come down here, and I'm going to update my call to with key to use the new name, and pass in ID as a string. When I reload, everything will be working as expected.

egghead
egghead
~ 13 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today