Stabilize root app shell renders#2776
Draft
cursor[bot] wants to merge 2 commits into
Draft
Conversation
Co-authored-by: Julius Marminge <juliusmarminge@users.noreply.github.com>
Co-authored-by: Julius Marminge <juliusmarminge@users.noreply.github.com>
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
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.
What Changed
RootRouteViewso route-level re-renders do not recreate theCommandPalette/AppSidebarLayoutelement tree.useBrowserChromeThemeSync.Why
react-doctorflagged static JSX insrc/routes/__root.tsxas a performance warning because the root shell was recreated on every root route render. Hoisting the shell makes the shared shell element stable while the nestedOutletcontinues to update from router context.Scan results:
react-doctorscore 73, 253 warnings.react-doctorscore 74, 252 warnings.rendering-hoist-jsxwarning forsrc/routes/__root.tsxis removed.UI Changes
No intended visual changes. React Scan recordings above capture the same route-navigation flow with React Scan enabled before and after the fix.
Checklist
Validation:
bun fmtbun lintbun typecheckNote
Stabilize root app shell renders by hoisting JSX to a module-level constant
CommandPalette -> AppSidebarLayout -> OutletJSX tree into a module-levelAPP_SHELLconstant in __root.tsx, replacing a per-render local variable to prevent unnecessary re-renders.useBrowserChromeThemeSync(pathname)hook, replacing an inlineuseEffectinRootRouteView.Macroscope summarized 993571a.