Skip to content

Scheduling Profiler: Show Suspense resource .displayName #22451

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
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
@@ -46,7 +46,7 @@
white-space: nowrap;
}

.DetailsGridURL {
.DetailsGridLongValue {
word-break: break-all;
max-height: 50vh;
overflow: hidden;
Original file line number Diff line number Diff line change
@@ -335,6 +335,7 @@ const TooltipSuspenseEvent = ({
componentName,
duration,
phase,
promiseName,
resolution,
timestamp,
warning,
@@ -356,6 +357,12 @@ const TooltipSuspenseEvent = ({
{label}
<div className={styles.Divider} />
<div className={styles.DetailsGrid}>
{promiseName !== null && (
<>
<div className={styles.DetailsGridLabel}>Resource:</div>
<div className={styles.DetailsGridLongValue}>{promiseName}</div>
</>
)}
<div className={styles.DetailsGridLabel}>Status:</div>
<div>{resolution}</div>
<div className={styles.DetailsGridLabel}>Timestamp:</div>
Original file line number Diff line number Diff line change
@@ -80,6 +80,7 @@ export class SuspenseEventsView extends View {
this._intrinsicSize = {
width: duration,
height: (this._maxDepth + 1) * ROW_WITH_BORDER_HEIGHT,
hideScrollBarIfLessThanHeight: ROW_WITH_BORDER_HEIGHT,
maxInitialHeight: ROW_WITH_BORDER_HEIGHT * MAX_ROWS_TO_SHOW_INITIALLY,
};
}
@@ -113,6 +114,7 @@ export class SuspenseEventsView extends View {
depth,
duration,
phase,
promiseName,
resolution,
timestamp,
warning,
@@ -208,7 +210,9 @@ export class SuspenseEventsView extends View {
);

let label = 'suspended';
if (componentName != null) {
if (promiseName != null) {
label = promiseName;
} else if (componentName != null) {
label = `${componentName} ${label}`;
}
if (phase !== null) {
Original file line number Diff line number Diff line change
@@ -1195,6 +1195,46 @@ describe('preprocessData', () => {
`);
});

it('should include a suspended resource "displayName" if one is set', async () => {
let promise = null;
let resolvedValue = null;
function readValue(value) {
if (resolvedValue !== null) {
return resolvedValue;
} else if (promise === null) {
promise = Promise.resolve(true).then(() => {
resolvedValue = value;
});
promise.displayName = 'Testing displayName';
}
throw promise;
}

function Component() {
const value = readValue(123);
return value;
}

if (gate(flags => flags.enableSchedulingProfiler)) {
const testMarks = [creactCpuProfilerSample()];

const root = ReactDOM.createRoot(document.createElement('div'));
act(() =>
root.render(
<React.Suspense fallback="Loading...">
<Component />
</React.Suspense>,
),
);

testMarks.push(...createUserTimingData(clearedMarks));

const data = await preprocessData(testMarks);
expect(data.suspenseEvents).toHaveLength(1);
expect(data.suspenseEvents[0].promiseName).toBe('Testing displayName');
}
});

describe('warnings', () => {
describe('long event handlers', () => {
it('should not warn when React scedules a (sync) update inside of a short event handler', async () => {
Original file line number Diff line number Diff line change
@@ -564,9 +564,13 @@ function processTimelineEvent(

// React Events - suspense
else if (name.startsWith('--suspense-suspend-')) {
const [id, componentName, phase, laneBitmaskString] = name
.substr(19)
.split('-');
const [
id,
componentName,
phase,
laneBitmaskString,
promiseName,
] = name.substr(19).split('-');
const lanes = getLanesFromTransportDecimalBitmask(laneBitmaskString);

const availableDepths = new Array(
@@ -595,6 +599,7 @@ function processTimelineEvent(
duration: null,
id,
phase: ((phase: any): Phase),
promiseName: promiseName || null,
resolution: 'unresolved',
resuspendTimestamps: null,
timestamp: startTime,
1 change: 1 addition & 0 deletions packages/react-devtools-scheduling-profiler/src/types.js
Original file line number Diff line number Diff line change
@@ -60,6 +60,7 @@ export type SuspenseEvent = {|
duration: number | null,
+id: string,
+phase: Phase | null,
promiseName: string | null,
resolution: 'rejected' | 'resolved' | 'unresolved',
resuspendTimestamps: Array<number> | null,
+type: 'suspense',
Original file line number Diff line number Diff line change
@@ -70,6 +70,9 @@ export function findGitHubIssue(errorMessage: string): GitHubIssue | null {
then(callback) {
callbacks.add(callback);
},

// Optional property used by Scheduling Profiler:
displayName: `Searching GitHub issues for error "${errorMessage}"`,
};
const wake = () => {
// This assumes they won't throw.
3 changes: 3 additions & 0 deletions packages/react-devtools-shared/src/dynamicImportCache.js
Original file line number Diff line number Diff line change
@@ -73,6 +73,9 @@ export function loadModule(moduleLoaderFunction: ModuleLoaderFunction): Module {
then(callback) {
callbacks.add(callback);
},

// Optional property used by Scheduling Profiler:
displayName: `Loading module "${moduleLoaderFunction.name}"`,
};

const wake = () => {
3 changes: 3 additions & 0 deletions packages/react-devtools-shared/src/hookNamesCache.js
Original file line number Diff line number Diff line change
@@ -92,6 +92,9 @@ export function loadHookNames(
then(callback) {
callbacks.add(callback);
},

// Optional property used by Scheduling Profiler:
displayName: `Loading hook names for ${element.displayName || 'Unknown'}`,
};

let timeoutID;
4 changes: 4 additions & 0 deletions packages/react-devtools-shared/src/inspectedElementCache.js
Original file line number Diff line number Diff line change
@@ -94,7 +94,11 @@ export function inspectElement(
then(callback) {
callbacks.add(callback);
},

// Optional property used by Scheduling Profiler:
displayName: `Inspecting ${element.displayName || 'Unknown'}`,
};

const wake = () => {
// This assumes they won't throw.
callbacks.forEach(callback => callback());
9 changes: 8 additions & 1 deletion packages/react-reconciler/src/SchedulingProfiler.js
Original file line number Diff line number Diff line change
@@ -194,9 +194,16 @@ export function markComponentSuspended(
const id = getWakeableID(wakeable);
const componentName = getComponentNameFromFiber(fiber) || 'Unknown';
const phase = fiber.alternate === null ? 'mount' : 'update';

// Following the non-standard fn.displayName convention,
// frameworks like Relay may also annotate Promises with a displayName,
// describing what operation/data the thrown Promise is related to.
// When this is available we should pass it along to the Scheduling Profiler.
const displayName = (wakeable: any).displayName || '';
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that this convention was already established and used by frameworks like Relay.

Note that we're adding the new value in a backwards-compatible way. (Older profiling data sets will just fallback to showing the component name.)


// TODO (scheduling profiler) Add component stack id
markAndClear(
`--suspense-${eventType}-${id}-${componentName}-${phase}-${lanes}`,
`--suspense-${eventType}-${id}-${componentName}-${phase}-${lanes}-${displayName}`,
);
wakeable.then(
() => markAndClear(`--suspense-resolved-${id}-${componentName}`),

Large diffs are not rendered by default.