/
githubmr
/
facebook-react
Обзор
Документация
Войти
/
githubmr
/
facebook-react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
v18.1.0
packages/react-server-dom-webpack/src/ReactFlightDOMServerBrowser.js
49 строк
1 KB
salazarm
[ServerContext] Flight support for ServerContext (#23244)
08 мар 2022, 15:55
Не верифицирован
08 мар 2022, 15:55
d5f1b06
Код
Авторство
О чём код?
/** * 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 {ReactModel} from 'react-server/src/ReactFlightServer'; import type {ServerContextJSONValue} from 'shared/ReactTypes'; import type {BundlerConfig} from './ReactFlightServerWebpackBundlerConfig'; import { createRequest, startWork, startFlowing, } from 'react-server/src/ReactFlightServer'; type Options = { onError?: (error: mixed) => void, }; function renderToReadableStream( model: ReactModel, webpackMap: BundlerConfig, options?: Options, context?: Array<[string, ServerContextJSONValue]>, ): ReadableStream { const request = createRequest( model, webpackMap, options ? options.onError : undefined, context, ); const stream = new ReadableStream({ type: 'bytes', start(controller) { startWork(request); }, pull(controller) { startFlowing(request, controller); }, cancel(reason) {}, }); return stream; } export {renderToReadableStream};