Skip to content
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

[Fizz] Restrict types of keyPath when it is known #27418

Merged
merged 1 commit into from
Sep 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
36 changes: 18 additions & 18 deletions packages/react-server/src/ReactFizzServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ function fatalError(request: Request, error: mixed): void {
function renderSuspenseBoundary(
request: Request,
someTask: Task,
keyPath: Root | KeyNode,
keyPath: KeyNode,
props: Object,
): void {
if (someTask.replay !== null) {
Expand Down Expand Up @@ -960,7 +960,7 @@ function renderSuspenseBoundary(
function replaySuspenseBoundary(
request: Request,
task: ReplayTask,
keyPath: Root | KeyNode,
keyPath: KeyNode,
props: Object,
id: number,
childNodes: Array<ReplayNode>,
Expand Down Expand Up @@ -1064,7 +1064,7 @@ function replaySuspenseBoundary(
function renderBackupSuspenseBoundary(
request: Request,
task: Task,
keyPath: Root | KeyNode,
keyPath: KeyNode,
props: Object,
) {
pushBuiltInComponentStackInDEV(task, 'Suspense');
Expand All @@ -1090,7 +1090,7 @@ function renderBackupSuspenseBoundary(
function renderHostElement(
request: Request,
task: Task,
keyPath: Root | KeyNode,
keyPath: KeyNode,
type: string,
props: Object,
): void {
Expand Down Expand Up @@ -1156,7 +1156,7 @@ function shouldConstruct(Component: any) {
function renderWithHooks<Props, SecondArg>(
request: Request,
task: Task,
keyPath: Root | KeyNode,
keyPath: KeyNode,
prevThenableState: ThenableState | null,
Component: (p: Props, arg: SecondArg) => any,
props: Props,
Expand All @@ -1177,7 +1177,7 @@ function renderWithHooks<Props, SecondArg>(
function finishClassComponent(
request: Request,
task: Task,
keyPath: Root | KeyNode,
keyPath: KeyNode,
instance: any,
Component: any,
props: any,
Expand Down Expand Up @@ -1223,7 +1223,7 @@ function finishClassComponent(
function renderClassComponent(
request: Request,
task: Task,
keyPath: Root | KeyNode,
keyPath: KeyNode,
Component: any,
props: any,
): void {
Expand Down Expand Up @@ -1252,7 +1252,7 @@ let hasWarnedAboutUsingContextAsConsumer = false;
function renderIndeterminateComponent(
request: Request,
task: Task,
keyPath: Root | KeyNode,
keyPath: KeyNode,
prevThenableState: ThenableState | null,
Component: any,
props: any,
Expand Down Expand Up @@ -1379,7 +1379,7 @@ function renderIndeterminateComponent(
function finishFunctionComponent(
request: Request,
task: Task,
keyPath: Root | KeyNode,
keyPath: KeyNode,
children: ReactNodeList,
hasId: boolean,
formStateCount: number,
Expand Down Expand Up @@ -1506,7 +1506,7 @@ function resolveDefaultProps(Component: any, baseProps: Object): Object {
function renderForwardRef(
request: Request,
task: Task,
keyPath: Root | KeyNode,
keyPath: KeyNode,
prevThenableState: null | ThenableState,
type: any,
props: Object,
Expand Down Expand Up @@ -1540,7 +1540,7 @@ function renderForwardRef(
function renderMemo(
request: Request,
task: Task,
keyPath: Root | KeyNode,
keyPath: KeyNode,
prevThenableState: ThenableState | null,
type: any,
props: Object,
Expand All @@ -1562,7 +1562,7 @@ function renderMemo(
function renderContextConsumer(
request: Request,
task: Task,
keyPath: Root | KeyNode,
keyPath: KeyNode,
context: ReactContext<any>,
props: Object,
): void {
Expand Down Expand Up @@ -1616,7 +1616,7 @@ function renderContextConsumer(
function renderContextProvider(
request: Request,
task: Task,
keyPath: Root | KeyNode,
keyPath: KeyNode,
type: ReactProviderType<any>,
props: Object,
): void {
Expand Down Expand Up @@ -1645,7 +1645,7 @@ function renderContextProvider(
function renderLazyComponent(
request: Request,
task: Task,
keyPath: Root | KeyNode,
keyPath: KeyNode,
prevThenableState: ThenableState | null,
lazyComponent: LazyComponentType<any, any>,
props: Object,
Expand All @@ -1671,7 +1671,7 @@ function renderLazyComponent(
function renderOffscreen(
request: Request,
task: Task,
keyPath: Root | KeyNode,
keyPath: KeyNode,
props: Object,
): void {
const mode: ?OffscreenMode = (props.mode: any);
Expand All @@ -1691,7 +1691,7 @@ function renderOffscreen(
function renderElement(
request: Request,
task: Task,
keyPath: Root | KeyNode,
keyPath: KeyNode,
prevThenableState: ThenableState | null,
type: any,
props: Object,
Expand Down Expand Up @@ -1882,7 +1882,7 @@ function resumeNode(
function resumeElement(
request: Request,
task: ReplayTask,
keyPath: Root | KeyNode,
keyPath: KeyNode,
segmentId: number,
prevThenableState: ThenableState | null,
type: any,
Expand Down Expand Up @@ -1926,7 +1926,7 @@ function resumeElement(
function replayElement(
request: Request,
task: ReplayTask,
keyPath: Root | KeyNode,
keyPath: KeyNode,
prevThenableState: ThenableState | null,
name: null | string,
keyOrIndex: number | string,
Expand Down