Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2be6633

Browse files
salazarmzhengjitf
authored andcommittedApr 15, 2022
[ServerContext] Flight support for ServerContext (facebook#23244)
* Flight side of server context * 1 more test * rm unused function * flow+prettier * flow again =) * duplicate ReactServerContext across packages * store default value when lazily initializing server context * . * better comment * derp... missing import * rm optional chaining * missed feature flag * React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED ?? * add warning if non ServerContext passed into useServerContext * pass context in as array of arrays * make importServerContext nott pollute the global context state * merge main * remove useServerContext * dont rely on object getters in ReactServerContext and disallow JSX * add symbols to devtools + rename globalServerContextRegistry to just ContextRegistry * gate test case as experimental * feedback * remove unions * Lint * fix oopsies (tests/lint/mismatching arguments/signatures * lint again * replace-fork * remove extraneous change * rebase * 1 more test * rm unused function * flow+prettier * flow again =) * duplicate ReactServerContext across packages * store default value when lazily initializing server context * . * better comment * derp... missing import * rm optional chaining * missed feature flag * React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED ?? * add warning if non ServerContext passed into useServerContext * pass context in as array of arrays * make importServerContext nott pollute the global context state * merge main * remove useServerContext * dont rely on object getters in ReactServerContext and disallow JSX * add symbols to devtools + rename globalServerContextRegistry to just ContextRegistry * gate test case as experimental * feedback * remove unions * Lint * fix oopsies (tests/lint/mismatching arguments/signatures * lint again * replace-fork * remove extraneous change * rebase * reinline * rebase * add back changes lost due to rebase being hard * emit chunk for provider * remove case for React provider type * update type for SomeChunk * enable flag with experimental * add missing types * fix flow type * missing type * t: any * revert extraneous type change * better type * better type * feedback * change import to type import * test? * test? * remove react-dom * remove react-native-renderer from react-server-native-relay/package.json * gate change in FiberNewContext, getComponentNameFromType, use switch statement in FlightServer * getComponentNameFromTpe: server context type gated and use displayName if available * fallthrough * lint.... * POP * lint
1 parent 7b62b3e commit 2be6633

File tree

53 files changed

+1242
-90
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1242
-90
lines changed
 

‎packages/react-client/src/ReactFlightClient.js

+18
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ import {
2626

2727
import {REACT_LAZY_TYPE, REACT_ELEMENT_TYPE} from 'shared/ReactSymbols';
2828

29+
import {getOrCreateServerContext} from 'shared/ReactServerContextRegistry';
30+
2931
export type JSONValue =
3032
| number
3133
| null
@@ -327,6 +329,7 @@ export function parseModelTuple(
327329
value: {+[key: string]: JSONValue} | $ReadOnlyArray<JSONValue>,
328330
): any {
329331
const tuple: [mixed, mixed, mixed, mixed] = (value: any);
332+
330333
if (tuple[0] === REACT_ELEMENT_TYPE) {
331334
// TODO: Consider having React just directly accept these arrays as elements.
332335
// Or even change the ReactElement type to be an array.
@@ -358,6 +361,21 @@ export function resolveModel(
358361
}
359362
}
360363

364+
export function resolveProvider(
365+
response: Response,
366+
id: number,
367+
contextName: string,
368+
): void {
369+
const chunks = response._chunks;
370+
chunks.set(
371+
id,
372+
createInitializedChunk(
373+
response,
374+
getOrCreateServerContext(contextName).Provider,
375+
),
376+
);
377+
}
378+
361379
export function resolveModule(
362380
response: Response,
363381
id: number,

‎packages/react-client/src/ReactFlightClientStream.js

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import type {Response} from './ReactFlightClientHostConfigStream';
1212
import {
1313
resolveModule,
1414
resolveModel,
15+
resolveProvider,
1516
resolveSymbol,
1617
resolveError,
1718
createResponse as createResponseBase,
@@ -49,6 +50,10 @@ function processFullRow(response: Response, row: string): void {
4950
resolveModule(response, id, text);
5051
return;
5152
}
53+
case 'P': {
54+
resolveProvider(response, id, text);
55+
return;
56+
}
5257
case 'S': {
5358
resolveSymbol(response, id, JSON.parse(text));
5459
return;

0 commit comments

Comments
 (0)
Please sign in to comment.