mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
21a161fa37
## Summary This is required for the case when we have an instance and want to get inspector data for it. Such case occurs when RN's application being debugged via React DevTools. React DevTools sends instance to RN, which then gets all auxiliary data to highlight some elements. Having `getInspectorDataForInstance` method exposed makes it possible to easily get current props from fiber, which then can be used to display some margins & paddings for hovered element (via props.style). I see that `getInspectorDataForInstance` is being exported at the top level of the renderer, but feels like this should also be inside DevTools global hook, the same way we use it for [`getInspectorDataForViewAtPoint`](https://github.com/facebook/react-native/blob/e7d3662904e0e35e43380ee6d54859388713a592/packages/react-native/Libraries/Inspector/getInspectorDataForViewAtPoint.js).
259 lines
7.4 KiB
JavaScript
259 lines
7.4 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
*/
|
|
|
|
import type {Fiber} from 'react-reconciler/src/ReactInternalTypes';
|
|
import type {TouchedViewDataAtPoint, InspectorData} from './ReactNativeTypes';
|
|
|
|
import {
|
|
findCurrentHostFiber,
|
|
findCurrentFiberUsingSlowPath,
|
|
} from 'react-reconciler/src/ReactFiberTreeReflection';
|
|
import getComponentNameFromType from 'shared/getComponentNameFromType';
|
|
import {HostComponent} from 'react-reconciler/src/ReactWorkTags';
|
|
// Module provided by RN:
|
|
import {
|
|
UIManager,
|
|
getNodeFromPublicInstance,
|
|
} from 'react-native/Libraries/ReactPrivate/ReactNativePrivateInterface';
|
|
import {enableGetInspectorDataForInstanceInProduction} from 'shared/ReactFeatureFlags';
|
|
import {getClosestInstanceFromNode} from './ReactNativeComponentTree';
|
|
import {getNodeFromInternalInstanceHandle} from './ReactNativePublicCompat';
|
|
|
|
const emptyObject = {};
|
|
if (__DEV__) {
|
|
Object.freeze(emptyObject);
|
|
}
|
|
|
|
// $FlowFixMe[missing-local-annot]
|
|
function createHierarchy(fiberHierarchy) {
|
|
return fiberHierarchy.map(fiber => ({
|
|
name: getComponentNameFromType(fiber.type),
|
|
getInspectorData: findNodeHandle => {
|
|
return {
|
|
props: getHostProps(fiber),
|
|
source: fiber._debugSource,
|
|
measure: callback => {
|
|
// If this is Fabric, we'll find a shadow node and use that to measure.
|
|
const hostFiber = findCurrentHostFiber(fiber);
|
|
const node =
|
|
hostFiber != null &&
|
|
hostFiber.stateNode !== null &&
|
|
hostFiber.stateNode.node;
|
|
|
|
if (node) {
|
|
nativeFabricUIManager.measure(node, callback);
|
|
} else {
|
|
return UIManager.measure(
|
|
getHostNode(fiber, findNodeHandle),
|
|
callback,
|
|
);
|
|
}
|
|
},
|
|
};
|
|
},
|
|
}));
|
|
}
|
|
|
|
// $FlowFixMe[missing-local-annot]
|
|
function getHostNode(fiber: Fiber | null, findNodeHandle) {
|
|
if (__DEV__ || enableGetInspectorDataForInstanceInProduction) {
|
|
let hostNode;
|
|
// look for children first for the hostNode
|
|
// as composite fibers do not have a hostNode
|
|
while (fiber) {
|
|
if (fiber.stateNode !== null && fiber.tag === HostComponent) {
|
|
hostNode = findNodeHandle(fiber.stateNode);
|
|
}
|
|
if (hostNode) {
|
|
return hostNode;
|
|
}
|
|
fiber = fiber.child;
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// $FlowFixMe[missing-local-annot]
|
|
function getHostProps(fiber) {
|
|
const host = findCurrentHostFiber(fiber);
|
|
if (host) {
|
|
return host.memoizedProps || emptyObject;
|
|
}
|
|
return emptyObject;
|
|
}
|
|
|
|
function getInspectorDataForInstance(
|
|
closestInstance: Fiber | null,
|
|
): InspectorData {
|
|
if (__DEV__ || enableGetInspectorDataForInstanceInProduction) {
|
|
// Handle case where user clicks outside of ReactNative
|
|
if (!closestInstance) {
|
|
return {
|
|
hierarchy: [],
|
|
props: emptyObject,
|
|
selectedIndex: null,
|
|
source: null,
|
|
};
|
|
}
|
|
|
|
const fiber = findCurrentFiberUsingSlowPath(closestInstance);
|
|
const fiberHierarchy = getOwnerHierarchy(fiber);
|
|
const instance = lastNonHostInstance(fiberHierarchy);
|
|
const hierarchy = createHierarchy(fiberHierarchy);
|
|
const props = getHostProps(instance);
|
|
const source = instance._debugSource;
|
|
const selectedIndex = fiberHierarchy.indexOf(instance);
|
|
|
|
return {
|
|
closestInstance: instance,
|
|
hierarchy,
|
|
props,
|
|
selectedIndex,
|
|
source,
|
|
};
|
|
}
|
|
|
|
throw new Error(
|
|
'getInspectorDataForInstance() is not available in production',
|
|
);
|
|
}
|
|
|
|
function getOwnerHierarchy(instance: any) {
|
|
const hierarchy: Array<$FlowFixMe> = [];
|
|
traverseOwnerTreeUp(hierarchy, instance);
|
|
return hierarchy;
|
|
}
|
|
|
|
// $FlowFixMe[missing-local-annot]
|
|
function lastNonHostInstance(hierarchy) {
|
|
for (let i = hierarchy.length - 1; i > 1; i--) {
|
|
const instance = hierarchy[i];
|
|
|
|
if (instance.tag !== HostComponent) {
|
|
return instance;
|
|
}
|
|
}
|
|
return hierarchy[0];
|
|
}
|
|
|
|
// $FlowFixMe[missing-local-annot]
|
|
function traverseOwnerTreeUp(
|
|
hierarchy: Array<$FlowFixMe>,
|
|
instance: any,
|
|
): void {
|
|
if (__DEV__ || enableGetInspectorDataForInstanceInProduction) {
|
|
if (instance) {
|
|
hierarchy.unshift(instance);
|
|
traverseOwnerTreeUp(hierarchy, instance._debugOwner);
|
|
}
|
|
}
|
|
}
|
|
|
|
function getInspectorDataForViewTag(viewTag: number): InspectorData {
|
|
if (__DEV__) {
|
|
const closestInstance = getClosestInstanceFromNode(viewTag);
|
|
|
|
return getInspectorDataForInstance(closestInstance);
|
|
} else {
|
|
throw new Error(
|
|
'getInspectorDataForViewTag() is not available in production',
|
|
);
|
|
}
|
|
}
|
|
|
|
function getInspectorDataForViewAtPoint(
|
|
findNodeHandle: (componentOrHandle: any) => ?number,
|
|
inspectedView: Object,
|
|
locationX: number,
|
|
locationY: number,
|
|
callback: (viewData: TouchedViewDataAtPoint) => mixed,
|
|
): void {
|
|
if (__DEV__) {
|
|
let closestInstance = null;
|
|
|
|
const fabricNode = getNodeFromPublicInstance(inspectedView);
|
|
if (fabricNode) {
|
|
// For Fabric we can look up the instance handle directly and measure it.
|
|
nativeFabricUIManager.findNodeAtPoint(
|
|
fabricNode,
|
|
locationX,
|
|
locationY,
|
|
internalInstanceHandle => {
|
|
const node =
|
|
internalInstanceHandle != null
|
|
? getNodeFromInternalInstanceHandle(internalInstanceHandle)
|
|
: null;
|
|
if (internalInstanceHandle == null || node == null) {
|
|
callback({
|
|
pointerY: locationY,
|
|
frame: {left: 0, top: 0, width: 0, height: 0},
|
|
...getInspectorDataForInstance(closestInstance),
|
|
});
|
|
return;
|
|
}
|
|
|
|
closestInstance =
|
|
internalInstanceHandle.stateNode.canonical.internalInstanceHandle;
|
|
|
|
// Note: this is deprecated and we want to remove it ASAP. Keeping it here for React DevTools compatibility for now.
|
|
const nativeViewTag =
|
|
internalInstanceHandle.stateNode.canonical.nativeTag;
|
|
|
|
nativeFabricUIManager.measure(
|
|
node,
|
|
(x, y, width, height, pageX, pageY) => {
|
|
const inspectorData =
|
|
getInspectorDataForInstance(closestInstance);
|
|
callback({
|
|
...inspectorData,
|
|
pointerY: locationY,
|
|
frame: {left: pageX, top: pageY, width, height},
|
|
touchedViewTag: nativeViewTag,
|
|
});
|
|
},
|
|
);
|
|
},
|
|
);
|
|
} else if (inspectedView._internalFiberInstanceHandleDEV != null) {
|
|
// For Paper we fall back to the old strategy using the React tag.
|
|
UIManager.findSubviewIn(
|
|
findNodeHandle(inspectedView),
|
|
[locationX, locationY],
|
|
(nativeViewTag, left, top, width, height) => {
|
|
const inspectorData = getInspectorDataForInstance(
|
|
getClosestInstanceFromNode(nativeViewTag),
|
|
);
|
|
callback({
|
|
...inspectorData,
|
|
pointerY: locationY,
|
|
frame: {left, top, width, height},
|
|
touchedViewTag: nativeViewTag,
|
|
});
|
|
},
|
|
);
|
|
} else {
|
|
console.error(
|
|
'getInspectorDataForViewAtPoint expects to receive a host component',
|
|
);
|
|
|
|
return;
|
|
}
|
|
} else {
|
|
throw new Error(
|
|
'getInspectorDataForViewAtPoint() is not available in production.',
|
|
);
|
|
}
|
|
}
|
|
|
|
export {
|
|
getInspectorDataForInstance,
|
|
getInspectorDataForViewAtPoint,
|
|
getInspectorDataForViewTag,
|
|
};
|