Avoid proxying React modules through workUnitStore (#85486)#8
Open
MitchLewis930 wants to merge 1 commit intopr_038_beforefrom
Open
Avoid proxying React modules through workUnitStore (#85486)#8MitchLewis930 wants to merge 1 commit intopr_038_beforefrom
MitchLewis930 wants to merge 1 commit intopr_038_beforefrom
Conversation
Today the `captureOwnerStack()` function is provided to shared utilities through an AsyncLocalStorage that scopes the method from the appropriate React instance. This is so that external code like patches to sync IO methods can still generate errors with the appropriate React owner information even when the patched code itself is not bundled and can be called from etiher SSR or RSC contexts. This works but it makes plumbing the React instances around tricky. There is a simpler way. Most of the time you can just try both React's. If one gives you a non-null/undefined result then you know you are in that scope. If neither do then you're outside a React scope altogether. In this change I remove `captureOwnerStack()` from the workUnitStore types and just call it from the shared server runtime which gives even external code access to the appropriate React instances for bundled code
Greptile OverviewGreptile SummaryThis PR refactors how React module functions (like Key Changes
Benefits
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant AppPage as app-page/module.ts
participant Registry as runtime-reacts.external.ts
participant ConsoleDim as console-dim.external.tsx
participant Utils as utils.tsx
participant React as React Instances
Note over AppPage: During module initialization
AppPage->>AppPage: Load vendored React (RSC & SSR)
AppPage->>Registry: registerServerReact(vendoredReactRSC.React)
Registry->>Registry: Store ServerReact reference
AppPage->>Registry: registerClientReact(vendoredReactSSR.React)
Registry->>Registry: Store ClientReact reference
Note over ConsoleDim: During console method patch
ConsoleDim->>Registry: getClientReact()
Registry-->>ConsoleDim: Return ClientReact instance
ConsoleDim->>React: ClientReact.cacheSignal()
React-->>ConsoleDim: AbortSignal | null
ConsoleDim->>Registry: getServerReact()
Registry-->>ConsoleDim: Return ServerReact instance
ConsoleDim->>React: ServerReact.cacheSignal()
React-->>ConsoleDim: AbortSignal | null
Note over Utils: During error stack capture
Utils->>Registry: getClientReact()
Registry-->>Utils: Return ClientReact instance
Utils->>React: ClientReact.captureOwnerStack()
React-->>Utils: ownerStack | null
Utils->>Registry: getServerReact()
Registry-->>Utils: Return ServerReact instance
Utils->>React: ServerReact.captureOwnerStack()
React-->>Utils: ownerStack | null
|
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.
PR_038