chrome-devtools-frontend
Version:
Chrome DevTools UI
53 lines (45 loc) • 1.7 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 '../i18n/i18n.js';
import * as Root from '../root/root.js';
import * as UI from '../ui/ui.js';
// eslint-disable-next-line rulesdir/es_modules_import
import type * as NodeMain from './node_main.js';
export const UIStrings = {
/**
*@description Text that refers to the network connection
*/
connection: 'Connection',
/**
*@description A tag of Node.js Connection Panel that can be searched in the command menu
*/
node: 'node',
/**
*@description Command for showing the Connection tool
*/
showConnection: 'Show Connection',
};
const str_ = i18n.i18n.registerUIStrings('node_main/node_main-meta.ts', UIStrings);
const i18nString = i18n.i18n.getLazilyComputedLocalizedString.bind(undefined, str_);
let loadedNodeMainModule: (typeof NodeMain|undefined);
async function loadNodeMainModule(): Promise<typeof NodeMain> {
if (!loadedNodeMainModule) {
// Side-effect import resources in module.json
await Root.Runtime.Runtime.instance().loadModulePromise('node_main');
loadedNodeMainModule = await import('./node_main.js');
}
return loadedNodeMainModule;
}
UI.ViewManager.registerViewExtension({
location: UI.ViewManager.ViewLocationValues.PANEL,
id: 'node-connection',
title: i18nString(UIStrings.connection),
commandPrompt: i18nString(UIStrings.showConnection),
order: 0,
async loadView() {
const NodeMain = await loadNodeMainModule();
return NodeMain.NodeConnectionsPanel.NodeConnectionsPanel.instance();
},
tags: [i18nString(UIStrings.node)],
});