mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
60 lines
1.9 KiB
JavaScript
60 lines
1.9 KiB
JavaScript
/**
|
|
* Copyright 2013 Facebook, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
* @providesModule ReactDefaultInjection
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
var ReactDOM = require("./ReactDOM");
|
|
var ReactDOMForm = require("./ReactDOMForm");
|
|
|
|
var DefaultEventPluginOrder = require("./DefaultEventPluginOrder");
|
|
var EnterLeaveEventPlugin = require("./EnterLeaveEventPlugin");
|
|
var EventPluginHub = require("./EventPluginHub");
|
|
var ReactInstanceHandles = require("./ReactInstanceHandles");
|
|
var SimpleEventPlugin = require("./SimpleEventPlugin");
|
|
|
|
function inject() {
|
|
/**
|
|
* Inject module for resolving DOM hierarchy and plugin ordering.
|
|
*/
|
|
EventPluginHub.injection.injectEventPluginOrder(DefaultEventPluginOrder);
|
|
EventPluginHub.injection.injectInstanceHandle(ReactInstanceHandles);
|
|
|
|
/**
|
|
* Two important event plugins included by default (without having to require
|
|
* them).
|
|
*/
|
|
EventPluginHub.injection.injectEventPluginsByName({
|
|
'SimpleEventPlugin': SimpleEventPlugin,
|
|
'EnterLeaveEventPlugin': EnterLeaveEventPlugin
|
|
});
|
|
|
|
/*
|
|
* This is a bit of a hack. We need to override the <form> element
|
|
* to be a composite component because IE8 does not bubble or capture
|
|
* submit to the top level. In order to make this work with our
|
|
* dependency graph we need to inject it here.
|
|
*/
|
|
ReactDOM.injection.injectComponentClasses({
|
|
form: ReactDOMForm
|
|
});
|
|
}
|
|
|
|
module.exports = {
|
|
inject: inject
|
|
};
|