Skip to content

Commit

Permalink
[react-devtools-shared] resolve fiber type of memo and forwardRef rec…
Browse files Browse the repository at this point in the history
…ursively
  • Loading branch information
wsmd committed Nov 5, 2019
1 parent 04341d4 commit fb63b81
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 14 deletions.
33 changes: 25 additions & 8 deletions packages/react-devtools-shared/src/backend/renderer.js
Expand Up @@ -49,6 +49,7 @@ import {
patch as patchConsole,
registerRenderer as registerRendererWithConsole,
} from './console';
import {isMemo, isForwardRef} from 'react-is';

import type {Fiber} from 'react-reconciler/src/ReactFiber';
import type {
Expand Down Expand Up @@ -326,17 +327,28 @@ export function getInternalReactConstants(
SCOPE_SYMBOL_STRING,
} = ReactSymbols;

function resolveFiberType(type: any) {
// This is to support lazy components with a Promise as the type.
// see https://github.com/facebook/react/pull/13397
if (typeof type.then === 'function') {
return type._reactResult;
}
if (isMemo(type)) {
return resolveFiberType(type.type);
}
if (isForwardRef(type)) {
return resolveFiberType(type.render);
}
return type;
}

// NOTICE Keep in sync with shouldFilterFiber() and other get*ForFiber methods
function getDisplayNameForFiber(fiber: Fiber): string | null {
const {type, tag} = fiber;
const {elementType, type, tag} = fiber;

// This is to support lazy components with a Promise as the type.
// see https://github.com/facebook/react/pull/13397
let resolvedType = type;
if (typeof type === 'object' && type !== null) {
if (typeof type.then === 'function') {
resolvedType = type._reactResult;
}
resolvedType = resolveFiberType(type);
}

let resolvedContext: any = null;
Expand All @@ -348,8 +360,6 @@ export function getInternalReactConstants(
case FunctionComponent:
case IndeterminateComponent:
return getDisplayName(resolvedType);
case MemoComponent:
case SimpleMemoComponent:
case ForwardRef:
return (
resolvedType.displayName || getDisplayName(resolvedType, 'Anonymous')
Expand All @@ -362,6 +372,13 @@ export function getInternalReactConstants(
case HostText:
case Fragment:
return null;
case MemoComponent:
case SimpleMemoComponent:
if (elementType.displayName) {
return elementType.displayName;
} else {
return getDisplayName(resolvedType, 'Anonymous');
}
case SuspenseComponent:
return 'Suspense';
case SuspenseListComponent:
Expand Down
6 changes: 0 additions & 6 deletions packages/react-devtools-shared/src/utils.js
Expand Up @@ -29,8 +29,6 @@ import {
} from 'react-devtools-shared/src/types';
import {localStorageGetItem, localStorageSetItem} from './storage';

import {isMemo, isForwardRef} from 'react-is';

import type {ComponentFilter, ElementType} from './types';

const cachedDisplayNames: WeakMap<Function, string> = new WeakMap();
Expand All @@ -57,10 +55,6 @@ export function getDisplayName(
displayName = type.displayName;
} else if (typeof type.name === 'string' && type.name !== '') {
displayName = type.name;
} else if (isMemo(type)) {
displayName = getDisplayName(type.type);
} else if (isForwardRef(type)) {
displayName = getDisplayName(type.render);
}

cachedDisplayNames.set(type, displayName);
Expand Down

0 comments on commit fb63b81

Please sign in to comment.