mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
This is basically the implementation for the prerender pass. Instead of forking basically the whole implementation for prerender, I just add a conditional field on the request. If it's `null` it behaves like before. If it's non-`null` then instead of triggering client rendered boundaries it triggers those into a "postponed" state which is basically just a variant of "pending". It's supposed to be filled in later. It also builds up a serializable tree of which path can be followed to find the holes. This is basically a reverse `KeyPath` tree. It is unfortunate that this approach adds more code to the regular Fizz builds but in practice. It seems like this side is not going to add much code and we might instead just want to merge the builds so that it's smaller when you have `prerender` and `resume` in the same bundle - which I think will be common in practice. This just implements the prerender side, and not the resume side, which is why the tests have a TODO. That's in a follow up PR.
52 lines
1.3 KiB
JavaScript
52 lines
1.3 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.
|
|
*/
|
|
|
|
// This file is only used for tests.
|
|
// It lazily loads the implementation so that we get the correct set of host configs.
|
|
|
|
import ReactVersion from 'shared/ReactVersion';
|
|
export {ReactVersion as version};
|
|
|
|
export function renderToString() {
|
|
return require('./src/server/ReactDOMLegacyServerNode').renderToString.apply(
|
|
this,
|
|
arguments,
|
|
);
|
|
}
|
|
export function renderToStaticMarkup() {
|
|
return require('./src/server/ReactDOMLegacyServerNode').renderToStaticMarkup.apply(
|
|
this,
|
|
arguments,
|
|
);
|
|
}
|
|
export function renderToNodeStream() {
|
|
return require('./src/server/ReactDOMLegacyServerNode').renderToNodeStream.apply(
|
|
this,
|
|
arguments,
|
|
);
|
|
}
|
|
export function renderToStaticNodeStream() {
|
|
return require('./src/server/ReactDOMLegacyServerNode').renderToStaticNodeStream.apply(
|
|
this,
|
|
arguments,
|
|
);
|
|
}
|
|
|
|
export function renderToPipeableStream() {
|
|
return require('./src/server/react-dom-server.node').renderToPipeableStream.apply(
|
|
this,
|
|
arguments,
|
|
);
|
|
}
|
|
|
|
export function resumeToPipeableStream() {
|
|
return require('./src/server/react-dom-server.node').resumeToPipeableStream.apply(
|
|
this,
|
|
arguments,
|
|
);
|
|
}
|