We have had this custom component for at least 8-9 months, but i haven’t seen the warning in the console before. So i am not sure if checks for how the key prop is being passed to elements has gotten stricter somehow…?
I have assumed it was a general issue with custom components and noWrap that get passed attributes as prop. Is that not the case? I would not expect there is anything in my code that is causing it.
Is that not the case, can you not reproduce it yourself?
You should be able to reproduce it in development mode. I think the react warnings get disabled unless it’s a dev build.
I have just used a barebone project from your docs site and managed to reproduce the issue: Developer Quickstart - Builder.io
Just by creating a custom component with noWrap: true and spreading attributes to the outermost container, like recommended in your docs.
The issue is that a “key” is being spread into attributes without a need for it.
For now i have solved it by setting the key to something hardcoded manually after spreading the attributes (see code example below), but the core issue remains:
Attributes received from builder should not contain a key, or your docs needs to be updated regarding how to use noWrap: true with custom components.
Thank you for your detailed feedback regarding the issue with the key attribute being included in the props for custom components using noWrap: true. I appreciate your effort in reproducing the issue with a barebone project from our documentation.
You are correct that React warnings might be disabled unless in development mode, and it’s important that our documentation accurately reflects the behavior of custom components. The core issue of the key being included in the attributes without necessity is noted.
To resolve this in your implementation, you can ensure that the key is assigned directly in your JSX while still utilizing the other properties from the object. Here’s an updated version of your component that accommodates this structure:
Thanks Manish, sounds good regarding you guys updating the docs.
However, regarding your suggestion above: i don’t see the need to pass the key from attributes on this <div> element. Keys are used to hold order in lists. And as far as i can tell, this is not a list, so this element does not need a unique key among its siblings. Therefore we might as well hardcode the key. Am I seeing it wrong?
You’re correct in identifying that the key attribute is typically used in lists to help React identify which items have changed, are added, or are removed. In the context of a single <div> element, independently of a list, there’s generally no need to pass the key from attributes.
The key is best suited for elements that are part of an array where the order and identity might change, so in your case, if VerticalSpacer is not part of an array rendered by map or similar methods, there’s no need to pass a dynamic key.