chrome-devtools-frontend
Version:
Chrome DevTools UI
45 lines (37 loc) • 1.38 kB
text/typescript
// Copyright 2020 The Chromium Authors
// 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 UI from '../../ui/legacy/legacy.js';
import type * as Security from './security.js';
const UIStrings = {
/**
* @description Default Title of the security panel
*/
security: 'Security',
/**
* @description Default command to open the security panel
*/
showSecurity: 'Show Security',
} as const;
const str_ = i18n.i18n.registerUIStrings('panels/security/security-meta.ts', UIStrings);
const i18nLazyString = i18n.i18n.getLazilyComputedLocalizedString.bind(undefined, str_);
let loadedSecurityModule: (typeof Security|undefined);
async function loadSecurityModule(): Promise<typeof Security> {
if (!loadedSecurityModule) {
loadedSecurityModule = await import('./security.js');
}
return loadedSecurityModule;
}
UI.ViewManager.registerViewExtension({
location: UI.ViewManager.ViewLocationValues.PANEL,
id: 'security',
title: () => i18nLazyString(UIStrings.security)(),
commandPrompt: () => i18nLazyString(UIStrings.showSecurity)(),
order: 80,
persistence: UI.ViewManager.ViewPersistence.CLOSEABLE,
async loadView() {
const Security = await loadSecurityModule();
return Security.SecurityPanel.SecurityPanel.instance();
},
});