chrome-devtools-frontend
Version:
Chrome DevTools UI
504 lines (443 loc) • 18.9 kB
text/typescript
// Copyright 2024 The Chromium Authors
// 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 * as Platform from '../../../core/platform/platform.js';
import * as AIAssistance from '../../../models/ai_assistance/ai_assistance.js';
import * as CrUXManager from '../../../models/crux-manager/crux-manager.js';
import * as Trace from '../../../models/trace/trace.js';
import * as Buttons from '../../../ui/components/buttons/buttons.js';
import * as ComponentHelpers from '../../../ui/components/helpers/helpers.js';
import * as Lit from '../../../ui/lit/lit.js';
import * as VisualLogging from '../../../ui/visual_logging/visual_logging.js';
import type {BaseInsightComponent} from './insights/BaseInsightComponent.js';
import {md, shouldRenderForCategory} from './insights/Helpers.js';
import * as Insights from './insights/insights.js';
import type {ActiveInsight} from './Sidebar.js';
import sidebarSingleInsightSetStyles from './sidebarSingleInsightSet.css.js';
import {determineCompareRating, NumberWithUnit} from './Utils.js';
const {html} = Lit.StaticHtml;
const UIStrings = {
/**
* @description title used for a metric value to tell the user about its score classification
* @example {INP} PH1
* @example {1.2s} PH2
* @example {poor} PH3
*/
metricScore: '{PH1}: {PH2} {PH3} score',
/**
* @description title used for a metric value to tell the user that the data is unavailable
* @example {INP} PH1
*/
metricScoreUnavailable: '{PH1}: unavailable',
/**
* @description Summary text for an expandable dropdown that contains all insights in a passing state.
* @example {4} PH1
*/
passedInsights: 'Passed insights ({PH1})',
/**
* @description Label denoting that metrics were observed in the field, from real use data (CrUX). Also denotes if from URL or Origin dataset.
* @example {URL} PH1
*/
fieldScoreLabel: 'Field ({PH1})',
/**
* @description Label for an option that selects the page's specific URL as opposed to it's entire origin/domain.
*/
urlOption: 'URL',
/**
* @description Label for an option that selects the page's entire origin/domain as opposed to it's specific URL.
*/
originOption: 'Origin',
/**
* @description Title for button that closes a warning popup.
*/
dismissTitle: 'Dismiss',
/**
* @description Title shown in a warning dialog when field metrics (collected from real users) is worse than the locally observed metrics.
*/
fieldMismatchTitle: 'Field & local metrics mismatch',
/**
* @description Text shown in a warning dialog when field metrics (collected from real users) is worse than the locally observed metrics.
* Asks user to use features such as throttling and device emulation.
*/
fieldMismatchNotice:
'There are many reasons why local and field metrics [may not match](https://web.dev/articles/lab-and-field-data-differences). ' +
'Adjust [throttling settings and device emulation](https://developer.chrome.com/docs/devtools/device-mode) to analyze traces more similar to the average user\'s environment.',
} as const;
const str_ = i18n.i18n.registerUIStrings('panels/timeline/components/SidebarSingleInsightSet.ts', UIStrings);
const i18nString = i18n.i18n.getLocalizedString.bind(undefined, str_);
export interface SidebarSingleInsightSetData {
insightSetKey: Trace.Types.Events.NavigationId|null;
activeCategory: Trace.Insights.Types.InsightCategory;
activeInsight: ActiveInsight|null;
parsedTrace: Trace.TraceModel.ParsedTrace|null;
}
type InsightNameToComponentMapping =
Record<string, typeof Insights.BaseInsightComponent.BaseInsightComponent<Trace.Insights.Types.InsightModel>>;
interface CategorizedInsightData {
componentClass: typeof Insights.BaseInsightComponent.BaseInsightComponent<Trace.Insights.Types.InsightModel>;
model: Trace.Insights.Types.InsightModel;
}
/**
* Every insight (INCLUDING experimental ones).
*
* Order does not matter (but keep alphabetized).
*/
const INSIGHT_NAME_TO_COMPONENT: InsightNameToComponentMapping = {
Cache: Insights.Cache.Cache,
CLSCulprits: Insights.CLSCulprits.CLSCulprits,
DocumentLatency: Insights.DocumentLatency.DocumentLatency,
DOMSize: Insights.DOMSize.DOMSize,
DuplicatedJavaScript: Insights.DuplicatedJavaScript.DuplicatedJavaScript,
FontDisplay: Insights.FontDisplay.FontDisplay,
ForcedReflow: Insights.ForcedReflow.ForcedReflow,
ImageDelivery: Insights.ImageDelivery.ImageDelivery,
INPBreakdown: Insights.INPBreakdown.INPBreakdown,
LCPDiscovery: Insights.LCPDiscovery.LCPDiscovery,
LCPBreakdown: Insights.LCPBreakdown.LCPBreakdown,
LegacyJavaScript: Insights.LegacyJavaScript.LegacyJavaScript,
ModernHTTP: Insights.ModernHTTP.ModernHTTP,
NetworkDependencyTree: Insights.NetworkDependencyTree.NetworkDependencyTree,
RenderBlocking: Insights.RenderBlocking.RenderBlocking,
SlowCSSSelector: Insights.SlowCSSSelector.SlowCSSSelector,
ThirdParties: Insights.ThirdParties.ThirdParties,
Viewport: Insights.Viewport.Viewport,
};
export class SidebarSingleInsightSet extends HTMLElement {
readonly #shadow = this.attachShadow({mode: 'open'});
#activeInsightElement: BaseInsightComponent<Trace.Insights.Types.InsightModel>|null = null;
#data: SidebarSingleInsightSetData = {
insightSetKey: null,
activeCategory: Trace.Insights.Types.InsightCategory.ALL,
activeInsight: null,
parsedTrace: null,
};
#dismissedFieldMismatchNotice = false;
#activeHighlightTimeout = -1;
set data(data: SidebarSingleInsightSetData) {
this.#data = data;
void ComponentHelpers.ScheduledRender.scheduleRender(this, this.#render);
}
connectedCallback(): void {
this.#render();
}
disconnectedCallback(): void {
window.clearTimeout(this.#activeHighlightTimeout);
}
highlightActiveInsight(): void {
if (!this.#activeInsightElement) {
return;
}
// First clear any existing highlight that is going on.
this.#activeInsightElement.removeAttribute('highlight-insight');
window.clearTimeout(this.#activeHighlightTimeout);
requestAnimationFrame(() => {
this.#activeInsightElement?.setAttribute('highlight-insight', 'true');
this.#activeHighlightTimeout = window.setTimeout(() => {
this.#activeInsightElement?.removeAttribute('highlight-insight');
}, 2_000);
});
}
#metricIsVisible(label: 'LCP'|'CLS'|'INP'): boolean {
if (this.#data.activeCategory === Trace.Insights.Types.InsightCategory.ALL) {
return true;
}
return label === this.#data.activeCategory;
}
#onClickMetric(traceEvent: Trace.Types.Events.Event): void {
this.dispatchEvent(new Insights.EventRef.EventReferenceClick(traceEvent));
}
#renderMetricValue(metric: 'LCP'|'CLS'|'INP', value: number|null, relevantEvent: Trace.Types.Events.Event|null):
Lit.LitTemplate {
let valueText: string;
let valueDisplay: HTMLElement|string;
let classification;
if (value === null) {
valueText = valueDisplay = '-';
classification = Trace.Handlers.ModelHandlers.PageLoadMetrics.ScoreClassification.UNCLASSIFIED;
} else if (metric === 'LCP') {
const micros = value as Trace.Types.Timing.Micro;
const {text, element} = NumberWithUnit.formatMicroSecondsAsSeconds(micros);
valueText = text;
valueDisplay = element;
classification =
Trace.Handlers.ModelHandlers.PageLoadMetrics.scoreClassificationForLargestContentfulPaint(micros);
} else if (metric === 'CLS') {
valueText = valueDisplay = value ? value.toFixed(2) : '0';
classification = Trace.Handlers.ModelHandlers.LayoutShifts.scoreClassificationForLayoutShift(value);
} else if (metric === 'INP') {
const micros = value as Trace.Types.Timing.Micro;
const {text, element} = NumberWithUnit.formatMicroSecondsAsMillisFixed(micros);
valueText = text;
valueDisplay = element;
classification =
Trace.Handlers.ModelHandlers.UserInteractions.scoreClassificationForInteractionToNextPaint(micros);
} else {
Platform.TypeScriptUtilities.assertNever(metric, `Unexpected metric ${metric}`);
}
// NOTE: it is deliberate to use the same value for the title and
// aria-label; the aria-label is used to give more context to
// screen-readers, and the title is to aid users who may not know what
// the red/orange/green classification is, or those who are unable to
// easily distinguish the visual colour differences.
// clang-format off
const title = value !== null ?
i18nString(UIStrings.metricScore, {PH1: metric, PH2: valueText, PH3: classification}) :
i18nString(UIStrings.metricScoreUnavailable, {PH1: metric});
return this.#metricIsVisible(metric) ? html`
<button class="metric"
@click=${relevantEvent ? this.#onClickMetric.bind(this, relevantEvent) : null}
title=${title}
aria-label=${title}
>
<div class="metric-value metric-value-${classification}">${valueDisplay}</div>
</button>
` : Lit.nothing;
// clang-format on
}
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
#getLocalMetrics(insightSetKey: string) {
if (!this.#data.parsedTrace) {
return {};
}
const insightSet = this.#data.parsedTrace.insights?.get(insightSetKey);
if (!insightSet) {
return {};
}
const lcp = Trace.Insights.Common.getLCP(insightSet);
const cls = Trace.Insights.Common.getCLS(insightSet);
const inp = Trace.Insights.Common.getINP(insightSet);
return {lcp, cls, inp};
}
#getFieldMetrics(insightSetKey: string): Trace.Insights.Common.CrUXFieldMetricResults|null {
if (!this.#data.parsedTrace) {
return null;
}
const insightSet = this.#data.parsedTrace.insights?.get(insightSetKey);
if (!insightSet) {
return null;
}
const fieldMetricsResults = Trace.Insights.Common.getFieldMetricsForInsightSet(
insightSet, this.#data.parsedTrace.metadata, CrUXManager.CrUXManager.instance().getSelectedScope());
if (!fieldMetricsResults) {
return null;
}
return fieldMetricsResults;
}
/**
* Returns true if LCP or INP are worse in the field than what was observed locally.
*
* CLS is ignored because the guidance of applying throttling or device emulation doesn't
* correlate as much with observing a more average user experience.
*/
#isFieldWorseThanLocal(local: {lcp?: Trace.Types.Timing.Milli, inp?: Trace.Types.Timing.Milli}, field: {
lcp?: Trace.Types.Timing.Milli,
inp?: Trace.Types.Timing.Milli,
}): boolean {
if (local.lcp !== undefined && field.lcp !== undefined) {
if (determineCompareRating('LCP', local.lcp, field.lcp) === 'better') {
return true;
}
}
if (local.inp !== undefined && field.inp !== undefined) {
if (determineCompareRating('LCP', local.inp, field.inp) === 'better') {
return true;
}
}
return false;
}
#dismissFieldMismatchNotice(): void {
this.#dismissedFieldMismatchNotice = true;
this.#render();
}
#renderMetrics(insightSetKey: string): Lit.TemplateResult {
const local = this.#getLocalMetrics(insightSetKey);
const field = this.#getFieldMetrics(insightSetKey);
const lcpEl = this.#renderMetricValue('LCP', local.lcp?.value ?? null, local.lcp?.event ?? null);
const inpEl = this.#renderMetricValue('INP', local.inp?.value ?? null, local.inp?.event ?? null);
const clsEl = this.#renderMetricValue('CLS', local.cls?.value ?? null, local.cls?.worstClusterEvent ?? null);
const localMetricsTemplateResult = html`
<div class="metrics-row">
<span>${lcpEl}</span>
<span>${inpEl}</span>
<span>${clsEl}</span>
<span class="row-label">Local</span>
</div>
<span class="row-border"></span>
`;
let fieldMetricsTemplateResult;
if (field) {
const {lcp, inp, cls} = field;
const lcpEl = this.#renderMetricValue('LCP', lcp?.value ?? null, null);
const inpEl = this.#renderMetricValue('INP', inp?.value ?? null, null);
const clsEl = this.#renderMetricValue('CLS', cls?.value ?? null, null);
let scope = i18nString(UIStrings.originOption);
if (lcp?.pageScope === 'url' || inp?.pageScope === 'url') {
scope = i18nString(UIStrings.urlOption);
}
// clang-format off
fieldMetricsTemplateResult = html`
<div class="metrics-row">
<span>${lcpEl}</span>
<span>${inpEl}</span>
<span>${clsEl}</span>
<span class="row-label">${i18nString(UIStrings.fieldScoreLabel, {PH1: scope})}</span>
</div>
<span class="row-border"></span>
`;
// clang-format on
}
const localValues = {
lcp: local.lcp?.value !== undefined ? Trace.Helpers.Timing.microToMilli(local.lcp.value) : undefined,
inp: local.inp?.value !== undefined ? Trace.Helpers.Timing.microToMilli(local.inp.value) : undefined,
};
const fieldValues = field && {
lcp: field.lcp?.value !== undefined ? Trace.Helpers.Timing.microToMilli(field.lcp.value) : undefined,
inp: field.inp?.value !== undefined ? Trace.Helpers.Timing.microToMilli(field.inp.value) : undefined,
};
let fieldIsDifferentEl;
if (!this.#dismissedFieldMismatchNotice && fieldValues && this.#isFieldWorseThanLocal(localValues, fieldValues)) {
// clang-format off
fieldIsDifferentEl = html`
<div class="field-mismatch-notice" jslog=${VisualLogging.section('timeline.insights.field-mismatch')}>
<h3>${i18nString(UIStrings.fieldMismatchTitle)}</h3>
<devtools-button
title=${i18nString(UIStrings.dismissTitle)}
.iconName=${'cross'}
.variant=${Buttons.Button.Variant.ICON}
.jslogContext=${'timeline.insights.dismiss-field-mismatch'}
@click=${this.#dismissFieldMismatchNotice}
></devtools-button>
<div class="field-mismatch-notice__body">${md(i18nString(UIStrings.fieldMismatchNotice))}</div>
</div>
`;
// clang-format on
}
const classes = {metrics: true, 'metrics--field': Boolean(fieldMetricsTemplateResult)};
const metricsTableEl = html`<div class=${Lit.Directives.classMap(classes)}>
<div class="metrics-row">
<span class="metric-label">LCP</span>
<span class="metric-label">INP</span>
<span class="metric-label">CLS</span>
<span class="row-label"></span>
</div>
${localMetricsTemplateResult}
${fieldMetricsTemplateResult}
</div>`;
return html`
${metricsTableEl}
${fieldIsDifferentEl}
`;
}
static categorizeInsights(
insightSets: Trace.Insights.Types.TraceInsightSets|null,
insightSetKey: string,
activeCategory: Trace.Insights.Types.InsightCategory,
): {shownInsights: CategorizedInsightData[], passedInsights: CategorizedInsightData[]} {
const insightSet = insightSets?.get(insightSetKey);
if (!insightSet) {
return {shownInsights: [], passedInsights: []};
}
const shownInsights: CategorizedInsightData[] = [];
const passedInsights: CategorizedInsightData[] = [];
for (const [name, model] of Object.entries(insightSet.model)) {
const componentClass = INSIGHT_NAME_TO_COMPONENT[name as keyof Trace.Insights.Types.InsightModels];
if (!componentClass) {
continue;
}
if (!model || !shouldRenderForCategory({activeCategory, insightCategory: model.category})) {
continue;
}
if (model instanceof Error) {
continue;
}
if (model.state === 'pass') {
passedInsights.push({componentClass, model});
} else {
shownInsights.push({componentClass, model});
}
}
return {shownInsights, passedInsights};
}
#renderInsights(
insights: Trace.Insights.Types.TraceInsightSets|null,
insightSetKey: string,
): Lit.LitTemplate {
const insightSet = insights?.get(insightSetKey);
if (!insightSet) {
return Lit.nothing;
}
const fieldMetrics = this.#getFieldMetrics(insightSetKey);
const {shownInsights: shownInsightsData, passedInsights: passedInsightsData} =
SidebarSingleInsightSet.categorizeInsights(
insights,
insightSetKey,
this.#data.activeCategory,
);
const renderInsightComponent = (insightData: CategorizedInsightData): Lit.TemplateResult => {
const {componentClass, model} = insightData;
if (!this.#data.parsedTrace?.insights) {
return html``;
}
const agentFocus = AIAssistance.AgentFocus.fromInsight(this.#data.parsedTrace, model);
// clang-format off
return html`<div>
<${componentClass.litTagName}
.selected=${this.#data.activeInsight?.model === model}
${Lit.Directives.ref(elem => {
if(this.#data.activeInsight?.model === model && elem) {
this.#activeInsightElement = elem as BaseInsightComponent<Trace.Insights.Types.InsightModel>;
}
})}
.model=${model}
.bounds=${insightSet.bounds}
.insightSetKey=${insightSetKey}
.agentFocus=${agentFocus}
.fieldMetrics=${fieldMetrics}>
</${componentClass.litTagName}>
</div>`;
// clang-format on
};
const shownInsights = shownInsightsData.map(renderInsightComponent);
const passedInsights = passedInsightsData.map(renderInsightComponent);
// clang-format off
return html`
${shownInsights}
${passedInsights.length ? html`
<details class="passed-insights-section">
<summary>${i18nString(UIStrings.passedInsights, {
PH1: passedInsights.length,
})}</summary>
${passedInsights}
</details>
` : Lit.nothing}
`;
// clang-format on
}
#render(): void {
const {
parsedTrace,
insightSetKey,
} = this.#data;
if (!parsedTrace?.insights || !insightSetKey) {
Lit.render(Lit.nothing, this.#shadow, {host: this});
return;
}
// clang-format off
Lit.render(html`
<style>${sidebarSingleInsightSetStyles}</style>
<div class="navigation">
${this.#renderMetrics(insightSetKey)}
${this.#renderInsights(parsedTrace.insights, insightSetKey)}
</div>
`, this.#shadow, {host: this});
// clang-format on
}
}
declare global {
interface HTMLElementTagNameMap {
'devtools-performance-sidebar-single-navigation': SidebarSingleInsightSet;
}
}
customElements.define('devtools-performance-sidebar-single-navigation', SidebarSingleInsightSet);