-
Notifications
You must be signed in to change notification settings - Fork 49.6k
[Fiber] Reorganize files for DOM renderer to make overlap between fiber/stack clearer #8086
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@iamdustan This file might be of interest to you. It is the remainder of the injection system. At least in the first version of Fiber, but we can probably get rid of these completely at some point.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah beautiful. Thanks for the callout! I’ll get a chance to look deeper later this week 😄