* Facebook -> Meta in copyright rg --files | xargs sed -i 's#Copyright (c) Facebook, Inc. and its affiliates.#Copyright (c) Meta Platforms, Inc. and affiliates.#g' * Manual tweaks
117 lines
3.0 KiB
JavaScript
117 lines
3.0 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
*/
|
|
|
|
import type {ReactNodeList} from 'shared/ReactTypes';
|
|
import type {BootstrapScriptDescriptor} from 'react-dom-bindings/src/server/ReactDOMServerFormatConfig';
|
|
|
|
import {Writable, Readable} from 'stream';
|
|
|
|
import ReactVersion from 'shared/ReactVersion';
|
|
|
|
import {
|
|
createRequest,
|
|
startWork,
|
|
startFlowing,
|
|
abort,
|
|
} from 'react-server/src/ReactFizzServer';
|
|
|
|
import {
|
|
createResponseState,
|
|
createRootFormatContext,
|
|
} from 'react-dom-bindings/src/server/ReactDOMServerFormatConfig';
|
|
|
|
type Options = {
|
|
identifierPrefix?: string,
|
|
namespaceURI?: string,
|
|
bootstrapScriptContent?: string,
|
|
bootstrapScripts?: Array<string | BootstrapScriptDescriptor>,
|
|
bootstrapModules?: Array<string | BootstrapScriptDescriptor>,
|
|
progressiveChunkSize?: number,
|
|
signal?: AbortSignal,
|
|
onError?: (error: mixed) => ?string,
|
|
unstable_externalRuntimeSrc?: string | BootstrapScriptDescriptor,
|
|
};
|
|
|
|
type StaticResult = {
|
|
prelude: Readable,
|
|
};
|
|
|
|
function createFakeWritable(readable): Writable {
|
|
// The current host config expects a Writable so we create
|
|
// a fake writable for now to push into the Readable.
|
|
return ({
|
|
write(chunk) {
|
|
return readable.push(chunk);
|
|
},
|
|
end() {
|
|
readable.push(null);
|
|
},
|
|
destroy(error) {
|
|
readable.destroy(error);
|
|
},
|
|
}: any);
|
|
}
|
|
|
|
function prerenderToNodeStreams(
|
|
children: ReactNodeList,
|
|
options?: Options,
|
|
): Promise<StaticResult> {
|
|
return new Promise((resolve, reject) => {
|
|
const onFatalError = reject;
|
|
|
|
function onAllReady() {
|
|
const readable = new Readable({
|
|
read() {
|
|
startFlowing(request, writable);
|
|
},
|
|
});
|
|
const writable = createFakeWritable(readable);
|
|
|
|
const result = {
|
|
prelude: readable,
|
|
};
|
|
resolve(result);
|
|
}
|
|
|
|
const request = createRequest(
|
|
children,
|
|
createResponseState(
|
|
options ? options.identifierPrefix : undefined,
|
|
undefined,
|
|
options ? options.bootstrapScriptContent : undefined,
|
|
options ? options.bootstrapScripts : undefined,
|
|
options ? options.bootstrapModules : undefined,
|
|
options ? options.unstable_externalRuntimeSrc : undefined,
|
|
),
|
|
createRootFormatContext(options ? options.namespaceURI : undefined),
|
|
options ? options.progressiveChunkSize : undefined,
|
|
options ? options.onError : undefined,
|
|
onAllReady,
|
|
undefined,
|
|
undefined,
|
|
onFatalError,
|
|
);
|
|
if (options && options.signal) {
|
|
const signal = options.signal;
|
|
if (signal.aborted) {
|
|
abort(request, (signal: any).reason);
|
|
} else {
|
|
const listener = () => {
|
|
abort(request, (signal: any).reason);
|
|
signal.removeEventListener('abort', listener);
|
|
};
|
|
signal.addEventListener('abort', listener);
|
|
}
|
|
}
|
|
startWork(request);
|
|
});
|
|
}
|
|
|
|
export {prerenderToNodeStreams, ReactVersion as version};
|