Skip to content

Commit

Permalink
Walk down internal tree to find DOM node
Browse files Browse the repository at this point in the history
This reduces our reliance on hierarchical IDs.
  • Loading branch information
sophiebits committed Oct 14, 2015
1 parent 4f9fdee commit 5c5d2ec
Show file tree
Hide file tree
Showing 7 changed files with 80 additions and 83 deletions.
19 changes: 0 additions & 19 deletions src/renderers/dom/client/ReactMount.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ var ReactBrowserEventEmitter = require('ReactBrowserEventEmitter');
var ReactCurrentOwner = require('ReactCurrentOwner');
var ReactDOMContainerInfo = require('ReactDOMContainerInfo');
var ReactElement = require('ReactElement');
var ReactEmptyComponentRegistry = require('ReactEmptyComponentRegistry');
var ReactInstanceHandles = require('ReactInstanceHandles');
var ReactInstanceMap = require('ReactInstanceMap');
var ReactMarkupChecksum = require('ReactMarkupChecksum');
var ReactPerf = require('ReactPerf');
var ReactReconciler = require('ReactReconciler');
Expand Down Expand Up @@ -175,21 +173,6 @@ function getNode(id) {
}
}

/**
* Finds the node with the supplied public React instance.
*
* @param {*} instance A public React instance.
* @return {?DOMElement} DOM node with the suppled `id`.
* @internal
*/
function getNodeFromInstance(instance) {
var id = ReactInstanceMap.get(instance)._rootNodeID;
if (ReactEmptyComponentRegistry.isNullComponentID(id)) {
return null;
}
return getNode(id);
}

/**
* A node is "valid" if it is contained by a currently mounted container.
*
Expand Down Expand Up @@ -1073,8 +1056,6 @@ var ReactMount = {

getNode: getNode,

getNodeFromInstance: getNodeFromInstance,

isValid: isValid,

purgeID: purgeID,
Expand Down
47 changes: 34 additions & 13 deletions src/renderers/dom/client/findDOMNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,27 @@
'use strict';

var ReactCurrentOwner = require('ReactCurrentOwner');
var ReactDOMComponent = require('ReactDOMComponent');
var ReactInstanceMap = require('ReactInstanceMap');
var ReactMount = require('ReactMount');
var ReactNodeTypes = require('ReactNodeTypes');

var invariant = require('invariant');
var warning = require('warning');

function getNativeComponentFromComposite(inst) {
var type;

while ((type = inst._renderedNodeType) === ReactNodeTypes.COMPOSITE) {
inst = inst._renderedComponent;
}

if (type === ReactNodeTypes.NATIVE) {
return inst._renderedComponent;
} else if (type === ReactNodeTypes.EMPTY) {
return null;
}
}

/**
* Returns the DOM node rendered by this element.
*
Expand Down Expand Up @@ -47,19 +62,25 @@ function findDOMNode(componentOrElement) {
if (componentOrElement.nodeType === 1) {
return componentOrElement;
}
if (ReactInstanceMap.has(componentOrElement)) {
return ReactMount.getNodeFromInstance(componentOrElement);

var inst = ReactInstanceMap.get(componentOrElement);
if (inst) {
inst = getNativeComponentFromComposite(inst);
return inst ? ReactDOMComponent.getNodeFromInstance(inst) : null;
}

if (typeof componentOrElement.render === 'function') {
invariant(
false,
'findDOMNode was called on an unmounted component.'
);
} else {
invariant(
false,
'Element appears to be neither ReactComponent nor DOMNode (keys: %s)',
Object.keys(componentOrElement)
);
}
invariant(
componentOrElement.render == null ||
typeof componentOrElement.render !== 'function',
'findDOMNode was called on an unmounted component.'
);
invariant(
false,
'Element appears to be neither ReactComponent nor DOMNode (keys: %s)',
Object.keys(componentOrElement)
);
}

module.exports = findDOMNode;
4 changes: 4 additions & 0 deletions src/renderers/dom/shared/ReactDOMComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -1173,4 +1173,8 @@ assign(
ReactMultiChild.Mixin
);

assign(ReactDOMComponent, {
getNodeFromInstance: getNode,
});

module.exports = ReactDOMComponent;
5 changes: 5 additions & 0 deletions src/renderers/shared/reconciler/ReactCompositeComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ var ReactComponentEnvironment = require('ReactComponentEnvironment');
var ReactCurrentOwner = require('ReactCurrentOwner');
var ReactElement = require('ReactElement');
var ReactInstanceMap = require('ReactInstanceMap');
var ReactNodeTypes = require('ReactNodeTypes');
var ReactPerf = require('ReactPerf');
var ReactPropTypeLocations = require('ReactPropTypeLocations');
var ReactPropTypeLocationNames = require('ReactPropTypeLocationNames');
Expand Down Expand Up @@ -105,6 +106,7 @@ var ReactCompositeComponentMixin = {
this._pendingReplaceState = false;
this._pendingForceUpdate = false;

this._renderedNodeType = null;
this._renderedComponent = null;

this._context = null;
Expand Down Expand Up @@ -290,6 +292,7 @@ var ReactCompositeComponentMixin = {
renderedElement = this._renderValidatedComponent();
}

this._renderedNodeType = ReactNodeTypes.getType(renderedElement);
this._renderedComponent = this._instantiateReactComponent(
renderedElement
);
Expand Down Expand Up @@ -327,6 +330,7 @@ var ReactCompositeComponentMixin = {
}

ReactReconciler.unmountComponent(this._renderedComponent);
this._renderedNodeType = null;
this._renderedComponent = null;
this._instance = null;

Expand Down Expand Up @@ -752,6 +756,7 @@ var ReactCompositeComponentMixin = {

ReactReconciler.unmountComponent(prevComponentInstance);

this._renderedNodeType = ReactNodeTypes.getType(nextRenderedElement);
this._renderedComponent = this._instantiateReactComponent(
nextRenderedElement
);
Expand Down
3 changes: 0 additions & 3 deletions src/renderers/shared/reconciler/ReactEmptyComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
'use strict';

var ReactElement = require('ReactElement');
var ReactEmptyComponentRegistry = require('ReactEmptyComponentRegistry');
var ReactReconciler = require('ReactReconciler');

var assign = require('Object.assign');
Expand Down Expand Up @@ -40,7 +39,6 @@ assign(ReactEmptyComponent.prototype, {
nativeContainerInfo,
context
) {
ReactEmptyComponentRegistry.registerNullComponentID(rootID);
this._rootNodeID = rootID;
return ReactReconciler.mountComponent(
this._renderedComponent,
Expand All @@ -58,7 +56,6 @@ assign(ReactEmptyComponent.prototype, {
},
unmountComponent: function(rootID, transaction, context) {
ReactReconciler.unmountComponent(this._renderedComponent);
ReactEmptyComponentRegistry.deregisterNullComponentID(this._rootNodeID);
this._rootNodeID = null;
this._renderedComponent = null;
},
Expand Down
48 changes: 0 additions & 48 deletions src/renderers/shared/reconciler/ReactEmptyComponentRegistry.js

This file was deleted.

37 changes: 37 additions & 0 deletions src/shared/utils/ReactNodeTypes.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/**
* Copyright 2013-2015, 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 ReactNodeTypes
*/

'use strict';

var ReactElement = require('ReactElement');

var invariant = require('invariant');

var ReactNodeTypes = {
NATIVE: 0,
COMPOSITE: 1,
EMPTY: 2,

getType: function(node) {
if (node === null || node === false) {
return ReactNodeTypes.EMPTY;
} else if (ReactElement.isValidElement(node)) {
if (typeof node.type === 'function') {
return ReactNodeTypes.COMPOSITE;
} else {
return ReactNodeTypes.NATIVE;
}
}
invariant(false, 'Unexpected node: %s', node);
},
};

module.exports = ReactNodeTypes;

0 comments on commit 5c5d2ec

Please sign in to comment.