mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-03 09:35:40 -05:00
Make azure portal work from server area (#10699)
This commit is contained in:
@@ -5,14 +5,45 @@
|
||||
import { MenuRegistry, MenuId } from 'vs/platform/actions/common/actions';
|
||||
import { localize } from 'vs/nls';
|
||||
import { MssqlNodeContext } from 'sql/workbench/services/objectExplorer/browser/mssqlNodeContext';
|
||||
import { ConnectionContextKey } from 'sql/workbench/services/connection/common/connectionContextKey';
|
||||
import { CommandsRegistry, ICommandService } from 'vs/platform/commands/common/commands';
|
||||
import { TreeViewItemHandleArg } from 'sql/workbench/common/views';
|
||||
import { ObjectExplorerActionsContext } from 'sql/workbench/services/objectExplorer/browser/objectExplorerActions';
|
||||
|
||||
const openInAzureDECommandId: string = 'azure.openInAzureCoreDE';
|
||||
MenuRegistry.appendMenuItem(MenuId.DataExplorerContext, {
|
||||
group: 'z-azurecore',
|
||||
order: 1,
|
||||
command: {
|
||||
id: 'azure.resource.openInAzurePortal',
|
||||
id: openInAzureDECommandId,
|
||||
title: localize('azure.openInAzurePortal.title', "Open in Azure Portal")
|
||||
},
|
||||
when: MssqlNodeContext.CanOpenInAzurePortal
|
||||
});
|
||||
|
||||
CommandsRegistry.registerCommand({
|
||||
id: openInAzureDECommandId,
|
||||
handler: (accessor, args: TreeViewItemHandleArg) => {
|
||||
const commandService = accessor.get(ICommandService);
|
||||
return commandService.executeCommand('azure.resource.openInAzurePortal', args.$treeItem.payload);
|
||||
}
|
||||
});
|
||||
|
||||
const openInAzureOECommandId: string = 'azure.openInAzureCoreOE';
|
||||
MenuRegistry.appendMenuItem(MenuId.ObjectExplorerItemContext, {
|
||||
group: 'z-azurecore',
|
||||
order: 1,
|
||||
command: {
|
||||
id: openInAzureOECommandId,
|
||||
title: localize('azure.openInAzurePortal.title', "Open in Azure Portal")
|
||||
},
|
||||
when: ConnectionContextKey.CanOpenInAzurePortal
|
||||
});
|
||||
|
||||
CommandsRegistry.registerCommand({
|
||||
id: openInAzureOECommandId,
|
||||
handler: (accessor, args: ObjectExplorerActionsContext) => {
|
||||
const commandService = accessor.get(ICommandService);
|
||||
return commandService.executeCommand('azure.resource.openInAzurePortal', args.connectionProfile);
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user