-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Store render prop name in metadata #5447
Conversation
#12092 Bundle Size — 62.43MiB (+0.01%).
Warning Bundle contains 58 duplicate packages – View duplicate packages Bundle metrics
Bundle size by type
Bundle analysis report Branch feature/render-prop-in-metadata Project dashboard |
@@ -2533,6 +2533,7 @@ export interface ElementInstanceMetadata { | |||
conditionValue: ConditionValue | |||
textContent: string | null | |||
earlyReturn: EarlyReturn | null | |||
prop: string | null |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think prop is not a very helpful name, especially because a jsx element has props itself.
Can this be something more verbose and clear? E.g. containingRenderProp or something like that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah as mentioned I know the name is bad. I'm going to go with assignedToProp
(or assignedToRenderProp
perhaps) and see how that feels
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok done - I went with assignedToProp
. How do you feel about that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
assignedToProp
is fine by me!
Problem
The new component insert menu needs to know if it is targeting a render prop (and which) in order to provide suitable options and to actually replace the target. This was fine when it was only invoked from the Navigator (as the navigator items included this information), but not when it is invoked from the canvas or keyboard shortcuts, as this information isn't readily available.
Fix
To get around this I have now introduced the name of the prop that the element is assigned to in its metadata as a
string | null
. We capture this by providing it to the spy wrapper at render time, and then look it up before showing the component picker via the keyboard shortcut or canvas context menu.I appreciate that the name used here
prop
isn't great, so I'm open to alternatives there.Fixes #5440