UNPKG

chrome-devtools-frontend

Version:
162 lines (151 loc) • 5.02 kB
// 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 Common from '../../core/common/common.js'; import * as i18n from '../../core/i18n/i18n.js'; import * as UI from '../../ui/legacy/legacy.js'; import type * as Timeline from '../timeline/timeline.js'; const UIStrings = { /** *@description Text for the performance of something */ performance: 'Performance', /** *@description Command for showing the 'Performance' tool */ showPerformance: 'Show Performance', /** *@description Title of an action in the timeline tool to show history */ showRecentTimelineSessions: 'Show recent timeline sessions', /** *@description Text to record a series of actions for analysis */ record: 'Record', /** *@description Text of an item that stops the running task */ stop: 'Stop', /** *@description Title of an action in the timeline tool to record a reload of the current page */ recordAndReload: 'Record and reload', } as const; const str_ = i18n.i18n.registerUIStrings('panels/js_timeline/js_timeline-meta.ts', UIStrings); const i18nLazyString = i18n.i18n.getLazilyComputedLocalizedString.bind(undefined, str_); let loadedTimelineModule: (typeof Timeline|undefined); async function loadTimelineModule(): Promise<typeof Timeline> { if (!loadedTimelineModule) { loadedTimelineModule = await import('../timeline/timeline.js'); } return loadedTimelineModule; } function maybeRetrieveTimelineContextTypes<T = unknown>(getClassCallBack: (timelineModule: typeof Timeline) => T[]): T[] { if (loadedTimelineModule === undefined) { return []; } return getClassCallBack(loadedTimelineModule); } UI.ViewManager.registerViewExtension({ location: UI.ViewManager.ViewLocationValues.PANEL, id: 'timeline', title: i18nLazyString(UIStrings.performance), commandPrompt: i18nLazyString(UIStrings.showPerformance), order: 66, hasToolbar: false, isPreviewFeature: true, async loadView() { const Timeline = await loadTimelineModule(); return Timeline.TimelinePanel.TimelinePanel.instance({forceNew: null, isNode: true}); }, }); UI.ActionRegistration.registerActionExtension({ actionId: 'timeline.show-history', async loadActionDelegate() { const Timeline = await loadTimelineModule(); return new Timeline.TimelinePanel.ActionDelegate(); }, category: UI.ActionRegistration.ActionCategory.PERFORMANCE, title: i18nLazyString(UIStrings.showRecentTimelineSessions), contextTypes() { return maybeRetrieveTimelineContextTypes(Timeline => [Timeline.TimelinePanel.TimelinePanel]); }, bindings: [ { platform: UI.ActionRegistration.Platforms.WINDOWS_LINUX, shortcut: 'Ctrl+H', }, { platform: UI.ActionRegistration.Platforms.MAC, shortcut: 'Meta+Y', }, ], }); UI.ActionRegistration.registerActionExtension({ actionId: 'timeline.toggle-recording', category: UI.ActionRegistration.ActionCategory.PERFORMANCE, iconClass: UI.ActionRegistration.IconClass.START_RECORDING, toggleable: true, toggledIconClass: UI.ActionRegistration.IconClass.STOP_RECORDING, toggleWithRedColor: true, contextTypes() { return maybeRetrieveTimelineContextTypes(Timeline => [Timeline.TimelinePanel.TimelinePanel]); }, async loadActionDelegate() { const Timeline = await loadTimelineModule(); return new Timeline.TimelinePanel.ActionDelegate(); }, options: [ { value: true, title: i18nLazyString(UIStrings.record), }, { value: false, title: i18nLazyString(UIStrings.stop), }, ], bindings: [ { platform: UI.ActionRegistration.Platforms.WINDOWS_LINUX, shortcut: 'Ctrl+E', }, { platform: UI.ActionRegistration.Platforms.MAC, shortcut: 'Meta+E', }, ], }); UI.ActionRegistration.registerActionExtension({ actionId: 'timeline.record-reload', iconClass: UI.ActionRegistration.IconClass.REFRESH, contextTypes() { return maybeRetrieveTimelineContextTypes(Timeline => [Timeline.TimelinePanel.TimelinePanel]); }, category: UI.ActionRegistration.ActionCategory.PERFORMANCE, title: i18nLazyString(UIStrings.recordAndReload), async loadActionDelegate() { const Timeline = await loadTimelineModule(); return new Timeline.TimelinePanel.ActionDelegate(); }, bindings: [ { platform: UI.ActionRegistration.Platforms.WINDOWS_LINUX, shortcut: 'Ctrl+Shift+E', }, { platform: UI.ActionRegistration.Platforms.MAC, shortcut: 'Meta+Shift+E', }, ], }); // IMPORTANT: if you are updating this, you should also update the setting in // timeline-meta. Common.Settings.registerSettingExtension({ category: Common.Settings.SettingCategory.PERFORMANCE, storageType: Common.Settings.SettingStorageType.SYNCED, settingName: 'annotations-hidden', settingType: Common.Settings.SettingType.BOOLEAN, defaultValue: true, });