UNPKG

chrome-devtools-frontend

Version:
73 lines (63 loc) 2.9 kB
// Copyright 2023 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. /* eslint-disable rulesdir/no-lit-render-outside-of-view */ import * as i18n from '../../../core/i18n/i18n.js'; import type * as Trace from '../../../models/trace/trace.js'; import * as ComponentHelpers from '../../../ui/components/helpers/helpers.js'; import * as Lit from '../../../ui/lit/lit.js'; import interactionBreakdownStyles from './interactionBreakdown.css.js'; const {html} = Lit; const UIStrings = { /** *@description Text shown next to the interaction event's input delay time in the detail view. */ inputDelay: 'Input delay', /** *@description Text shown next to the interaction event's thread processing duration in the detail view. */ processingDuration: 'Processing duration', /** *@description Text shown next to the interaction event's presentation delay time in the detail view. */ presentationDelay: 'Presentation delay', } as const; const str_ = i18n.i18n.registerUIStrings('panels/timeline/components/InteractionBreakdown.ts', UIStrings); const i18nString = i18n.i18n.getLocalizedString.bind(undefined, str_); export class InteractionBreakdown extends HTMLElement { readonly #shadow = this.attachShadow({mode: 'open'}); #entry: Trace.Types.Events.SyntheticInteractionPair|null = null; set entry(entry: Trace.Types.Events.SyntheticInteractionPair) { if (entry === this.#entry) { return; } this.#entry = entry; void ComponentHelpers.ScheduledRender.scheduleRender(this, this.#render); } #render(): void { if (!this.#entry) { return; } const inputDelay = i18n.TimeUtilities.formatMicroSecondsAsMillisFixed(this.#entry.inputDelay); const mainThreadTime = i18n.TimeUtilities.formatMicroSecondsAsMillisFixed(this.#entry.mainThreadHandling); const presentationDelay = i18n.TimeUtilities.formatMicroSecondsAsMillisFixed(this.#entry.presentationDelay); Lit.render( html`<style>${interactionBreakdownStyles}</style> <ul class="breakdown"> <li data-entry="input-delay">${i18nString(UIStrings.inputDelay)}<span class="value">${ inputDelay}</span></li> <li data-entry="processing-duration">${ i18nString(UIStrings.processingDuration)}<span class="value">${mainThreadTime}</span></li> <li data-entry="presentation-delay">${ i18nString(UIStrings.presentationDelay)}<span class="value">${presentationDelay}</span></li> </ul> `, this.#shadow, {host: this}); } } customElements.define('devtools-interaction-breakdown', InteractionBreakdown); declare global { interface HTMLElementTagNameMap { 'devtools-interaction-breakdown': InteractionBreakdown; } }