Skip to content

Commit 2cc6d79

Browse files
authored
Rename onReadyToStream to onCompleteShell (#22443)
1 parent 2e41568 commit 2cc6d79

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

fixtures/ssr/server/render.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default function render(url, res) {
2424
<App assets={assets} />,
2525
res,
2626
{
27-
onReadyToStream() {
27+
onCompleteShell() {
2828
// If something errored before we started streaming, we set the error code appropriately.
2929
res.statusCode = didError ? 500 : 200;
3030
res.setHeader('Content-type', 'text/html');

fixtures/ssr2/server/render.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ module.exports = function render(url, res) {
4343
</DataProvider>,
4444
res,
4545
{
46-
onReadyToStream() {
46+
onCompleteShell() {
4747
// If something errored before we started streaming, we set the error code appropriately.
4848
res.statusCode = didError ? 500 : 200;
4949
res.setHeader('Content-type', 'text/html');

packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ describe('ReactDOMFizzServer', () => {
768768
writableA,
769769
{
770770
identifierPrefix: 'A_',
771-
onReadyToStream() {
771+
onCompleteShell() {
772772
writableA.write('<div id="container-A">');
773773
startWriting();
774774
writableA.write('</div>');
@@ -788,7 +788,7 @@ describe('ReactDOMFizzServer', () => {
788788
writableB,
789789
{
790790
identifierPrefix: 'B_',
791-
onReadyToStream() {
791+
onCompleteShell() {
792792
writableB.write('<div id="container-B">');
793793
startWriting();
794794
writableB.write('</div>');
@@ -1029,7 +1029,7 @@ describe('ReactDOMFizzServer', () => {
10291029
writable,
10301030
{
10311031
namespaceURI: 'http://www.w3.org/2000/svg',
1032-
onReadyToStream() {
1032+
onCompleteShell() {
10331033
writable.write('<svg>');
10341034
startWriting();
10351035
writable.write('</svg>');

packages/react-dom/src/server/ReactDOMFizzServerBrowser.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ type Options = {|
2828
namespaceURI?: string,
2929
progressiveChunkSize?: number,
3030
signal?: AbortSignal,
31-
onReadyToStream?: () => void,
31+
onCompleteShell?: () => void,
3232
onCompleteAll?: () => void,
3333
onError?: (error: mixed) => void,
3434
|};
@@ -56,7 +56,7 @@ function renderToReadableStream(
5656
options ? options.progressiveChunkSize : undefined,
5757
options ? options.onError : undefined,
5858
options ? options.onCompleteAll : undefined,
59-
options ? options.onReadyToStream : undefined,
59+
options ? options.onCompleteShell : undefined,
6060
);
6161
startWork(request);
6262
},

packages/react-dom/src/server/ReactDOMFizzServerNode.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ type Options = {|
3232
identifierPrefix?: string,
3333
namespaceURI?: string,
3434
progressiveChunkSize?: number,
35-
onReadyToStream?: () => void,
35+
onCompleteShell?: () => void,
3636
onCompleteAll?: () => void,
3737
onError?: (error: mixed) => void,
3838
|};
@@ -57,7 +57,7 @@ function createRequestImpl(
5757
options ? options.progressiveChunkSize : undefined,
5858
options ? options.onError : undefined,
5959
options ? options.onCompleteAll : undefined,
60-
options ? options.onReadyToStream : undefined,
60+
options ? options.onCompleteShell : undefined,
6161
);
6262
}
6363

packages/react-dom/src/server/ReactDOMLegacyServerBrowser.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function renderToStringImpl(
5454
};
5555

5656
let readyToStream = false;
57-
function onReadyToStream() {
57+
function onCompleteShell() {
5858
readyToStream = true;
5959
}
6060
const request = createRequest(
@@ -68,7 +68,7 @@ function renderToStringImpl(
6868
Infinity,
6969
onError,
7070
undefined,
71-
onReadyToStream,
71+
onCompleteShell,
7272
);
7373
startWork(request);
7474
// If anything suspended and is still pending, we'll abort it before writing.

packages/react-noop-renderer/src/ReactNoopServer.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ const ReactNoopServer = ReactFizzServer({
242242

243243
type Options = {
244244
progressiveChunkSize?: number,
245-
onReadyToStream?: () => void,
245+
onCompleteShell?: () => void,
246246
onCompleteAll?: () => void,
247247
onError?: (error: mixed) => void,
248248
};
@@ -265,7 +265,7 @@ function render(children: React$Element<any>, options?: Options): Destination {
265265
options ? options.progressiveChunkSize : undefined,
266266
options ? options.onError : undefined,
267267
options ? options.onCompleteAll : undefined,
268-
options ? options.onReadyToStream : undefined,
268+
options ? options.onCompleteShell : undefined,
269269
);
270270
ReactNoopServer.startWork(request);
271271
ReactNoopServer.startFlowing(request);

packages/react-server/src/ReactFizzServer.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -190,10 +190,10 @@ export opaque type Request = {
190190
// onCompleteAll is called when all pending task is done but it may not have flushed yet.
191191
// This is a good time to start writing if you want only HTML and no intermediate steps.
192192
onCompleteAll: () => void,
193-
// onReadyToStream is called when there is at least a root fallback ready to show.
193+
// onCompleteShell is called when there is at least a root fallback ready to show.
194194
// Typically you don't need this callback because it's best practice to always have a
195195
// root fallback ready so there's no need to wait.
196-
onReadyToStream: () => void,
196+
onCompleteShell: () => void,
197197
};
198198

199199
// This is a default heuristic for how to split up the HTML content into progressive
@@ -227,7 +227,7 @@ export function createRequest(
227227
progressiveChunkSize: void | number,
228228
onError: void | ((error: mixed) => void),
229229
onCompleteAll: void | (() => void),
230-
onReadyToStream: void | (() => void),
230+
onCompleteShell: void | (() => void),
231231
): Request {
232232
const pingedTasks = [];
233233
const abortSet: Set<Task> = new Set();
@@ -250,7 +250,7 @@ export function createRequest(
250250
partialBoundaries: [],
251251
onError: onError === undefined ? defaultErrorHandler : onError,
252252
onCompleteAll: onCompleteAll === undefined ? noop : onCompleteAll,
253-
onReadyToStream: onReadyToStream === undefined ? noop : onReadyToStream,
253+
onCompleteShell: onCompleteShell === undefined ? noop : onCompleteShell,
254254
};
255255
// This segment represents the root fallback.
256256
const rootSegment = createPendingSegment(request, 0, null, rootFormatContext);
@@ -1370,8 +1370,8 @@ function finishedTask(
13701370
}
13711371
request.pendingRootTasks--;
13721372
if (request.pendingRootTasks === 0) {
1373-
const onReadyToStream = request.onReadyToStream;
1374-
onReadyToStream();
1373+
const onCompleteShell = request.onCompleteShell;
1374+
onCompleteShell();
13751375
}
13761376
} else {
13771377
boundary.pendingTasks--;

0 commit comments

Comments
 (0)