chrome-devtools-frontend
Version:
Chrome DevTools UI
270 lines (251 loc) ⢠8.95 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.
import * as i18n from '../../core/i18n/i18n.js';
import * as Root from '../../core/root/root.js';
import * as SDK from '../../core/sdk/sdk.js';
import * as UI from '../../ui/legacy/legacy.js';
import type * as Profiler from './profiler.js';
let loadedProfilerModule: (typeof Profiler|undefined);
const UIStrings = {
/**
*@description Title for the profiler tab
*/
memory: 'Memory',
/**
*@description Title of the 'Live Heap Profile' tool in the bottom drawer
*/
liveHeapProfile: 'Live Heap Profile',
/**
*@description Title of an action under the Performance category that can be invoked through the Command Menu
*/
startRecordingHeapAllocations: 'Start recording heap allocations',
/**
*@description Title of an action under the Performance category that can be invoked through the Command Menu
*/
stopRecordingHeapAllocations: 'Stop recording heap allocations',
/**
*@description Title of an action in the live heap profile tool to start with reload
*/
startRecordingHeapAllocationsAndReload: 'Start recording heap allocations and reload the page',
/**
*@description Text in the Shortcuts page to explain a keyboard shortcut (start/stop recording performance)
*/
startStopRecording: 'Start/stop recording',
/**
*@description Command for shwoing the profiler tab
*/
showMemory: 'Show Memory',
/**
*@description Command for showing the 'Live Heap Profile' tool in the bottom drawer
*/
showLiveHeapProfile: 'Show Live Heap Profile',
/**
*@description Tooltip text that appears when hovering over the largeicon clear button in the Profiles Panel of a profiler tool
*/
clearAllProfiles: 'Clear all profiles',
/**
*@description Tooltip text that appears when hovering over the largeicon download button
*/
saveProfile: 'Save profileā¦',
/**
*@description Tooltip text that appears when hovering over the largeicon load button
*/
loadProfile: 'Load profileā¦',
/**
*@description Command for deleting a profile in the Profiler panel
*/
deleteProfile: 'Delete profile',
} as const;
const str_ = i18n.i18n.registerUIStrings('panels/profiler/profiler-meta.ts', UIStrings);
const i18nLazyString = i18n.i18n.getLazilyComputedLocalizedString.bind(undefined, str_);
async function loadProfilerModule(): Promise<typeof Profiler> {
if (!loadedProfilerModule) {
loadedProfilerModule = await import('./profiler.js');
}
return loadedProfilerModule;
}
function maybeRetrieveContextTypes<T = unknown>(getClassCallBack: (profilerModule: typeof Profiler) => T[]): T[] {
if (loadedProfilerModule === undefined) {
return [];
}
return getClassCallBack(loadedProfilerModule);
}
UI.ViewManager.registerViewExtension({
location: UI.ViewManager.ViewLocationValues.PANEL,
id: 'heap-profiler',
commandPrompt: i18nLazyString(UIStrings.showMemory),
title: i18nLazyString(UIStrings.memory),
order: 60,
async loadView() {
const Profiler = await loadProfilerModule();
return Profiler.HeapProfilerPanel.HeapProfilerPanel.instance();
},
});
UI.ViewManager.registerViewExtension({
location: UI.ViewManager.ViewLocationValues.DRAWER_VIEW,
id: 'live-heap-profile',
commandPrompt: i18nLazyString(UIStrings.showLiveHeapProfile),
title: i18nLazyString(UIStrings.liveHeapProfile),
persistence: UI.ViewManager.ViewPersistence.CLOSEABLE,
order: 100,
async loadView() {
const Profiler = await loadProfilerModule();
return Profiler.LiveHeapProfileView.LiveHeapProfileView.instance();
},
experiment: Root.Runtime.ExperimentName.LIVE_HEAP_PROFILE,
});
UI.ActionRegistration.registerActionExtension({
actionId: 'live-heap-profile.toggle-recording',
iconClass: UI.ActionRegistration.IconClass.START_RECORDING,
toggleable: true,
toggledIconClass: UI.ActionRegistration.IconClass.STOP_RECORDING,
toggleWithRedColor: true,
async loadActionDelegate() {
const Profiler = await loadProfilerModule();
return new Profiler.LiveHeapProfileView.ActionDelegate();
},
category: UI.ActionRegistration.ActionCategory.MEMORY,
experiment: Root.Runtime.ExperimentName.LIVE_HEAP_PROFILE,
options: [
{
value: true,
title: i18nLazyString(UIStrings.startRecordingHeapAllocations),
},
{
value: false,
title: i18nLazyString(UIStrings.stopRecordingHeapAllocations),
},
],
});
UI.ActionRegistration.registerActionExtension({
actionId: 'live-heap-profile.start-with-reload',
iconClass: UI.ActionRegistration.IconClass.REFRESH,
async loadActionDelegate() {
const Profiler = await loadProfilerModule();
return new Profiler.LiveHeapProfileView.ActionDelegate();
},
category: UI.ActionRegistration.ActionCategory.MEMORY,
experiment: Root.Runtime.ExperimentName.LIVE_HEAP_PROFILE,
title: i18nLazyString(UIStrings.startRecordingHeapAllocationsAndReload),
});
UI.ActionRegistration.registerActionExtension({
actionId: 'profiler.heap-toggle-recording',
category: UI.ActionRegistration.ActionCategory.MEMORY,
iconClass: UI.ActionRegistration.IconClass.START_RECORDING,
title: i18nLazyString(UIStrings.startStopRecording),
toggleable: true,
toggledIconClass: UI.ActionRegistration.IconClass.STOP_RECORDING,
toggleWithRedColor: true,
contextTypes() {
return maybeRetrieveContextTypes(Profiler => [Profiler.HeapProfilerPanel.HeapProfilerPanel]);
},
async loadActionDelegate() {
const Profiler = await loadProfilerModule();
return Profiler.HeapProfilerPanel.HeapProfilerPanel.instance();
},
bindings: [
{
platform: UI.ActionRegistration.Platforms.WINDOWS_LINUX,
shortcut: 'Ctrl+E',
},
{
platform: UI.ActionRegistration.Platforms.MAC,
shortcut: 'Meta+E',
},
],
});
UI.ActionRegistration.registerActionExtension({
actionId: 'profiler.clear-all',
category: UI.ActionRegistration.ActionCategory.MEMORY,
iconClass: UI.ActionRegistration.IconClass.CLEAR,
contextTypes() {
return maybeRetrieveContextTypes(Profiler => [Profiler.ProfilesPanel.ProfilesPanel]);
},
async loadActionDelegate() {
const Profiler = await loadProfilerModule();
return new Profiler.ProfilesPanel.ActionDelegate();
},
title: i18nLazyString(UIStrings.clearAllProfiles),
});
UI.ActionRegistration.registerActionExtension({
actionId: 'profiler.load-from-file',
category: UI.ActionRegistration.ActionCategory.MEMORY,
iconClass: UI.ActionRegistration.IconClass.IMPORT,
contextTypes() {
return maybeRetrieveContextTypes(Profiler => [Profiler.ProfilesPanel.ProfilesPanel]);
},
async loadActionDelegate() {
const Profiler = await loadProfilerModule();
return new Profiler.ProfilesPanel.ActionDelegate();
},
title: i18nLazyString(UIStrings.loadProfile),
bindings: [
{
platform: UI.ActionRegistration.Platforms.WINDOWS_LINUX,
shortcut: 'Ctrl+O',
},
{
platform: UI.ActionRegistration.Platforms.MAC,
shortcut: 'Meta+O',
},
],
});
UI.ActionRegistration.registerActionExtension({
actionId: 'profiler.save-to-file',
category: UI.ActionRegistration.ActionCategory.MEMORY,
iconClass: UI.ActionRegistration.IconClass.DOWNLOAD,
contextTypes() {
return maybeRetrieveContextTypes(Profiler => [Profiler.ProfileHeader.ProfileHeader]);
},
async loadActionDelegate() {
const Profiler = await loadProfilerModule();
return new Profiler.ProfilesPanel.ActionDelegate();
},
title: i18nLazyString(UIStrings.saveProfile),
bindings: [
{
platform: UI.ActionRegistration.Platforms.WINDOWS_LINUX,
shortcut: 'Ctrl+S',
},
{
platform: UI.ActionRegistration.Platforms.MAC,
shortcut: 'Meta+S',
},
],
});
UI.ActionRegistration.registerActionExtension({
actionId: 'profiler.delete-profile',
category: UI.ActionRegistration.ActionCategory.MEMORY,
iconClass: UI.ActionRegistration.IconClass.DOWNLOAD,
contextTypes() {
return maybeRetrieveContextTypes(Profiler => [Profiler.ProfileHeader.ProfileHeader]);
},
async loadActionDelegate() {
const Profiler = await loadProfilerModule();
return new Profiler.ProfilesPanel.ActionDelegate();
},
title: i18nLazyString(UIStrings.deleteProfile),
});
UI.ContextMenu.registerProvider({
contextTypes() {
return [
SDK.RemoteObject.RemoteObject,
];
},
async loadProvider() {
const Profiler = await loadProfilerModule();
return Profiler.HeapProfilerPanel.HeapProfilerPanel.instance();
},
experiment: undefined,
});
UI.ContextMenu.registerItem({
location: UI.ContextMenu.ItemLocation.PROFILER_MENU_DEFAULT,
actionId: 'profiler.save-to-file',
order: 10,
});
UI.ContextMenu.registerItem({
location: UI.ContextMenu.ItemLocation.PROFILER_MENU_DEFAULT,
actionId: 'profiler.delete-profile',
order: 11,
});