-
Notifications
You must be signed in to change notification settings - Fork 170
Pre-81: Switch to newer rendering pathways for stagedRender and improve type safety of framework #3996
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…tive into user/jasonvmo/phased-rendering
Saadnajmi
reviewed
Jan 29, 2026
Saadnajmi
reviewed
Jan 29, 2026
packages/components/Menu/src/MenuCallout/MenuCallout.android.tsx
Outdated
Show resolved
Hide resolved
Saadnajmi
reviewed
Jan 29, 2026
Saadnajmi
approved these changes
Jan 29, 2026
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Platforms Impacted
Description of changes
Type fixes
React 19 + RN 0.81 has much stricter types and the way the framework was handling types was problematic in a number of ways. In particular the framework was mishandling children. This was the result of me not understanding things fully when I wrote the original framework. Some rules to keep in mind:
children: React.ReactElementmust have exactly one child.children?: React.ReactElementmeans 0 or 1 child.children?: React.ReactNodeis how you denote a collection of children.To make things work better this change makes the following type shifts:
stagedComponent -> phasedComponent
I moved much of the stagedComponent usage over to phasedComponent which uses a new signature. The difference is effectively:
With this approach the types of children remain correct and we aren't fighting against the system. I also adjusted it to call the jsx stuff directly and added an interop helper to allow a stagedComponent to act like a phasedComponent.
Common rendering
Both the old and new code now runs through the jsx-runtime rather than createElement. You can see the code in framework-base to see the adjustments. The renderWithJsxRuntime can now pick the jsx/jsxs routines automatically if they are not specified.
Verification
Tests, pipelines, manual inspection of the controls.