-
Notifications
You must be signed in to change notification settings - Fork 1k
[Slot] support slotting onto nested children #3695
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
base: main
Are you sure you want to change the base?
Conversation
🦋 Changeset detectedLatest commit: 60c567c The changes in this PR will be included in the next version bump. This PR includes changesets to release 44 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
56797c0
to
60c567c
Compare
<Client.Button {...props} ref={forwardedRef} style={{ display: 'flex', gap: '3rem' }}> | ||
<Slot.Root> | ||
<Slot.Slottable child={children}> |
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 added this example because it's important that Slot.Root
and its desired Slot.Slottable
are on the same client or server boundary. This is perhaps something worth documenting. It isn't specific to nested slottables—it's important if we want to change the element that an existing component slots onto.
// fine in RSC as it's a React.useCallback under the hood | ||
const composedRefs = useComposedRefs(forwardedRef, slottableElementRef); |
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.
This broke in the previous attempts because Slot
was changed to a 'use client'
boundary. We can compose them without that, and all is well :)
if (process.env.NODE_ENV === 'development') console.warn(createSlotWarning(ownerName)); | ||
return children; |
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.
If it cannot slot, we don't throw anymore... it renders the children as normal with a warning. I wasn't sure what was best here tbh.
Description
This is inspired by #2197 and should resolve #3626, but I've made it backwards compatible and also improved the implementation of
Slot
slightly:Slot.SlotClone
compsReact.Children.only()
error with a more intuitive warninguseComposedRefs
change that was revertedssr-testing