mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
3df6f5fb2c
Summary: `babel-plugin-codegen` will run the NativeModules codegen on each NativeModule spec, and inline the generated schema into the spec's `TurboModuleRegistry.get(Enforcing)?` call. This diff will forward that schema to `__turboModuleProxy` function (i.e: the TurboModule C++ infra). **Note:** Both this and D2280384 can't be landed until D22743294 (https://github.com/facebook/react-native/commit/650c0f64f1262d26a31b61d2a7576c485f3efa13) hits production (1-2 weeks). Changelog: [Internal] Reviewed By: fkgozali Differential Revision: D22832730 fbshipit-source-id: aecaf9943f9b01be805ff6b90249a6cbc6abdd20
66 lines
1.8 KiB
JavaScript
66 lines
1.8 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 strict
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const NativeModules = require('../BatchedBridge/NativeModules');
|
|
import type {TurboModule} from './RCTExport';
|
|
import invariant from 'invariant';
|
|
|
|
const turboModuleProxy = global.__turboModuleProxy;
|
|
|
|
function requireModule<T: TurboModule>(name: string, schema?: ?$FlowFixMe): ?T {
|
|
// Bridgeless mode requires TurboModules
|
|
if (!global.RN$Bridgeless) {
|
|
// Backward compatibility layer during migration.
|
|
const legacyModule = NativeModules[name];
|
|
if (legacyModule != null) {
|
|
return ((legacyModule: $FlowFixMe): T);
|
|
}
|
|
}
|
|
|
|
if (turboModuleProxy != null) {
|
|
const module: ?T = turboModuleProxy(name, schema);
|
|
return module;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
export function get<T: TurboModule>(name: string): ?T {
|
|
/**
|
|
* What is Schema?
|
|
*
|
|
* @react-native/babel-plugin-codegen will parse the NativeModule
|
|
* spec, and pass in the generated schema as the second argument
|
|
* to this function
|
|
*/
|
|
const schema = arguments.length === 2 ? arguments[1] : undefined;
|
|
return requireModule<T>(name, schema);
|
|
}
|
|
|
|
export function getEnforcing<T: TurboModule>(name: string): T {
|
|
/**
|
|
* What is Schema?
|
|
*
|
|
* @react-native/babel-plugin-codegen will parse the NativeModule
|
|
* spec, and pass in the generated schema as the second argument
|
|
* to this function
|
|
*/
|
|
const schema = arguments.length === 2 ? arguments[1] : undefined;
|
|
const module = requireModule<T>(name, schema);
|
|
invariant(
|
|
module != null,
|
|
`TurboModuleRegistry.getEnforcing(...): '${name}' could not be found. ` +
|
|
'Verify that a module by this name is registered in the native binary.',
|
|
);
|
|
return module;
|
|
}
|