-
Notifications
You must be signed in to change notification settings - Fork 28.1k
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
Rename CacheNode.subTreeData -> .rsc #59491
Rename CacheNode.subTreeData -> .rsc #59491
Conversation
Stats from current PRDefault BuildGeneral
Client Bundles (main, webpack)
Legacy Client Bundles (polyfills)
Client Pages
Client Build Manifests
Rendered Page Sizes
Edge SSR bundle Size
Middleware size
Next Runtimes
Diff detailsDiff for page.jsDiff too large to display Diff for 170-HASH.jsDiff too large to display |
I want to give this field a name that's bit less generic and distinguishes it from `lazyData` (because that one has a different type and is a special case we want to eventually remove). I'm also about to add an optional `prefetchRsc` field that represents a prefetched version of the same value. The common suffix is meant to communicate how they are related. Doing this rename in its own PR because it's a pure find-and-replace, whereas the later steps are not.
49ac8b4
to
b242431
Compare
@@ -149,7 +149,7 @@ function HistoryUpdater({ | |||
|
|||
export const createEmptyCacheNode = () => ({ | |||
lazyData: null, | |||
subTreeData: null, | |||
rsc: null, |
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.
Do we consider to call it sth like rscNode
or any related to "node" as the type is ReactNode, rsc makes me think of rsc payload data
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.
Yeah maybe but even rscNode
could refer to something that was rendered by RSC but is not renderable on the client. It would have to be something more like rscReactNode
but I don't know if that really does much to clarify. I think in this case we can rely on the type to communicate it.
I want to give this field a name that's bit less generic and distinguishes it from
lazyData
(because that one has a different type and is a special case we want to eventually remove).I'm also about to add an optional
prefetchRsc
field that represents a prefetched version of the same value. The common suffix is meant to communicate how they are related.Doing this rename in its own PR because it's a pure find-and-replace, whereas the later steps are not.
Closes NEXT-1846