-
Notifications
You must be signed in to change notification settings - Fork 51k
Expand file tree
/
Copy pathReactDOMFizzServerNext.js
More file actions
80 lines (71 loc) · 1.82 KB
/
ReactDOMFizzServerNext.js
File metadata and controls
80 lines (71 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/**
* Copyright (c) Facebook, Inc. and its 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 {Destination} from 'react-server/src/ReactServerStreamConfigNext';
import ReactVersion from 'shared/ReactVersion';
import {
createRequest,
startWork,
startFlowing,
stopFlowing,
abort,
} from 'react-server/src/ReactFizzServer';
import {
createResponseState,
createRootFormatContext,
} from './ReactDOMServerFormatConfig';
type Options = {|
identifierPrefix?: string,
namespaceURI?: string,
progressiveChunkSize?: number,
onReadyToStream?: () => void,
onCompleteAll?: () => void,
onError?: (error: mixed) => void,
|};
type Controls = {|
abort(): void,
update(): void,
|};
function createRequestImpl(
children: ReactNodeList,
destination: Destination,
options: void | Options,
) {
return createRequest(
children,
destination,
createResponseState(options ? options.identifierPrefix : undefined),
createRootFormatContext(options ? options.namespaceURI : undefined),
options ? options.progressiveChunkSize : undefined,
options ? options.onError : undefined,
options ? options.onCompleteAll : undefined,
options ? options.onReadyToStream : undefined,
);
}
function renderToNextStream(
children: ReactNodeList,
destination: Destination,
options?: Options,
): Controls {
const request = createRequestImpl(children, destination, options);
startWork(request);
return {
abort() {
abort(request);
},
update() {
if (destination.ready) {
startFlowing(request);
} else {
stopFlowing(request);
}
},
};
}
export {renderToNextStream, ReactVersion as version};