| // 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 SDK from '../../core/sdk/sdk.js'; |
| import * as UI from '../../ui/legacy/legacy.js'; |
| import * as Workspace from '../workspace/workspace.js'; |
| |
| import type * as Persistence from './persistence.js'; |
| |
| const UIStrings = { |
| /** |
| *@description Text of a DOM element in Workspace Settings Tab of the Workspace settings in Settings |
| */ |
| workspace: 'Workspace', |
| /** |
| *@description Command for showing the Workspace tool in Settings |
| */ |
| showWorkspace: 'Show Workspace', |
| /** |
| *@description Title of a setting under the Persistence category in Settings |
| */ |
| enableLocalOverrides: 'Enable Local Overrides', |
| /** |
| *@description A tag of Enable Local Overrides setting that can be searched in the command menu |
| */ |
| interception: 'interception', |
| /** |
| *@description A tag of Enable Local Overrides setting that can be searched in the command menu |
| */ |
| override: 'override', |
| /** |
| *@description A tag of Group Network by frame setting that can be searched in the command menu |
| */ |
| network: 'network', |
| /** |
| *@description A tag of Enable Local Overrides setting that can be searched in the command menu |
| */ |
| rewrite: 'rewrite', |
| /** |
| *@description A tag of Enable Local Overrides setting that can be searched in the command menu. |
| *Noun for network request. |
| */ |
| request: 'request', |
| /** |
| *@description Title of a setting under the Persistence category that can be invoked through the Command Menu |
| */ |
| enableOverrideNetworkRequests: 'Enable override network requests', |
| /** |
| *@description Title of a setting under the Persistence category that can be invoked through the Command Menu |
| */ |
| disableOverrideNetworkRequests: 'Disable override network requests', |
| }; |
| const str_ = i18n.i18n.registerUIStrings('models/persistence/persistence-meta.ts', UIStrings); |
| const i18nLazyString = i18n.i18n.getLazilyComputedLocalizedString.bind(undefined, str_); |
| |
| let loadedPersistenceModule: (typeof Persistence|undefined); |
| |
| async function loadPersistenceModule(): Promise<typeof Persistence> { |
| if (!loadedPersistenceModule) { |
| loadedPersistenceModule = await import('./persistence.js'); |
| } |
| return loadedPersistenceModule; |
| } |
| |
| UI.ViewManager.registerViewExtension({ |
| location: UI.ViewManager.ViewLocationValues.SETTINGS_VIEW, |
| id: 'workspace', |
| title: i18nLazyString(UIStrings.workspace), |
| commandPrompt: i18nLazyString(UIStrings.showWorkspace), |
| order: 1, |
| async loadView() { |
| const Persistence = await loadPersistenceModule(); |
| return Persistence.WorkspaceSettingsTab.WorkspaceSettingsTab.instance(); |
| }, |
| }); |
| |
| Common.Settings.registerSettingExtension({ |
| category: Common.Settings.SettingCategory.PERSISTENCE, |
| title: i18nLazyString(UIStrings.enableLocalOverrides), |
| settingName: 'persistenceNetworkOverridesEnabled', |
| settingType: Common.Settings.SettingType.BOOLEAN, |
| defaultValue: false, |
| tags: [ |
| i18nLazyString(UIStrings.interception), |
| i18nLazyString(UIStrings.override), |
| i18nLazyString(UIStrings.network), |
| i18nLazyString(UIStrings.rewrite), |
| i18nLazyString(UIStrings.request), |
| ], |
| options: [ |
| { |
| value: true, |
| title: i18nLazyString(UIStrings.enableOverrideNetworkRequests), |
| }, |
| { |
| value: false, |
| title: i18nLazyString(UIStrings.disableOverrideNetworkRequests), |
| }, |
| ], |
| }); |
| |
| UI.ContextMenu.registerProvider({ |
| contextTypes() { |
| return [ |
| Workspace.UISourceCode.UISourceCode, |
| SDK.Resource.Resource, |
| SDK.NetworkRequest.NetworkRequest, |
| ]; |
| }, |
| async loadProvider() { |
| const Persistence = await loadPersistenceModule(); |
| return Persistence.PersistenceActions.ContextMenuProvider.instance(); |
| }, |
| experiment: undefined, |
| }); |