Skip to content
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

Merged
merged 13 commits into from
May 2, 2024
Merged

Conversation

Rheeseyb
Copy link
Contributor

@Rheeseyb Rheeseyb commented Apr 30, 2024

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

Copy link
Contributor

github-actions bot commented Apr 30, 2024

Try me

Copy link

relativeci bot commented Apr 30, 2024

#12092 Bundle Size — 62.43MiB (+0.01%).

9d205ec(current) vs 6339ece master#12089(baseline)

Warning

Bundle contains 58 duplicate packages – View duplicate packages

Bundle metrics  Change 3 changes Regression 1 regression
                 Current
#12092
     Baseline
#12089
Regression  Initial JS 45.5MiB(+0.02%) 45.5MiB
No change  Initial CSS 0B 0B
Change  Cache Invalidation 21.7% 21%
No change  Chunks 31 31
No change  Assets 34 34
No change  Modules 4375 4375
No change  Duplicate Modules 504 504
Change  Duplicate Code 30.83%(+0.03%) 30.82%
No change  Packages 467 467
No change  Duplicate Packages 58 58
Bundle size by type  Change 2 changes Regression 1 regression Improvement 1 improvement
                 Current
#12092
     Baseline
#12089
Regression  JS 62.42MiB (+0.01%) 62.41MiB
Improvement  HTML 10.94KiB (-0.34%) 10.98KiB

Bundle analysis reportBranch feature/render-prop-in-metadataProject dashboard

Copy link
Contributor

github-actions bot commented Apr 30, 2024

Performance test results:
(Chart1)
(Chart2)

@Rheeseyb Rheeseyb changed the title (WIP) store render prop name in metadata Store render prop name in metadata May 1, 2024
@Rheeseyb Rheeseyb marked this pull request as ready for review May 1, 2024 14:34
@@ -2533,6 +2533,7 @@ export interface ElementInstanceMetadata {
conditionValue: ConditionValue
textContent: string | null
earlyReturn: EarlyReturn | null
prop: string | null
Copy link
Contributor

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?

Copy link
Contributor Author

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

Copy link
Contributor Author

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?

Copy link
Contributor

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!

@Rheeseyb Rheeseyb merged commit 7f70a8e into master May 2, 2024
13 checks passed
@Rheeseyb Rheeseyb deleted the feature/render-prop-in-metadata branch May 2, 2024 10:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Support render props in S to Swap
4 participants