-
-
Notifications
You must be signed in to change notification settings - Fork 633
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
[WIP] Hydrate components immediately after downloading chunks #1656
Draft
AbanoubGhadban
wants to merge
19
commits into
abanoubghadban/pro362-add-support-for-RSC
Choose a base branch
from
abanoubghadban/pro425/hydrate-components-immediately-after-downloading-chunks
base: abanoubghadban/pro362-add-support-for-RSC
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
16078ef
hydrate the component immediately when loaded and registered
AbanoubGhadban 2ceec94
auto register server components and immediately hydrate stores
AbanoubGhadban b1a886b
move react-server-dom-webpack.d.ts to types directory
AbanoubGhadban 2c4fae3
ensure to initialize registered stores array before accessing
AbanoubGhadban c547b75
refactoring
AbanoubGhadban 0bc967c
refactor registration callback into separate class
AbanoubGhadban 78aaa28
make the early hydration compatible with turbopack, backward compatib…
AbanoubGhadban 58fd819
pass rsc path to RSC Client Root and move the config to RORP
AbanoubGhadban e7c80c3
update min node version to 18
AbanoubGhadban d972901
export registerServerComponent as a separate entrypoint to avoid clie…
AbanoubGhadban c6b0e1f
linting
AbanoubGhadban 0d8842b
Update webpack assets status checker to use server bundle configuration
AbanoubGhadban 94131d9
Update webpack assets status checker to handle bundle file paths
AbanoubGhadban ba38c98
[WIP] handle errors happen in rsc payload (#1663)
AbanoubGhadban 96d10ea
Empty commit to trigger new CI build
AbanoubGhadban fb12a56
Simplify build script for react-on-rails package
AbanoubGhadban be85e6b
Add logging to prepack and prepare npm scripts
AbanoubGhadban 9b36013
Revert "Add logging to prepack and prepare npm scripts"
AbanoubGhadban 402bd8f
Revert "Simplify build script for react-on-rails package"
AbanoubGhadban File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
How do we make sure that registered stores that aren't listed in the
store_dependencies
don't slip through the cracks?Should we throw a warning if a store is registered that isn't listed in
store_dependencies
?