* Move files * Update paths * Rename import variables * Rename /server to /writer This is mainly because "React Server Server" is weird so we need another dimension. * Use "react-server" convention to enforce that writer is only loaded in a server
38 lines
1.0 KiB
JavaScript
38 lines
1.0 KiB
JavaScript
/**
|
|
* 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 {RowEncoding} from './ReactFlightNativeRelayProtocol';
|
|
|
|
import type {Response} from 'react-client/src/ReactFlightClient';
|
|
|
|
import {
|
|
createResponse,
|
|
resolveModel,
|
|
resolveModule,
|
|
resolveSymbol,
|
|
resolveError,
|
|
close,
|
|
} from 'react-client/src/ReactFlightClient';
|
|
|
|
export {createResponse, close};
|
|
|
|
export function resolveRow(response: Response, chunk: RowEncoding): void {
|
|
if (chunk[0] === 'J') {
|
|
resolveModel(response, chunk[1], chunk[2]);
|
|
} else if (chunk[0] === 'M') {
|
|
resolveModule(response, chunk[1], chunk[2]);
|
|
} else if (chunk[0] === 'S') {
|
|
// $FlowFixMe: Flow doesn't support disjoint unions on tuples.
|
|
resolveSymbol(response, chunk[1], chunk[2]);
|
|
} else {
|
|
// $FlowFixMe: Flow doesn't support disjoint unions on tuples.
|
|
resolveError(response, chunk[1], chunk[2].message, chunk[2].stack);
|
|
}
|
|
}
|