chrome-devtools-frontend
Version:
Chrome DevTools UI
715 lines (618 loc) • 26.3 kB
text/typescript
// Copyright 2020 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-imperative-dom-api */
/*
* Copyright (C) 2008 Apple Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
import '../../ui/legacy/legacy.js';
import * as Common from '../../core/common/common.js';
import * as i18n from '../../core/i18n/i18n.js';
import * as Platform from '../../core/platform/platform.js';
import * as SDK from '../../core/sdk/sdk.js';
import * as IconButton from '../../ui/components/icon_button/icon_button.js';
// eslint-disable-next-line rulesdir/es-modules-import
import objectValueStyles from '../../ui/legacy/components/object_ui/objectValue.css.js';
import * as UI from '../../ui/legacy/legacy.js';
import * as VisualLogging from '../../ui/visual_logging/visual_logging.js';
import heapProfilerStyles from './heapProfiler.css.js';
import {
type DataDisplayDelegate,
ProfileEvents as ProfileTypeEvents,
ProfileHeader,
type ProfileType,
} from './ProfileHeader.js';
import {Events as ProfileLauncherEvents, ProfileLauncherView} from './ProfileLauncherView.js';
import {ProfileSidebarTreeElement} from './ProfileSidebarTreeElement.js';
import profilesPanelStyles from './profilesPanel.css.js';
import profilesSidebarTreeStyles from './profilesSidebarTree.css.js';
const UIStrings = {
/**
*@description Text in Profiles Panel of a profiler tool
*@example {'.js', '.json'} PH1
*/
cantLoadFileSupportedFile: 'Can’t load file. Supported file extensions: \'\'{PH1}\'\'.',
/**
*@description Text in Profiles Panel of a profiler tool
*/
cantLoadProfileWhileAnother: 'Can’t load profile while another profile is being recorded.',
/**
*@description Text in Profiles Panel of a profiler tool
*/
profileLoadingFailed: 'Profile loading failed',
/**
*@description Text in Profiles Panel of a profiler tool
*@example {cannot open file} PH1
*/
failReason: 'Reason: {PH1}.',
/**
*@description Text in Profiles Panel of a profiler tool
*@example {2} PH1
*/
runD: 'Run {PH1}',
/**
*@description Text in Profiles Panel of a profiler tool
*/
profiles: 'Profiles',
} as const;
const str_ = i18n.i18n.registerUIStrings('panels/profiler/ProfilesPanel.ts', UIStrings);
const i18nString = i18n.i18n.getLocalizedString.bind(undefined, str_);
export class ProfilesPanel extends UI.Panel.PanelWithSidebar implements DataDisplayDelegate {
readonly profileTypes: ProfileType[];
profilesItemTreeElement: ProfilesSidebarTreeElement;
sidebarTree: UI.TreeOutline.TreeOutlineInShadow;
profileViews: HTMLDivElement;
readonly toolbarElement: HTMLDivElement;
toggleRecordAction: UI.ActionRegistration.Action;
readonly toggleRecordButton: UI.Toolbar.ToolbarButton;
readonly #saveToFileAction: UI.ActionRegistration.Action;
readonly profileViewToolbar: UI.Toolbar.Toolbar;
profileGroups: Record<string, ProfileGroup>;
launcherView: ProfileLauncherView;
visibleView!: UI.Widget.Widget|undefined;
readonly profileToView: Array<{
profile: ProfileHeader,
view: UI.Widget.Widget,
}>;
typeIdToSidebarSection: Record<string, ProfileTypeSidebarSection>;
fileSelectorElement!: HTMLInputElement;
selectedProfileType?: ProfileType;
constructor(name: string, profileTypes: ProfileType[], recordingActionId: string) {
super(name);
this.profileTypes = profileTypes;
this.registerRequiredCSS(objectValueStyles, profilesPanelStyles, heapProfilerStyles);
const mainContainer = new UI.Widget.VBox();
this.splitWidget().setMainWidget(mainContainer);
this.profilesItemTreeElement = new ProfilesSidebarTreeElement(this);
this.sidebarTree = new UI.TreeOutline.TreeOutlineInShadow();
this.sidebarTree.registerRequiredCSS(profilesSidebarTreeStyles);
this.sidebarTree.element.classList.add('profiles-sidebar-tree-box');
this.panelSidebarElement().appendChild(this.sidebarTree.element);
this.sidebarTree.appendChild(this.profilesItemTreeElement);
this.sidebarTree.element.addEventListener('keydown', this.onKeyDown.bind(this), false);
this.profileViews = document.createElement('div');
this.profileViews.id = 'profile-views';
this.profileViews.classList.add('vbox');
mainContainer.element.appendChild(this.profileViews);
this.toolbarElement = document.createElement('div');
this.toolbarElement.classList.add('profiles-toolbar');
mainContainer.element.insertBefore(this.toolbarElement, mainContainer.element.firstChild);
this.panelSidebarElement().classList.add('profiles-tree-sidebar');
const toolbarContainerLeft = document.createElement('div');
toolbarContainerLeft.classList.add('profiles-toolbar');
toolbarContainerLeft.setAttribute('jslog', `${VisualLogging.toolbar('profiles-sidebar')}`);
this.panelSidebarElement().insertBefore(toolbarContainerLeft, this.panelSidebarElement().firstChild);
const toolbar = toolbarContainerLeft.createChild('devtools-toolbar');
toolbar.wrappable = true;
this.toggleRecordAction = UI.ActionRegistry.ActionRegistry.instance().getAction(recordingActionId);
this.toggleRecordButton = UI.Toolbar.Toolbar.createActionButton(this.toggleRecordAction);
toolbar.appendToolbarItem(this.toggleRecordButton);
toolbar.appendToolbarItem(UI.Toolbar.Toolbar.createActionButton('profiler.clear-all'));
toolbar.appendSeparator();
toolbar.appendToolbarItem(UI.Toolbar.Toolbar.createActionButton('profiler.load-from-file'));
this.#saveToFileAction = UI.ActionRegistry.ActionRegistry.instance().getAction('profiler.save-to-file');
this.#saveToFileAction.setEnabled(false);
toolbar.appendToolbarItem(UI.Toolbar.Toolbar.createActionButton(this.#saveToFileAction));
toolbar.appendSeparator();
toolbar.appendToolbarItem(UI.Toolbar.Toolbar.createActionButton('components.collect-garbage'));
this.profileViewToolbar = this.toolbarElement.createChild('devtools-toolbar');
this.profileViewToolbar.wrappable = true;
this.profileViewToolbar.setAttribute('jslog', `${VisualLogging.toolbar('profile-view')}`);
this.profileGroups = {};
this.launcherView = new ProfileLauncherView(this);
this.launcherView.addEventListener(ProfileLauncherEvents.PROFILE_TYPE_SELECTED, this.onProfileTypeSelected, this);
this.profileToView = [];
this.typeIdToSidebarSection = {};
const types = this.profileTypes;
for (let i = 0; i < types.length; i++) {
this.registerProfileType(types[i]);
}
this.launcherView.restoreSelectedProfileType();
this.profilesItemTreeElement.select();
this.showLauncherView();
this.createFileSelectorElement();
SDK.TargetManager.TargetManager.instance().addEventListener(
SDK.TargetManager.Events.SUSPEND_STATE_CHANGED, this.onSuspendStateChanged, this);
UI.Context.Context.instance().addFlavorChangeListener(
SDK.CPUProfilerModel.CPUProfilerModel, this.updateProfileTypeSpecificUI, this);
UI.Context.Context.instance().addFlavorChangeListener(
SDK.HeapProfilerModel.HeapProfilerModel, this.updateProfileTypeSpecificUI, this);
}
onKeyDown(event: KeyboardEvent): void {
let handled = false;
if (event.key === 'ArrowDown' && !event.altKey) {
handled = this.sidebarTree.selectNext();
} else if (event.key === 'ArrowUp' && !event.altKey) {
handled = this.sidebarTree.selectPrevious();
}
if (handled) {
event.consume(true);
}
}
override searchableView(): UI.SearchableView.SearchableView|null {
// TODO(crbug.com/1172300) Ignored during the jsdoc to ts migration)
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const visibleView = (this.visibleView as any);
return visibleView?.searchableView ? visibleView.searchableView() : null;
}
createFileSelectorElement(): void {
if (this.fileSelectorElement) {
this.element.removeChild(this.fileSelectorElement);
}
this.fileSelectorElement = UI.UIUtils.createFileSelectorElement(this.loadFromFile.bind(this));
this.element.appendChild(this.fileSelectorElement);
}
findProfileTypeByExtension(fileName: string): ProfileType|null {
return this.profileTypes.find(
type => Boolean(type.fileExtension()) && fileName.endsWith(type.fileExtension() || '')) ||
null;
}
async loadFromFile(file: File): Promise<void> {
this.createFileSelectorElement();
const profileType = this.findProfileTypeByExtension(file.name);
if (!profileType) {
const extensions = new Set(this.profileTypes.map(type => type.fileExtension()).filter(ext => ext));
Common.Console.Console.instance().error(
i18nString(UIStrings.cantLoadFileSupportedFile, {PH1: Array.from(extensions).join('\', \'')}));
return;
}
if (Boolean(profileType.profileBeingRecorded())) {
Common.Console.Console.instance().error(i18nString(UIStrings.cantLoadProfileWhileAnother));
return;
}
const error = await profileType.loadFromFile(file);
if (error && 'message' in error) {
void UI.UIUtils.MessageDialog.show(
i18nString(UIStrings.profileLoadingFailed), i18nString(UIStrings.failReason, {PH1: error.message}), undefined,
'profile-loading-failed');
}
}
toggleRecord(): boolean {
if (!this.toggleRecordAction.enabled()) {
return true;
}
const toggleButton = Platform.DOMUtilities.deepActiveElement(this.element.ownerDocument);
const type = this.selectedProfileType;
if (!type) {
return true;
}
const isProfiling = type.buttonClicked();
this.updateToggleRecordAction(isProfiling);
if (isProfiling) {
this.launcherView.profileStarted();
if (type.hasTemporaryView()) {
this.showProfile(type.profileBeingRecorded());
}
} else {
this.launcherView.profileFinished();
}
if (toggleButton) {
(toggleButton as HTMLElement).focus();
}
return true;
}
onSuspendStateChanged(): void {
this.updateToggleRecordAction(this.toggleRecordAction.toggled());
}
updateToggleRecordAction(toggled: boolean): void {
const hasSelectedTarget = Boolean(
UI.Context.Context.instance().flavor(SDK.CPUProfilerModel.CPUProfilerModel) ||
UI.Context.Context.instance().flavor(SDK.HeapProfilerModel.HeapProfilerModel));
const enable = toggled || (!SDK.TargetManager.TargetManager.instance().allTargetsSuspended() && hasSelectedTarget);
this.toggleRecordAction.setEnabled(enable);
this.toggleRecordAction.setToggled(toggled);
if (enable) {
this.toggleRecordButton.setTitle(this.selectedProfileType ? this.selectedProfileType.buttonTooltip : '');
} else {
this.toggleRecordButton.setTitle(UI.UIUtils.anotherProfilerActiveLabel());
}
if (this.selectedProfileType) {
this.launcherView.updateProfileType(this.selectedProfileType, enable);
}
}
profileBeingRecordedRemoved(): void {
this.updateToggleRecordAction(false);
this.launcherView.profileFinished();
}
onProfileTypeSelected(event: Common.EventTarget.EventTargetEvent<ProfileType>): void {
this.selectedProfileType = event.data;
this.updateProfileTypeSpecificUI();
}
updateProfileTypeSpecificUI(): void {
if (this.selectedProfileType?.isInstantProfile()) {
this.toggleRecordButton.toggleOnClick(false);
}
this.updateToggleRecordAction(this.toggleRecordAction.toggled());
}
reset(): void {
this.profileTypes.forEach(type => type.reset());
delete this.visibleView;
this.profileGroups = {};
this.updateToggleRecordAction(false);
this.launcherView.profileFinished();
this.sidebarTree.element.classList.remove('some-expandable');
this.launcherView.detach();
this.profileViews.removeChildren();
this.profileViewToolbar.removeToolbarItems();
this.profilesItemTreeElement.select();
this.showLauncherView();
}
showLauncherView(): void {
this.closeVisibleView();
this.profileViewToolbar.removeToolbarItems();
this.launcherView.show(this.profileViews);
this.visibleView = this.launcherView;
this.toolbarElement.classList.add('hidden');
this.#saveToFileAction.setEnabled(false);
}
registerProfileType(profileType: ProfileType): void {
this.launcherView.addProfileType(profileType);
const profileTypeSection = new ProfileTypeSidebarSection(this, profileType);
this.typeIdToSidebarSection[profileType.id] = profileTypeSection;
this.sidebarTree.appendChild(profileTypeSection);
function onAddProfileHeader(this: ProfilesPanel, event: Common.EventTarget.EventTargetEvent<ProfileHeader>): void {
this.addProfileHeader(event.data);
}
function onRemoveProfileHeader(
this: ProfilesPanel, event: Common.EventTarget.EventTargetEvent<ProfileHeader>): void {
this.removeProfileHeader(event.data);
}
function profileComplete(this: ProfilesPanel, event: Common.EventTarget.EventTargetEvent<ProfileHeader>): void {
this.showProfile(event.data);
}
profileType.addEventListener(ProfileTypeEvents.VIEW_UPDATED, this.updateProfileTypeSpecificUI, this);
profileType.addEventListener(ProfileTypeEvents.ADD_PROFILE_HEADER, onAddProfileHeader, this);
profileType.addEventListener(ProfileTypeEvents.REMOVE_PROFILE_HEADER, onRemoveProfileHeader, this);
profileType.addEventListener(ProfileTypeEvents.PROFILE_COMPLETE, profileComplete, this);
const profiles = profileType.getProfiles();
for (let i = 0; i < profiles.length; i++) {
this.addProfileHeader(profiles[i]);
}
}
showLoadFromFileDialog(): void {
this.fileSelectorElement.click();
}
addProfileHeader(profile: ProfileHeader): void {
const profileType = profile.profileType();
const typeId = profileType.id;
this.typeIdToSidebarSection[typeId].addProfileHeader(profile);
if (!this.visibleView || this.visibleView === this.launcherView) {
this.showProfile(profile);
}
}
removeProfileHeader(profile: ProfileHeader): void {
if (profile.profileType().profileBeingRecorded() === profile) {
this.profileBeingRecordedRemoved();
}
const i = this.indexOfViewForProfile(profile);
if (i !== -1) {
this.profileToView.splice(i, 1);
}
const typeId = profile.profileType().id;
const sectionIsEmpty = this.typeIdToSidebarSection[typeId].removeProfileHeader(profile);
// No other item will be selected if there aren't any other profiles, so
// make sure that view gets cleared when the last profile is removed.
if (sectionIsEmpty) {
this.profilesItemTreeElement.select();
this.showLauncherView();
}
}
showProfile(profile: ProfileHeader|null): UI.Widget.Widget|null {
if (!profile ||
(profile.profileType().profileBeingRecorded() === profile) && !profile.profileType().hasTemporaryView()) {
return null;
}
const view = this.viewForProfile(profile);
if (view === this.visibleView) {
return view;
}
this.closeVisibleView();
UI.Context.Context.instance().setFlavor(ProfileHeader, profile);
this.#saveToFileAction.setEnabled(profile.canSaveToFile());
view.show(this.profileViews);
this.toolbarElement.classList.remove('hidden');
this.visibleView = view;
const profileTypeSection = this.typeIdToSidebarSection[profile.profileType().id];
const sidebarElement = profileTypeSection.sidebarElementForProfile(profile);
if (sidebarElement) {
sidebarElement.revealAndSelect();
}
this.profileViewToolbar.removeToolbarItems();
void (view as unknown as UI.View.View).toolbarItems().then(items => {
items.map(item => this.profileViewToolbar.appendToolbarItem(item));
});
return view;
}
showObject(_snapshotObjectId: string, _perspectiveName: string): void {
}
async linkifyObject(_nodeIndex: number): Promise<Element|null> {
return null;
}
viewForProfile(profile: ProfileHeader): UI.Widget.Widget {
const index = this.indexOfViewForProfile(profile);
if (index !== -1) {
return this.profileToView[index].view;
}
const view = profile.createView(this);
view.element.classList.add('profile-view');
this.profileToView.push({profile, view});
return view;
}
indexOfViewForProfile(profile: ProfileHeader): number {
return this.profileToView.findIndex(item => item.profile === profile);
}
closeVisibleView(): void {
UI.Context.Context.instance().setFlavor(ProfileHeader, null);
this.#saveToFileAction.setEnabled(false);
if (this.visibleView) {
this.visibleView.detach();
}
delete this.visibleView;
}
override focus(): void {
this.sidebarTree.focus();
}
override wasShown(): void {
super.wasShown();
UI.Context.Context.instance().setFlavor(ProfilesPanel, this);
}
override willHide(): void {
UI.Context.Context.instance().setFlavor(ProfilesPanel, null);
super.willHide();
}
}
export class ProfileTypeSidebarSection extends UI.TreeOutline.TreeElement {
dataDisplayDelegate: DataDisplayDelegate;
readonly profileTreeElements: ProfileSidebarTreeElement[];
profileGroups: Record<string, ProfileGroup>;
constructor(dataDisplayDelegate: DataDisplayDelegate, profileType: ProfileType) {
super(profileType.treeItemTitle, true);
this.selectable = false;
this.dataDisplayDelegate = dataDisplayDelegate;
this.profileTreeElements = [];
this.profileGroups = {};
this.expand();
this.hidden = true;
this.setCollapsible(false);
}
addProfileHeader(profile: ProfileHeader): void {
this.hidden = false;
const profileType = profile.profileType();
let sidebarParent: (ProfileGroupSidebarTreeElement|null)|this = this;
const profileTreeElement =
(profile.createSidebarTreeElement(this.dataDisplayDelegate) as ProfileSidebarTreeElement);
this.profileTreeElements.push(profileTreeElement);
if (!profile.fromFile() && profileType.profileBeingRecorded() !== profile) {
const profileTitle = profile.title;
let group: ProfileGroup = this.profileGroups[profileTitle];
if (!group) {
group = new ProfileGroup();
this.profileGroups[profileTitle] = group;
}
group.profileSidebarTreeElements.push(profileTreeElement);
const groupSize = group.profileSidebarTreeElements.length;
if (groupSize === 2) {
// Make a group UI.TreeOutline.TreeElement now that there are 2 profiles.
group.sidebarTreeElement = new ProfileGroupSidebarTreeElement(this.dataDisplayDelegate, profile.title);
const firstProfileTreeElement = group.profileSidebarTreeElements[0];
// Insert at the same index for the first profile of the group.
const index = this.children().indexOf(firstProfileTreeElement);
this.insertChild(group.sidebarTreeElement, index);
// Move the first profile to the group.
const selected = firstProfileTreeElement.selected;
this.removeChild(firstProfileTreeElement);
group.sidebarTreeElement.appendChild(firstProfileTreeElement);
if (selected) {
firstProfileTreeElement.revealAndSelect();
}
firstProfileTreeElement.setSmall(true);
firstProfileTreeElement.setMainTitle(i18nString(UIStrings.runD, {PH1: 1}));
if (this.treeOutline) {
this.treeOutline.element.classList.add('some-expandable');
}
}
if (groupSize >= 2) {
sidebarParent = group.sidebarTreeElement;
profileTreeElement.setSmall(true);
profileTreeElement.setMainTitle(i18nString(UIStrings.runD, {PH1: groupSize}));
}
}
if (sidebarParent) {
sidebarParent.appendChild(profileTreeElement);
}
}
removeProfileHeader(profile: ProfileHeader): boolean {
const index = this.sidebarElementIndex(profile);
if (index === -1) {
return false;
}
const profileTreeElement = this.profileTreeElements[index];
this.profileTreeElements.splice(index, 1);
let sidebarParent: (ProfileGroupSidebarTreeElement|null)|this = this;
const group = this.profileGroups[profile.title];
if (group) {
const groupElements = group.profileSidebarTreeElements;
groupElements.splice(groupElements.indexOf(profileTreeElement), 1);
if (groupElements.length === 1) {
// Move the last profile out of its group and remove the group.
const pos = sidebarParent.children().indexOf((group.sidebarTreeElement as ProfileGroupSidebarTreeElement));
if (group.sidebarTreeElement) {
group.sidebarTreeElement.removeChild(groupElements[0]);
}
this.insertChild(groupElements[0], pos);
groupElements[0].setSmall(false);
groupElements[0].setMainTitle(profile.title);
if (group.sidebarTreeElement) {
this.removeChild(group.sidebarTreeElement);
}
}
if (groupElements.length !== 0) {
sidebarParent = group.sidebarTreeElement;
}
}
if (sidebarParent) {
sidebarParent.removeChild(profileTreeElement);
}
profileTreeElement.dispose();
if (this.childCount()) {
return false;
}
this.hidden = true;
return true;
}
sidebarElementForProfile(profile: ProfileHeader): ProfileSidebarTreeElement|null {
const index = this.sidebarElementIndex(profile);
return index === -1 ? null : this.profileTreeElements[index];
}
sidebarElementIndex(profile: ProfileHeader): number {
const elements = this.profileTreeElements;
for (let i = 0; i < elements.length; i++) {
if (elements[i].profile === profile) {
return i;
}
}
return -1;
}
override onattach(): void {
this.listItemElement.classList.add('profiles-tree-section');
}
}
export class ProfileGroup {
profileSidebarTreeElements: ProfileSidebarTreeElement[];
sidebarTreeElement: ProfileGroupSidebarTreeElement|null;
constructor() {
this.profileSidebarTreeElements = [];
this.sidebarTreeElement = null;
}
}
export class ProfileGroupSidebarTreeElement extends UI.TreeOutline.TreeElement {
readonly dataDisplayDelegate: DataDisplayDelegate;
profileTitle: string;
override toggleOnClick: boolean;
constructor(dataDisplayDelegate: DataDisplayDelegate, title: string) {
super('', true);
this.selectable = false;
this.dataDisplayDelegate = dataDisplayDelegate;
this.profileTitle = title;
this.expand();
this.toggleOnClick = true;
}
override onselect(): boolean {
const hasChildren = this.childCount() > 0;
if (hasChildren) {
const lastChild = this.lastChild();
if (lastChild instanceof ProfileSidebarTreeElement) {
this.dataDisplayDelegate.showProfile(lastChild.profile);
}
}
return hasChildren;
}
override onattach(): void {
this.listItemElement.classList.add('profile-group-sidebar-tree-item');
this.listItemElement.createChild('div', 'icon');
this.listItemElement.createChild('div', 'titles no-subtitle')
.createChild('span', 'title-container')
.createChild('span', 'title')
.textContent = this.profileTitle;
}
}
export class ProfilesSidebarTreeElement extends UI.TreeOutline.TreeElement {
readonly panel: ProfilesPanel;
constructor(panel: ProfilesPanel) {
super('', false);
this.selectable = true;
this.panel = panel;
}
override onselect(): boolean {
this.panel.showLauncherView();
return true;
}
override onattach(): void {
this.listItemElement.classList.add('profile-launcher-view-tree-item');
this.listItemElement.createChild('div', 'titles no-subtitle')
.createChild('span', 'title-container')
.createChild('span', 'title')
.textContent = i18nString(UIStrings.profiles);
this.setLeadingIcons([IconButton.Icon.create('tune')]);
}
}
export class ActionDelegate implements UI.ActionRegistration.ActionDelegate {
handleAction(context: UI.Context.Context, actionId: string): boolean {
switch (actionId) {
case 'profiler.clear-all': {
const profilesPanel = context.flavor(ProfilesPanel);
if (profilesPanel !== null) {
profilesPanel.reset();
return true;
}
return false;
}
case 'profiler.load-from-file': {
const profilesPanel = context.flavor(ProfilesPanel);
if (profilesPanel !== null) {
profilesPanel.showLoadFromFileDialog();
return true;
}
return false;
}
case 'profiler.save-to-file': {
const profile = context.flavor(ProfileHeader);
if (profile !== null) {
profile.saveToFile();
return true;
}
return false;
}
case 'profiler.delete-profile': {
const profile = context.flavor(ProfileHeader);
if (profile !== null) {
profile.profileType().removeProfile(profile);
return true;
}
return false;
}
}
return false;
}
}