-
Notifications
You must be signed in to change notification settings - Fork 46.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8086 from sebmarkbage/fiberdom
[Fiber] Reorganize files for DOM renderer to make overlap between fiber/stack clearer
- Loading branch information
Showing
125 changed files
with
165 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/** | ||
* Copyright 2013-present, Facebook, Inc. | ||
* All rights reserved. | ||
* | ||
* This source code is licensed under the BSD-style license found in the | ||
* LICENSE file in the root directory of this source tree. An additional grant | ||
* of patent rights can be found in the PATENTS file in the same directory. | ||
* | ||
* @providesModule ReactDOMStackInjection | ||
*/ | ||
|
||
'use strict'; | ||
|
||
var ReactComponentEnvironment = require('ReactComponentEnvironment'); | ||
var ReactComponentBrowserEnvironment = | ||
require('ReactComponentBrowserEnvironment'); | ||
var ReactDOMComponent = require('ReactDOMComponent'); | ||
var ReactDOMEmptyComponent = require('ReactDOMEmptyComponent'); | ||
var ReactDOMTextComponent = require('ReactDOMTextComponent'); | ||
var ReactDefaultBatchingStrategy = require('ReactDefaultBatchingStrategy'); | ||
var ReactEmptyComponent = require('ReactEmptyComponent'); | ||
var ReactHostComponent = require('ReactHostComponent'); | ||
var ReactReconcileTransaction = require('ReactReconcileTransaction'); | ||
var ReactUpdates = require('ReactUpdates'); | ||
|
||
var alreadyInjected = false; | ||
|
||
function inject() { | ||
if (alreadyInjected) { | ||
// TODO: This is currently true because these injections are shared between | ||
// the client and the server package. They should be built independently | ||
// and not share any injection state. Then this problem will be solved. | ||
return; | ||
} | ||
alreadyInjected = true; | ||
|
||
ReactHostComponent.injection.injectGenericComponentClass( | ||
ReactDOMComponent | ||
); | ||
|
||
ReactHostComponent.injection.injectTextComponentClass( | ||
ReactDOMTextComponent | ||
); | ||
|
||
ReactEmptyComponent.injection.injectEmptyComponentFactory( | ||
function(instantiate) { | ||
return new ReactDOMEmptyComponent(instantiate); | ||
} | ||
); | ||
|
||
ReactUpdates.injection.injectReconcileTransaction( | ||
ReactReconcileTransaction | ||
); | ||
ReactUpdates.injection.injectBatchingStrategy( | ||
ReactDefaultBatchingStrategy | ||
); | ||
|
||
ReactComponentEnvironment.injection.injectEnvironment(ReactComponentBrowserEnvironment); | ||
} | ||
|
||
module.exports = { | ||
inject: inject, | ||
}; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/** | ||
* Copyright (c) 2015-present, Facebook, Inc. | ||
* All rights reserved. | ||
* | ||
* This source code is licensed under the BSD-style license found in the | ||
* LICENSE file in the root directory of this source tree. An additional grant | ||
* of patent rights can be found in the PATENTS file in the same directory. | ||
* | ||
* @providesModule ReactNativeInjection | ||
* @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 | ||
*/ | ||
require('InitializeJavaScriptAppEngine'); | ||
|
||
var EventPluginHub = require('EventPluginHub'); | ||
var EventPluginUtils = require('EventPluginUtils'); | ||
var RCTEventEmitter = require('RCTEventEmitter'); | ||
var ReactNativeBridgeEventPlugin = require('ReactNativeBridgeEventPlugin'); | ||
var ReactNativeComponentTree = require('ReactNativeComponentTree'); | ||
var ReactNativeEventEmitter = require('ReactNativeEventEmitter'); | ||
var ReactNativeEventPluginOrder = require('ReactNativeEventPluginOrder'); | ||
var ReactNativeGlobalResponderHandler = require('ReactNativeGlobalResponderHandler'); | ||
var ReactNativeTreeTraversal = require('ReactNativeTreeTraversal'); | ||
var ResponderEventPlugin = require('ResponderEventPlugin'); | ||
|
||
function inject() { | ||
/** | ||
* 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); | ||
EventPluginUtils.injection.injectTreeTraversal(ReactNativeTreeTraversal); | ||
|
||
ResponderEventPlugin.injection.injectGlobalResponderHandler( | ||
ReactNativeGlobalResponderHandler | ||
); | ||
|
||
/** | ||
* Some important event plugins included by default (without having to require | ||
* them). | ||
*/ | ||
EventPluginHub.injection.injectEventPluginsByName({ | ||
'ResponderEventPlugin': ResponderEventPlugin, | ||
'ReactNativeBridgeEventPlugin': ReactNativeBridgeEventPlugin, | ||
}); | ||
} | ||
|
||
module.exports = { | ||
inject: inject, | ||
}; |
Oops, something went wrong.