mirror of
https://github.com/facebook/react.git
synced 2026-02-27 03:07:57 +00:00
* Update transforms to handle ES modules
* Update Jest to handle ES modules
* Convert react package to ES modules
* Convert react-art package to ES Modules
* Convert react-call-return package to ES Modules
* Convert react-test-renderer package to ES Modules
* Convert react-cs-renderer package to ES Modules
* Convert react-rt-renderer package to ES Modules
* Convert react-noop-renderer package to ES Modules
* Convert react-dom/server to ES modules
* Convert react-dom/{client,events,test-utils} to ES modules
* Convert react-dom/shared to ES modules
* Convert react-native-renderer to ES modules
* Convert react-reconciler to ES modules
* Convert events to ES modules
* Convert shared to ES modules
* Remove CommonJS support from transforms
* Move ReactDOMFB entry point code into react-dom/src
This is clearer because we can use ES imports in it.
* Fix Rollup shim configuration to work with ESM
* Fix incorrect comment
* Exclude external imports without side effects
* Fix ReactDOM FB build
* Remove TODOs I don’t intend to fix yet
56 lines
1.9 KiB
JavaScript
56 lines
1.9 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
/**
|
|
* Make sure essential globals are available and are patched correctly. Please don't remove this
|
|
* line. Bundles created by react-packager `require` it before executing any application code. This
|
|
* ensures it exists in the dependency graph and can be `require`d.
|
|
* TODO: require this in packager, not in React #10932517
|
|
*/
|
|
// Module provided by RN:
|
|
import 'InitializeCore';
|
|
|
|
import EventPluginHub from 'events/EventPluginHub';
|
|
import EventPluginUtils from 'events/EventPluginUtils';
|
|
import ResponderEventPlugin from 'events/ResponderEventPlugin';
|
|
// Module provided by RN:
|
|
import RCTEventEmitter from 'RCTEventEmitter';
|
|
|
|
import ReactNativeBridgeEventPlugin from './ReactNativeBridgeEventPlugin';
|
|
import ReactNativeComponentTree from './ReactNativeComponentTree';
|
|
import ReactNativeEventEmitter from './ReactNativeEventEmitter';
|
|
import ReactNativeEventPluginOrder from './ReactNativeEventPluginOrder';
|
|
import ReactNativeGlobalResponderHandler
|
|
from './ReactNativeGlobalResponderHandler';
|
|
|
|
/**
|
|
* Register the event emitter with the native bridge
|
|
*/
|
|
RCTEventEmitter.register(ReactNativeEventEmitter);
|
|
|
|
/**
|
|
* Inject module for resolving DOM hierarchy and plugin ordering.
|
|
*/
|
|
EventPluginHub.injection.injectEventPluginOrder(ReactNativeEventPluginOrder);
|
|
EventPluginUtils.injection.injectComponentTree(ReactNativeComponentTree);
|
|
|
|
ResponderEventPlugin.injection.injectGlobalResponderHandler(
|
|
ReactNativeGlobalResponderHandler,
|
|
);
|
|
|
|
/**
|
|
* Some important event plugins included by default (without having to require
|
|
* them).
|
|
*/
|
|
EventPluginHub.injection.injectEventPluginsByName({
|
|
ResponderEventPlugin: ResponderEventPlugin,
|
|
ReactNativeBridgeEventPlugin: ReactNativeBridgeEventPlugin,
|
|
});
|