-
Notifications
You must be signed in to change notification settings - Fork 47.9k
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
Nested Render Trees #3210
Labels
Comments
Would be nice to figure out how event bubbling works as well (cf. #1696). |
for reference: see ReactWithAddons.renderSubtreeIntoContainer |
I use renderSubtreeIntoContainer with success in conjunction with Tether Will it change in the future? |
Probably sometime, but no new proposal at the moment. |
We have portals now. They're not cross-renderer yet but I think the use cases in this thread are fixed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The way we implement portals is through a nested React.render in componentDidMount/Update. This is also how react-art can switch render mode in the middle of the tree.
This comes with a few problems.
We should have a first-class concept of nested render trees, that can optionally use a different render mode.
The text was updated successfully, but these errors were encountered: