mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
add data explorer default (#4653)
This commit is contained in:
@@ -105,23 +105,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"viewsContainers": {
|
|
||||||
"activitybar": [
|
|
||||||
{
|
|
||||||
"id": "azureResource",
|
|
||||||
"title": "%azure.title%",
|
|
||||||
"icon": "resources/azure.svg"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"views": {
|
|
||||||
"azureResource": [
|
|
||||||
{
|
|
||||||
"id": "azureResourceExplorer",
|
|
||||||
"name": "%azure.resource.explorer.title%"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"dataExplorer": {
|
"dataExplorer": {
|
||||||
"azureResource": [
|
"azureResource": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,91 +0,0 @@
|
|||||||
/*---------------------------------------------------------------------------------------------
|
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
||||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
||||||
*--------------------------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
import 'vs/css!sql/media/actionBarLabel';
|
|
||||||
import { localize } from 'vs/nls';
|
|
||||||
import { ViewletRegistry, Extensions as ViewletExtensions, ViewletDescriptor } from 'vs/workbench/browser/viewlet';
|
|
||||||
import { Registry } from 'vs/platform/registry/common/platform';
|
|
||||||
import { VIEWLET_ID } from 'sql/parts/dataExplorer/common/dataExplorerExtensionPoint';
|
|
||||||
import { DataExplorerViewlet, DataExplorerViewletViewsContribution } from 'sql/parts/dataExplorer/viewlet/dataExplorerViewlet';
|
|
||||||
import { IWorkbenchActionRegistry, Extensions as ActionExtensions } from 'vs/workbench/common/actions';
|
|
||||||
import { IWorkbenchContributionsRegistry, Extensions as WorkbenchExtensions } from 'vs/workbench/common/contributions';
|
|
||||||
import { LifecyclePhase } from 'vs/platform/lifecycle/common/lifecycle';
|
|
||||||
import { Extensions, IConfigurationRegistry } from 'vs/platform/configuration/common/configurationRegistry';
|
|
||||||
import { SyncActionDescriptor } from 'vs/platform/actions/common/actions';
|
|
||||||
import { KeyMod, KeyCode } from 'vs/base/common/keyCodes';
|
|
||||||
import { ToggleViewletAction } from 'vs/workbench/browser/parts/activitybar/activitybarActions';
|
|
||||||
import { IViewletService } from 'vs/workbench/services/viewlet/browser/viewlet';
|
|
||||||
import { IWorkbenchLayoutService } from 'vs/workbench/services/layout/browser/layoutService';
|
|
||||||
|
|
||||||
// Viewlet Action
|
|
||||||
export class OpenDataExplorerViewletAction extends ToggleViewletAction {
|
|
||||||
public static ID = VIEWLET_ID;
|
|
||||||
public static LABEL = 'Show Data Explorer';
|
|
||||||
|
|
||||||
constructor(
|
|
||||||
id: string,
|
|
||||||
label: string,
|
|
||||||
@IViewletService viewletService: IViewletService,
|
|
||||||
@IWorkbenchLayoutService layoutService: IWorkbenchLayoutService
|
|
||||||
) {
|
|
||||||
super(viewletDescriptor, layoutService, viewletService);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Data Explorer Viewlet
|
|
||||||
const viewletDescriptor = new ViewletDescriptor(
|
|
||||||
DataExplorerViewlet,
|
|
||||||
VIEWLET_ID,
|
|
||||||
localize('workbench.dataExplorer', 'Data Explorer'),
|
|
||||||
'dataExplorer',
|
|
||||||
0
|
|
||||||
);
|
|
||||||
|
|
||||||
if (process.env.NODE_ENV === 'development') {
|
|
||||||
Registry.as<ViewletRegistry>(ViewletExtensions.Viewlets).registerViewlet(viewletDescriptor);
|
|
||||||
Registry.as<ViewletRegistry>(ViewletExtensions.Viewlets).setDefaultViewletId(VIEWLET_ID);
|
|
||||||
const workbenchRegistry = Registry.as<IWorkbenchContributionsRegistry>(WorkbenchExtensions.Workbench);
|
|
||||||
workbenchRegistry.registerWorkbenchContribution(DataExplorerViewletViewsContribution, LifecyclePhase.Starting);
|
|
||||||
const registry = Registry.as<IWorkbenchActionRegistry>(ActionExtensions.WorkbenchActions);
|
|
||||||
registry.registerWorkbenchAction(
|
|
||||||
new SyncActionDescriptor(
|
|
||||||
OpenDataExplorerViewletAction,
|
|
||||||
OpenDataExplorerViewletAction.ID,
|
|
||||||
OpenDataExplorerViewletAction.LABEL,
|
|
||||||
{ primary: KeyMod.CtrlCmd | KeyCode.Shift | KeyCode.KEY_C }),
|
|
||||||
'View: Show Servers',
|
|
||||||
localize('registeredServers.view', "View")
|
|
||||||
);
|
|
||||||
|
|
||||||
let configurationRegistry = <IConfigurationRegistry>Registry.as(Extensions.Configuration);
|
|
||||||
configurationRegistry.registerConfiguration({
|
|
||||||
'id': 'databaseConnections',
|
|
||||||
'order': 0,
|
|
||||||
'title': localize('databaseConnections', 'Database Connections'),
|
|
||||||
'type': 'object',
|
|
||||||
'properties': {
|
|
||||||
'datasource.connections': {
|
|
||||||
'description': localize('datasource.connections', 'data source connections'),
|
|
||||||
'type': 'array'
|
|
||||||
},
|
|
||||||
'datasource.connectionGroups': {
|
|
||||||
'description': localize('datasource.connectionGroups', 'data source groups'),
|
|
||||||
'type': 'array'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
configurationRegistry.registerConfiguration({
|
|
||||||
'id': 'startupConfig',
|
|
||||||
'title': localize('startupConfig', 'Startup Configuration'),
|
|
||||||
'type': 'object',
|
|
||||||
'properties': {
|
|
||||||
'startup.alwaysShowServersView': {
|
|
||||||
'type': 'boolean',
|
|
||||||
'description': localize('startup.alwaysShowServersView', 'True for the Servers view to be shown on launch of Azure Data Studio default; false if the last opened view should be shown'),
|
|
||||||
'default': true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
@@ -1,100 +0,0 @@
|
|||||||
/*---------------------------------------------------------------------------------------------
|
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
||||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
||||||
*--------------------------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
import 'vs/css!sql/media/actionBarLabel';
|
|
||||||
import { KeyMod, KeyCode } from 'vs/base/common/keyCodes';
|
|
||||||
import { localize } from 'vs/nls';
|
|
||||||
import { SyncActionDescriptor, MenuRegistry, MenuId } from 'vs/platform/actions/common/actions';
|
|
||||||
import { ViewletRegistry, Extensions as ViewletExtensions, ViewletDescriptor } from 'vs/workbench/browser/viewlet';
|
|
||||||
import { IWorkbenchActionRegistry, Extensions as ActionExtensions } from 'vs/workbench/common/actions';
|
|
||||||
import { IEditorService } from 'vs/workbench/services/editor/common/editorService';
|
|
||||||
import { IViewletService } from 'vs/workbench/services/viewlet/browser/viewlet';
|
|
||||||
import { Registry } from 'vs/platform/registry/common/platform';
|
|
||||||
import { Extensions, IConfigurationRegistry } from 'vs/platform/configuration/common/configurationRegistry';
|
|
||||||
|
|
||||||
import { VIEWLET_ID } from 'sql/platform/connection/common/connectionManagement';
|
|
||||||
import { ConnectionViewlet } from 'sql/workbench/parts/connection/electron-browser/connectionViewlet';
|
|
||||||
import { ToggleViewletAction } from 'vs/workbench/browser/parts/activitybar/activitybarActions';
|
|
||||||
import { IWorkbenchLayoutService } from 'vs/workbench/services/layout/browser/layoutService';
|
|
||||||
|
|
||||||
// Viewlet Action
|
|
||||||
export class OpenConnectionsViewletAction extends ToggleViewletAction {
|
|
||||||
public static ID = VIEWLET_ID;
|
|
||||||
public static LABEL = 'Show Servers';
|
|
||||||
|
|
||||||
constructor(
|
|
||||||
id: string,
|
|
||||||
label: string,
|
|
||||||
@IViewletService viewletService: IViewletService,
|
|
||||||
@IWorkbenchLayoutService layoutService: IWorkbenchLayoutService
|
|
||||||
) {
|
|
||||||
super(viewletDescriptor, layoutService, viewletService);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Viewlet
|
|
||||||
const viewletDescriptor = new ViewletDescriptor(
|
|
||||||
ConnectionViewlet,
|
|
||||||
VIEWLET_ID,
|
|
||||||
'Servers',
|
|
||||||
'connectionViewlet',
|
|
||||||
0
|
|
||||||
);
|
|
||||||
|
|
||||||
if (process.env.NODE_ENV !== 'development') {
|
|
||||||
Registry.as<ViewletRegistry>(ViewletExtensions.Viewlets).registerViewlet(viewletDescriptor);
|
|
||||||
|
|
||||||
Registry.as<ViewletRegistry>(ViewletExtensions.Viewlets).setDefaultViewletId(VIEWLET_ID);
|
|
||||||
|
|
||||||
const registry = Registry.as<IWorkbenchActionRegistry>(ActionExtensions.WorkbenchActions);
|
|
||||||
registry.registerWorkbenchAction(
|
|
||||||
new SyncActionDescriptor(
|
|
||||||
OpenConnectionsViewletAction,
|
|
||||||
OpenConnectionsViewletAction.ID,
|
|
||||||
OpenConnectionsViewletAction.LABEL,
|
|
||||||
{ primary: KeyMod.CtrlCmd | KeyCode.Shift | KeyCode.KEY_C }),
|
|
||||||
'View: Show Servers',
|
|
||||||
localize('registeredServers.view', "View")
|
|
||||||
);
|
|
||||||
|
|
||||||
let configurationRegistry = <IConfigurationRegistry>Registry.as(Extensions.Configuration);
|
|
||||||
configurationRegistry.registerConfiguration({
|
|
||||||
'id': 'databaseConnections',
|
|
||||||
'order': 0,
|
|
||||||
'title': localize('databaseConnections', 'Database Connections'),
|
|
||||||
'type': 'object',
|
|
||||||
'properties': {
|
|
||||||
'datasource.connections': {
|
|
||||||
'description': localize('datasource.connections', 'data source connections'),
|
|
||||||
'type': 'array'
|
|
||||||
},
|
|
||||||
'datasource.connectionGroups': {
|
|
||||||
'description': localize('datasource.connectionGroups', 'data source groups'),
|
|
||||||
'type': 'array'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
configurationRegistry.registerConfiguration({
|
|
||||||
'id': 'startupConfig',
|
|
||||||
'title': localize('startupConfig', 'Startup Configuration'),
|
|
||||||
'type': 'object',
|
|
||||||
'properties': {
|
|
||||||
'startup.alwaysShowServersView': {
|
|
||||||
'type': 'boolean',
|
|
||||||
'description': localize('startup.alwaysShowServersView', 'True for the Servers view to be shown on launch of Azure Data Studio default; false if the last opened view should be shown'),
|
|
||||||
'default': true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
MenuRegistry.appendMenuItem(MenuId.MenubarViewMenu, {
|
|
||||||
group: '3_views',
|
|
||||||
command: {
|
|
||||||
id: VIEWLET_ID,
|
|
||||||
title: localize({ key: 'miViewRegisteredServers', comment: ['&& denotes a mnemonic'] }, "&&Servers")
|
|
||||||
},
|
|
||||||
order: 1
|
|
||||||
});
|
|
||||||
@@ -22,7 +22,7 @@ import Severity from 'vs/base/common/severity';
|
|||||||
import { ObjectExplorerActionsContext } from 'sql/parts/objectExplorer/viewlet/objectExplorerActions';
|
import { ObjectExplorerActionsContext } from 'sql/parts/objectExplorer/viewlet/objectExplorerActions';
|
||||||
import { IEditorService } from 'vs/workbench/services/editor/common/editorService';
|
import { IEditorService } from 'vs/workbench/services/editor/common/editorService';
|
||||||
import { IErrorMessageService } from 'sql/platform/errorMessage/common/errorMessageService';
|
import { IErrorMessageService } from 'sql/platform/errorMessage/common/errorMessageService';
|
||||||
import { ConnectionViewletPanel } from 'sql/parts/dataExplorer/objectExplorer/connectionViewlet/connectionViewletPanel';
|
import { ConnectionViewletPanel } from 'sql/workbench/parts/dataExplorer/browser/connectionViewletPanel';
|
||||||
|
|
||||||
export class RefreshAction extends Action {
|
export class RefreshAction extends Action {
|
||||||
|
|
||||||
|
|||||||
@@ -169,5 +169,6 @@ export class ConnectionViewletPanel extends ViewletPanel {
|
|||||||
|
|
||||||
focus(): void {
|
focus(): void {
|
||||||
super.focus();
|
super.focus();
|
||||||
|
this._serverTreeView.tree.domFocus();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,90 @@
|
|||||||
|
/*---------------------------------------------------------------------------------------------
|
||||||
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||||
|
*--------------------------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
import 'vs/css!sql/media/actionBarLabel';
|
||||||
|
import { localize } from 'vs/nls';
|
||||||
|
import { ViewletRegistry, Extensions as ViewletExtensions, ViewletDescriptor, ShowViewletAction } from 'vs/workbench/browser/viewlet';
|
||||||
|
import { Registry } from 'vs/platform/registry/common/platform';
|
||||||
|
import { VIEWLET_ID } from 'sql/workbench/parts/dataExplorer/browser/dataExplorerExtensionPoint';
|
||||||
|
import { DataExplorerViewlet, DataExplorerViewletViewsContribution } from 'sql/workbench/parts/dataExplorer/browser/dataExplorerViewlet';
|
||||||
|
import { IWorkbenchActionRegistry, Extensions as ActionExtensions } from 'vs/workbench/common/actions';
|
||||||
|
import { IWorkbenchContributionsRegistry, Extensions as WorkbenchExtensions } from 'vs/workbench/common/contributions';
|
||||||
|
import { LifecyclePhase } from 'vs/platform/lifecycle/common/lifecycle';
|
||||||
|
import { Extensions, IConfigurationRegistry } from 'vs/platform/configuration/common/configurationRegistry';
|
||||||
|
import { SyncActionDescriptor } from 'vs/platform/actions/common/actions';
|
||||||
|
import { KeyMod, KeyCode } from 'vs/base/common/keyCodes';
|
||||||
|
import { IViewletService } from 'vs/workbench/services/viewlet/browser/viewlet';
|
||||||
|
import { IWorkbenchLayoutService } from 'vs/workbench/services/layout/browser/layoutService';
|
||||||
|
import { IEditorGroupsService } from 'vs/workbench/services/editor/common/editorGroupsService';
|
||||||
|
|
||||||
|
// Viewlet Action
|
||||||
|
export class OpenDataExplorerViewletAction extends ShowViewletAction {
|
||||||
|
public static ID = VIEWLET_ID;
|
||||||
|
public static LABEL = localize('showDataExplorer', "Show Data Explorer");
|
||||||
|
|
||||||
|
constructor(
|
||||||
|
id: string,
|
||||||
|
label: string,
|
||||||
|
@IViewletService viewletService: IViewletService,
|
||||||
|
@IEditorGroupsService editorGroupService: IEditorGroupsService,
|
||||||
|
@IWorkbenchLayoutService layoutService: IWorkbenchLayoutService
|
||||||
|
) {
|
||||||
|
super(id, label, VIEWLET_ID, viewletService, editorGroupService, layoutService);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Data Explorer Viewlet
|
||||||
|
const viewletDescriptor = new ViewletDescriptor(
|
||||||
|
DataExplorerViewlet,
|
||||||
|
VIEWLET_ID,
|
||||||
|
localize('workbench.dataExplorer', "Data Explorer"),
|
||||||
|
'dataExplorer',
|
||||||
|
0
|
||||||
|
);
|
||||||
|
|
||||||
|
Registry.as<ViewletRegistry>(ViewletExtensions.Viewlets).registerViewlet(viewletDescriptor);
|
||||||
|
Registry.as<ViewletRegistry>(ViewletExtensions.Viewlets).setDefaultViewletId(VIEWLET_ID);
|
||||||
|
const workbenchRegistry = Registry.as<IWorkbenchContributionsRegistry>(WorkbenchExtensions.Workbench);
|
||||||
|
workbenchRegistry.registerWorkbenchContribution(DataExplorerViewletViewsContribution, LifecyclePhase.Starting);
|
||||||
|
const registry = Registry.as<IWorkbenchActionRegistry>(ActionExtensions.WorkbenchActions);
|
||||||
|
registry.registerWorkbenchAction(
|
||||||
|
new SyncActionDescriptor(
|
||||||
|
OpenDataExplorerViewletAction,
|
||||||
|
OpenDataExplorerViewletAction.ID,
|
||||||
|
OpenDataExplorerViewletAction.LABEL,
|
||||||
|
{ primary: KeyMod.CtrlCmd | KeyCode.Shift | KeyCode.KEY_C }),
|
||||||
|
'View: Show Data Explorer',
|
||||||
|
localize('dataExplorer.view', "View")
|
||||||
|
);
|
||||||
|
|
||||||
|
let configurationRegistry = <IConfigurationRegistry>Registry.as(Extensions.Configuration);
|
||||||
|
configurationRegistry.registerConfiguration({
|
||||||
|
'id': 'databaseConnections',
|
||||||
|
'order': 0,
|
||||||
|
'title': localize('databaseConnections', "Database Connections"),
|
||||||
|
'type': 'object',
|
||||||
|
'properties': {
|
||||||
|
'datasource.connections': {
|
||||||
|
'description': localize('datasource.connections', "data source connections"),
|
||||||
|
'type': 'array'
|
||||||
|
},
|
||||||
|
'datasource.connectionGroups': {
|
||||||
|
'description': localize('datasource.connectionGroups', "data source groups"),
|
||||||
|
'type': 'array'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
configurationRegistry.registerConfiguration({
|
||||||
|
'id': 'startupConfig',
|
||||||
|
'title': localize('startupConfig', "Startup Configuration"),
|
||||||
|
'type': 'object',
|
||||||
|
'properties': {
|
||||||
|
'startup.alwaysShowServersView': {
|
||||||
|
'type': 'boolean',
|
||||||
|
'description': localize('startup.alwaysShowServersView', "True for the Servers view to be shown on launch of Azure Data Studio default; false if the last opened view should be shown"),
|
||||||
|
'default': true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
@@ -22,8 +22,8 @@ import { IWorkspaceContextService } from 'vs/platform/workspace/common/workspace
|
|||||||
import { IContextMenuService } from 'vs/platform/contextview/browser/contextView';
|
import { IContextMenuService } from 'vs/platform/contextview/browser/contextView';
|
||||||
import { IAddedViewDescriptorRef } from 'vs/workbench/browser/parts/views/views';
|
import { IAddedViewDescriptorRef } from 'vs/workbench/browser/parts/views/views';
|
||||||
import { ViewletPanel } from 'vs/workbench/browser/parts/views/panelViewlet';
|
import { ViewletPanel } from 'vs/workbench/browser/parts/views/panelViewlet';
|
||||||
import { VIEWLET_ID, VIEW_CONTAINER } from 'sql/parts/dataExplorer/common/dataExplorerExtensionPoint';
|
import { VIEWLET_ID, VIEW_CONTAINER } from 'sql/workbench/parts/dataExplorer/browser/dataExplorerExtensionPoint';
|
||||||
import { ConnectionViewletPanel } from 'sql/parts/dataExplorer/objectExplorer/connectionViewlet/connectionViewletPanel';
|
import { ConnectionViewletPanel } from 'sql/workbench/parts/dataExplorer/browser/connectionViewletPanel';
|
||||||
import { Extensions as ViewContainerExtensions, IViewDescriptor, IViewsRegistry } from 'vs/workbench/common/views';
|
import { Extensions as ViewContainerExtensions, IViewDescriptor, IViewsRegistry } from 'vs/workbench/common/views';
|
||||||
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
|
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
|
||||||
import { IWorkbenchLayoutService } from 'vs/workbench/services/layout/browser/layoutService';
|
import { IWorkbenchLayoutService } from 'vs/workbench/services/layout/browser/layoutService';
|
||||||
@@ -29,11 +29,10 @@ import { IEditorGroupsService } from 'vs/workbench/services/editor/common/editor
|
|||||||
import { CommandsRegistry } from 'vs/platform/commands/common/commands';
|
import { CommandsRegistry } from 'vs/platform/commands/common/commands';
|
||||||
import { IDimension } from 'vs/platform/layout/browser/layoutService';
|
import { IDimension } from 'vs/platform/layout/browser/layoutService';
|
||||||
|
|
||||||
const $ = dom.$;
|
|
||||||
|
|
||||||
// {{SQL CARBON EDIT}}
|
// {{SQL CARBON EDIT}}
|
||||||
import { OpenConnectionsViewletAction } from 'sql/parts/objectExplorer/common/registeredServer.contribution';
|
import { OpenDataExplorerViewletAction } from 'sql/workbench/parts/dataExplorer/browser/dataExplorer.contribution';
|
||||||
|
|
||||||
|
const $ = dom.$;
|
||||||
|
|
||||||
interface WatermarkEntry {
|
interface WatermarkEntry {
|
||||||
text: string;
|
text: string;
|
||||||
@@ -44,7 +43,7 @@ interface WatermarkEntry {
|
|||||||
// {{SQL CARBON EDIT}}
|
// {{SQL CARBON EDIT}}
|
||||||
const showServers: WatermarkEntry = {
|
const showServers: WatermarkEntry = {
|
||||||
text: nls.localize('watermark.showServers', 'Show Servers'),
|
text: nls.localize('watermark.showServers', 'Show Servers'),
|
||||||
id: OpenConnectionsViewletAction.ID
|
id: OpenDataExplorerViewletAction.ID
|
||||||
};
|
};
|
||||||
|
|
||||||
const newSqlFile: WatermarkEntry = {
|
const newSqlFile: WatermarkEntry = {
|
||||||
|
|||||||
@@ -441,12 +441,11 @@ import 'sql/parts/taskHistory/viewlet/taskHistoryViewlet';
|
|||||||
import 'sql/parts/tasks/common/tasks.contribution';
|
import 'sql/parts/tasks/common/tasks.contribution';
|
||||||
|
|
||||||
// data explorer
|
// data explorer
|
||||||
import 'sql/parts/dataExplorer/common/dataExplorer.contribution';
|
import 'sql/workbench/parts/dataExplorer/browser/dataExplorer.contribution';
|
||||||
import 'sql/parts/dataExplorer/viewlet/dataExplorerViewlet';
|
import 'sql/workbench/parts/dataExplorer/browser/dataExplorerViewlet';
|
||||||
import 'sql/parts/dataExplorer/common/dataExplorerExtensionPoint';
|
import 'sql/workbench/parts/dataExplorer/browser/dataExplorerExtensionPoint';
|
||||||
import 'sql/workbench/parts/dataExplorer/electron-browser/nodeActions.contribution';
|
import 'sql/workbench/parts/dataExplorer/electron-browser/nodeActions.contribution';
|
||||||
|
|
||||||
import 'sql/parts/objectExplorer/common/registeredServer.contribution';
|
|
||||||
import 'sql/workbench/parts/connection/electron-browser/connectionViewlet';
|
import 'sql/workbench/parts/connection/electron-browser/connectionViewlet';
|
||||||
import 'sql/workbench/api/node/sqlExtHost.contribution';
|
import 'sql/workbench/api/node/sqlExtHost.contribution';
|
||||||
import 'sql/parts/connection/common/connection.contribution';
|
import 'sql/parts/connection/common/connection.contribution';
|
||||||
|
|||||||
Reference in New Issue
Block a user