UNPKG

chrome-devtools-frontend

Version:
47 lines (39 loc) 1.81 kB
// Copyright 2021 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 * as Host from '../../core/host/host.js'; import * as i18n from '../../core/i18n/i18n.js'; import type * as Platform from '../../core/platform/platform.js'; import * as IconButton from '../../ui/components/icon_button/icon_button.js'; import {ApplicationPanelTreeElement} from './ApplicationPanelTreeElement.js'; import * as ApplicationComponents from './components/components.js'; import {ReportingApiView} from './ReportingApiView.js'; import type {ResourcesPanel} from './ResourcesPanel.js'; const UIStrings = { /** *@description Label for an item in the Application Panel Sidebar of the Application panel */ reportingApi: 'Reporting API', } as const; const str_ = i18n.i18n.registerUIStrings('panels/application/ReportingApiTreeElement.ts', UIStrings); export const i18nString = i18n.i18n.getLocalizedString.bind(undefined, str_); export class ReportingApiTreeElement extends ApplicationPanelTreeElement { private view?: ReportingApiView; constructor(storagePanel: ResourcesPanel) { super(storagePanel, i18nString(UIStrings.reportingApi), false, 'reporting-api'); const icon = IconButton.Icon.create('document'); this.setLeadingIcons([icon]); } override get itemURL(): Platform.DevToolsPath.UrlString { return 'reportingApi://' as Platform.DevToolsPath.UrlString; } override onselect(selectedByUser?: boolean): boolean { super.onselect(selectedByUser); if (!this.view) { this.view = new ReportingApiView(new ApplicationComponents.EndpointsGrid.EndpointsGrid()); } this.showView(this.view); Host.userMetrics.panelShown('reporting-api'); return false; } }