chrome-devtools-frontend
Version:
Chrome DevTools UI
119 lines (101 loc) • 4.07 kB
text/typescript
// Copyright 2024 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import './Table.js';
import * as i18n from '../../../../core/i18n/i18n.js';
import * as Platform from '../../../../core/platform/platform.js';
import type {INPInsightModel} from '../../../../models/trace/insights/InteractionToNextPaint.js';
import * as Trace from '../../../../models/trace/trace.js';
import * as Lit from '../../../../ui/lit/lit.js';
import type * as Overlays from '../../overlays/overlays.js';
import {BaseInsightComponent} from './BaseInsightComponent.js';
const {UIStrings, i18nString} = Trace.Insights.Models.InteractionToNextPaint;
const {html} = Lit;
export class InteractionToNextPaint extends BaseInsightComponent<INPInsightModel> {
static override readonly litTagName = Lit.StaticHtml.literal`devtools-performance-inp`;
override internalName = 'inp';
protected override hasAskAiSupport(): boolean {
return this.model?.longestInteractionEvent !== undefined;
}
override createOverlays(): Overlays.Overlays.TimelineOverlay[] {
if (!this.model) {
return [];
}
const event = this.model.longestInteractionEvent;
if (!event) {
return [];
}
return this.#createOverlaysForPhase(event);
}
// If `phase` is -1, then all phases are included. Otherwise it's just that phase index.
#createOverlaysForPhase(event: Trace.Types.Events.SyntheticInteractionPair, phase = -1):
Overlays.Overlays.TimelineOverlay[] {
const p1 = Trace.Helpers.Timing.traceWindowFromMicroSeconds(
event.ts,
(event.ts + event.inputDelay) as Trace.Types.Timing.Micro,
);
const p2 = Trace.Helpers.Timing.traceWindowFromMicroSeconds(
p1.max,
(p1.max + event.mainThreadHandling) as Trace.Types.Timing.Micro,
);
const p3 = Trace.Helpers.Timing.traceWindowFromMicroSeconds(
p2.max,
(p2.max + event.presentationDelay) as Trace.Types.Timing.Micro,
);
let sections = [
{bounds: p1, label: i18nString(UIStrings.inputDelay), showDuration: true},
{bounds: p2, label: i18nString(UIStrings.processingDuration), showDuration: true},
{bounds: p3, label: i18nString(UIStrings.presentationDelay), showDuration: true},
];
if (phase !== -1) {
sections = [sections[phase]];
}
return [
{
type: 'TIMESPAN_BREAKDOWN',
sections,
renderLocation: 'BELOW_EVENT',
entry: event,
},
];
}
override renderContent(): Lit.LitTemplate {
const event = this.model?.longestInteractionEvent;
if (!event) {
return html`<div class="insight-section">${i18nString(UIStrings.noInteractions)}</div>`;
}
const time = (us: Trace.Types.Timing.Micro): string =>
i18n.TimeUtilities.millisToString(Platform.Timing.microSecondsToMilliSeconds(us));
// clang-format off
return html`
<div class="insight-section">
${html`<devtools-performance-table
.data=${{
insight: this,
headers: [i18nString(UIStrings.phase), i18nString(UIStrings.duration)],
rows: [
{
values: [i18nString(UIStrings.inputDelay), time(event.inputDelay)],
overlays: this.#createOverlaysForPhase(event, 0),
},
{
values: [i18nString(UIStrings.processingDuration), time(event.mainThreadHandling)],
overlays: this.#createOverlaysForPhase(event, 1),
},
{
values: [i18nString(UIStrings.presentationDelay), time(event.presentationDelay)],
overlays: this.#createOverlaysForPhase(event, 2),
},
],
}}>
</devtools-performance-table>`}
</div>`;
// clang-format on
}
}
declare global {
interface HTMLElementTagNameMap {
'devtools-performance-inp': InteractionToNextPaint;
}
}
customElements.define('devtools-performance-inp', InteractionToNextPaint);