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

[Flight] Emit Infinite Promise as a Halted Row #30746

Merged
merged 1 commit into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions packages/react-client/src/ReactFlightClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import {
enableRefAsProp,
enableFlightReadableStream,
enableOwnerStacks,
enableHalt,
} from 'shared/ReactFeatureFlags';

import {
Expand Down Expand Up @@ -1194,10 +1193,6 @@ function parseModelString(
}
case '@': {
// Promise
if (value.length === 2) {
// Infinite promise that never resolves.
return new Promise(() => {});
}
const id = parseInt(value.slice(2), 16);
const chunk = getChunk(response, id);
return chunk;
Expand Down Expand Up @@ -2638,10 +2633,8 @@ function processFullStringRow(
}
// Fallthrough
case 35 /* "#" */: {
if (enableHalt) {
resolveBlocked(response, id);
return;
}
resolveBlocked(response, id);
return;
}
// Fallthrough
default: /* """ "{" "[" "t" "f" "n" "0" - "9" */ {
Expand Down
12 changes: 11 additions & 1 deletion packages/react-client/src/__tests__/ReactFlight-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2952,8 +2952,14 @@ describe('ReactFlight', () => {
function foo() {
return 'hello';
}

function ServerComponent() {
console.log('hi', {prop: 123, fn: foo, map: new Map([['foo', foo]])});
console.log('hi', {
prop: 123,
fn: foo,
map: new Map([['foo', foo]]),
promise: new Promise(() => {}),
});
throw new Error('err');
}

Expand Down Expand Up @@ -3018,6 +3024,10 @@ describe('ReactFlight', () => {
expect(loggedFn2).not.toBe(foo);
expect(loggedFn2.toString()).toBe(foo.toString());

const promise = mockConsoleLog.mock.calls[0][1].promise;
expect(promise).toBeInstanceOf(Promise);
expect(promise.status).toBe('blocked');

expect(ownerStacks).toEqual(['\n in App (at **)']);
});

Expand Down
9 changes: 4 additions & 5 deletions packages/react-server/src/ReactFlightServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -1817,10 +1817,6 @@ function serializeLazyID(id: number): string {
return '$L' + id.toString(16);
}

function serializeInfinitePromise(): string {
return '$@';
}

function serializePromiseID(id: number): string {
return '$@' + id.toString(16);
}
Expand Down Expand Up @@ -3273,7 +3269,10 @@ function renderConsoleValue(
}
// If it hasn't already resolved (and been instrumented) we just encode an infinite
// promise that will never resolve.
return serializeInfinitePromise();
request.pendingChunks++;
const blockedId = request.nextChunkId++;
emitBlockedChunk(request, blockedId);
return serializePromiseID(blockedId);
}

if (existingReference !== undefined) {
Expand Down
Loading