mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
64d4b84204
* Rename Flight to Transport Flight is still the codename for the implementation details (like Fiber). However, now the public package is react-transport-... which is only intended to be used directly by integrators. * Rename names
64 lines
2.1 KiB
JavaScript
64 lines
2.1 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
|
|
*/
|
|
|
|
export opaque type ModuleMetaData = {
|
|
id: string,
|
|
chunks: Array<string>,
|
|
name: string,
|
|
};
|
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
export opaque type ModuleReference<T> = ModuleMetaData;
|
|
|
|
export function resolveModuleReference<T>(
|
|
moduleData: ModuleMetaData,
|
|
): ModuleReference<T> {
|
|
return moduleData;
|
|
}
|
|
|
|
// The chunk cache contains all the chunks we've preloaded so far.
|
|
// If they're still pending they're a thenable. This map also exists
|
|
// in Webpack but unfortunately it's not exposed so we have to
|
|
// replicate it in user space. null means that it has already loaded.
|
|
const chunkCache: Map<string, null | Promise<any> | Error> = new Map();
|
|
|
|
// Start preloading the modules since we might need them soon.
|
|
// This function doesn't suspend.
|
|
export function preloadModule<T>(moduleData: ModuleReference<T>): void {
|
|
const chunks = moduleData.chunks;
|
|
for (let i = 0; i < chunks.length; i++) {
|
|
const chunkId = chunks[i];
|
|
const entry = chunkCache.get(chunkId);
|
|
if (entry === undefined) {
|
|
const thenable = __webpack_chunk_load__(chunkId);
|
|
const resolve = chunkCache.set.bind(chunkCache, chunkId, null);
|
|
const reject = chunkCache.set.bind(chunkCache, chunkId);
|
|
thenable.then(resolve, reject);
|
|
chunkCache.set(chunkId, thenable);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Actually require the module or suspend if it's not yet ready.
|
|
// Increase priority if necessary.
|
|
export function requireModule<T>(moduleData: ModuleReference<T>): T {
|
|
const chunks = moduleData.chunks;
|
|
for (let i = 0; i < chunks.length; i++) {
|
|
const chunkId = chunks[i];
|
|
const entry = chunkCache.get(chunkId);
|
|
if (entry !== null) {
|
|
// We assume that preloadModule has been called before.
|
|
// So we don't expect to see entry being undefined here, that's an error.
|
|
// Let's throw either an error or the Promise.
|
|
throw entry;
|
|
}
|
|
}
|
|
return __webpack_require__(moduleData.id)[moduleData.name];
|
|
}
|