react-native/Libraries/TurboModule/TurboModuleRegistry.js
Kevin Gozali 1bbb69355c TM: trimming down module dependencies when getting NativeModules
Summary: For now, do `require('NativeModules')` instead of `import {NativeModules} from 'react-native'`.

Reviewed By: mdvacca

Differential Revision: D13934066

fbshipit-source-id: 5188b11428a4dca8cecd1934e593d89a6e3fde2e
2019-02-01 17:43:09 -08:00

38 lines
868 B
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
* @format
*/
'use strict';
const NativeModules = require('NativeModules');
import type {TurboModule} from 'RCTExport';
import invariant from 'invariant';
// TODO
function get<T: TurboModule>(name: string): ?T {
// Backward compatibility layer during migration.
const legacyModule = NativeModules[name];
if (legacyModule != null) {
return ((legacyModule: any): T);
}
const module: ?T = global.__turboModuleProxy(name);
return module;
}
function getEnforcing<T: TurboModule>(name: string): T {
const module = get(name);
invariant(module != null, `${name} is not available in this app.`);
return module;
}
export {get};
export {getEnforcing};