Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import FetchFileWithCachingContext from './FetchFileWithCachingContext';
import {symbolicateSourceWithCache} from 'react-devtools-shared/src/symbolicateSource';
import OpenInEditorButton from './OpenInEditorButton';
import InspectedElementViewSourceButton from './InspectedElementViewSourceButton';
import Skeleton from './Skeleton';
import useEditorURL from '../useEditorURL';

import styles from './InspectedElement.css';
Expand Down Expand Up @@ -203,7 +202,9 @@ export default function InspectedElementWrapper(_: Props): React.Node {
}

return (
<div className={styles.InspectedElement}>
<div
className={styles.InspectedElement}
key={inspectedElementID /* Force reset when selected Element changes */}>
<div className={styles.TitleRow} data-testname="InspectedElement-Title">
{strictModeBadge}

Expand Down Expand Up @@ -232,13 +233,11 @@ export default function InspectedElementWrapper(_: Props): React.Node {
!!editorURL &&
source != null &&
symbolicatedSourcePromise != null && (
<React.Suspense fallback={<Skeleton height={16} width={24} />}>
<OpenInEditorButton
editorURL={editorURL}
source={source}
symbolicatedSourcePromise={symbolicatedSourcePromise}
/>
</React.Suspense>
<OpenInEditorButton
editorURL={editorURL}
source={source}
symbolicatedSourcePromise={symbolicatedSourcePromise}
/>
)}

{canToggleError && (
Expand Down Expand Up @@ -294,9 +293,6 @@ export default function InspectedElementWrapper(_: Props): React.Node {

{inspectedElement !== null && symbolicatedSourcePromise != null && (
<InspectedElementView
key={
inspectedElementID /* Force reset when selected Element changes */
}
element={element}
hookNames={hookNames}
inspectedElement={inspectedElement}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,12 @@ function InspectedElementSourcePanel({
<div className={styles.SourceHeaderRow}>
<div className={styles.SourceHeader}>source</div>

<React.Suspense fallback={<Skeleton height={16} width={16} />}>
<React.Suspense
fallback={
<Button disabled={true} title="Loading source maps...">
<ButtonIcon type="copy" />
</Button>
}>
<CopySourceButton
source={source}
symbolicatedSourcePromise={symbolicatedSourcePromise}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,7 @@
overflow: hidden;
text-overflow: ellipsis;
}

.RenderedBySkeleton {
padding-left: 1.25rem;
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import {enableStyleXFeatures} from 'react-devtools-feature-flags';
import InspectedElementSourcePanel from './InspectedElementSourcePanel';
import StackTraceView from './StackTraceView';
import OwnerView from './OwnerView';
import Skeleton from './Skeleton';

import styles from './InspectedElementView.css';

Expand Down Expand Up @@ -170,34 +171,40 @@ export default function InspectedElementView({
className={styles.InspectedElementSection}
data-testname="InspectedElementView-Owners">
<div className={styles.OwnersHeader}>rendered by</div>

{showStack ? <StackTraceView stack={stack} /> : null}
{showOwnersList &&
owners?.map(owner => (
<Fragment key={owner.id}>
<OwnerView
displayName={owner.displayName || 'Anonymous'}
hocDisplayNames={owner.hocDisplayNames}
environmentName={
inspectedElement.env === owner.env ? null : owner.env
}
compiledWithForget={owner.compiledWithForget}
id={owner.id}
isInStore={store.containsElement(owner.id)}
type={owner.type}
/>
{owner.stack != null && owner.stack.length > 0 ? (
<StackTraceView stack={owner.stack} />
) : null}
</Fragment>
))}

{rootType !== null && (
<div className={styles.OwnersMetaField}>{rootType}</div>
)}
{rendererLabel !== null && (
<div className={styles.OwnersMetaField}>{rendererLabel}</div>
)}
<React.Suspense
fallback={
<div className={styles.RenderedBySkeleton}>
<Skeleton height={16} width="40%" />
</div>
}>
{showStack ? <StackTraceView stack={stack} /> : null}
{showOwnersList &&
owners?.map(owner => (
<Fragment key={owner.id}>
<OwnerView
displayName={owner.displayName || 'Anonymous'}
hocDisplayNames={owner.hocDisplayNames}
environmentName={
inspectedElement.env === owner.env ? null : owner.env
}
compiledWithForget={owner.compiledWithForget}
id={owner.id}
isInStore={store.containsElement(owner.id)}
type={owner.type}
/>
{owner.stack != null && owner.stack.length > 0 ? (
<StackTraceView stack={owner.stack} />
) : null}
</Fragment>
))}

{rootType !== null && (
<div className={styles.OwnersMetaField}>{rootType}</div>
)}
{rendererLabel !== null && (
<div className={styles.OwnersMetaField}>{rendererLabel}</div>
)}
</React.Suspense>
</div>
)}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import * as React from 'react';

import ButtonIcon from '../ButtonIcon';
import Button from '../Button';
import Skeleton from './Skeleton';

import type {ReactFunctionLocation} from 'shared/ReactTypes';

Expand All @@ -27,7 +26,12 @@ function InspectedElementViewSourceButton({
symbolicatedSourcePromise,
}: Props): React.Node {
return (
<React.Suspense fallback={<Skeleton height={16} width={24} />}>
<React.Suspense
fallback={
<Button disabled={true} title="Loading source maps...">
<ButtonIcon type="view-source" />
</Button>
}>
<ActualSourceButton
source={source}
symbolicatedSourcePromise={symbolicatedSourcePromise}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

@keyframes pulse {
0%, 100% {
background-color: var(--color-dim);
background-color: none;
}
50% {
background-color: var(--color-dimmest)
background-color: var(--color-dimmest);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ type Props = {
className?: string,
};

function OpenInEditorButton({editorURL, source, className}: Props): React.Node {
function ActualOpenInEditorButton({
editorURL,
source,
className,
}: Props): React.Node {
let disable;
if (source == null) {
disable = true;
Expand Down Expand Up @@ -68,4 +72,22 @@ function OpenInEditorButton({editorURL, source, className}: Props): React.Node {
);
}

function OpenInEditorButton({editorURL, source, className}: Props): React.Node {
return (
<React.Suspense
fallback={
<Button disabled={true} className={className}>
<ButtonIcon type="editor" />
<ButtonLabel>Loading source maps...</ButtonLabel>
</Button>
}>
<ActualOpenInEditorButton
editorURL={editorURL}
source={source}
className={className}
/>
</React.Suspense>
);
}

export default OpenInEditorButton;
2 changes: 1 addition & 1 deletion packages/react-reconciler/src/ReactFiberCommitWork.js
Original file line number Diff line number Diff line change
Expand Up @@ -1894,7 +1894,6 @@ function attachSuspenseRetryListeners(
const retryCache = getRetryCache(finishedWork);
wakeables.forEach(wakeable => {
// Memoize using the boundary fiber to prevent redundant listeners.
const retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
if (!retryCache.has(wakeable)) {
retryCache.add(wakeable);

Expand All @@ -1911,6 +1910,7 @@ function attachSuspenseRetryListeners(
}
}

const retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
wakeable.then(retry, retry);
}
});
Expand Down
Loading