mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-25 01:25:36 -05:00
* Further work on dashboards * More work on dashboard * Undo adding manage to context menu until feature is complete * Update cluster status name
116 lines
4.6 KiB
TypeScript
116 lines
4.6 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
'use strict';
|
|
|
|
import * as vscode from 'vscode';
|
|
import * as nls from 'vscode-nls';
|
|
import { ControllerTreeDataProvider } from './bigDataCluster/tree/controllerTreeDataProvider';
|
|
import { IconPath } from './bigDataCluster/constants';
|
|
import { TreeNode } from './bigDataCluster/tree/treeNode';
|
|
import { AddControllerDialogModel, AddControllerDialog } from './bigDataCluster/dialog/addControllerDialog';
|
|
import { ControllerNode } from './bigDataCluster/tree/controllerTreeNode';
|
|
import { BdcDashboard } from './bigDataCluster/dialog/bdcDashboard';
|
|
import { BdcDashboardModel } from './bigDataCluster/dialog/bdcDashboardModel';
|
|
|
|
const localize = nls.loadMessageBundle();
|
|
|
|
const AddControllerCommand = 'bigDataClusters.command.addController';
|
|
const DeleteControllerCommand = 'bigDataClusters.command.deleteController';
|
|
const RefreshControllerCommand = 'bigDataClusters.command.refreshController';
|
|
const ManageControllerCommand = 'bigDataClusters.command.manageController';
|
|
|
|
let throttleTimers: { [key: string]: any } = {};
|
|
|
|
export function activate(extensionContext: vscode.ExtensionContext) {
|
|
IconPath.setExtensionContext(extensionContext);
|
|
let treeDataProvider = new ControllerTreeDataProvider(extensionContext.globalState);
|
|
registerTreeDataProvider(treeDataProvider);
|
|
registerCommands(extensionContext, treeDataProvider);
|
|
}
|
|
|
|
export function deactivate() {
|
|
}
|
|
|
|
function registerTreeDataProvider(treeDataProvider: ControllerTreeDataProvider): void {
|
|
vscode.window.registerTreeDataProvider('sqlBigDataCluster', treeDataProvider);
|
|
}
|
|
|
|
function registerCommands(context: vscode.ExtensionContext, treeDataProvider: ControllerTreeDataProvider): void {
|
|
vscode.commands.registerCommand(AddControllerCommand, (node?: TreeNode) => {
|
|
runThrottledAction(AddControllerCommand, () => addBdcController(treeDataProvider, node));
|
|
});
|
|
|
|
vscode.commands.registerCommand(DeleteControllerCommand, (node: TreeNode) => {
|
|
deleteBdcController(treeDataProvider, node);
|
|
});
|
|
|
|
vscode.commands.registerCommand(RefreshControllerCommand, (node: TreeNode) => {
|
|
if (!node) {
|
|
return;
|
|
}
|
|
treeDataProvider.notifyNodeChanged(node);
|
|
});
|
|
|
|
vscode.commands.registerCommand(ManageControllerCommand, async (node: ControllerNode) => {
|
|
const title: string = `${localize('bdc.dashboard.title', "Big Data Cluster Dashboard -")} ${ControllerNode.toIpAndPort(node.url)} ${localize('bdc.dash', "-")} ${node.clusterName}`;
|
|
const dashboard: BdcDashboard = new BdcDashboard(title, new BdcDashboardModel(node.clusterName, node.url, node.username, node.password));
|
|
dashboard.showDashboard();
|
|
});
|
|
}
|
|
|
|
function addBdcController(treeDataProvider: ControllerTreeDataProvider, node?: TreeNode): void {
|
|
let model = new AddControllerDialogModel(treeDataProvider, node);
|
|
let dialog = new AddControllerDialog(model);
|
|
dialog.showDialog();
|
|
}
|
|
|
|
async function deleteBdcController(treeDataProvider: ControllerTreeDataProvider, node: TreeNode): Promise<boolean> {
|
|
if (!node && !(node instanceof ControllerNode)) {
|
|
return;
|
|
}
|
|
|
|
let controllerNode = node as ControllerNode;
|
|
|
|
let choices: { [id: string]: boolean } = {};
|
|
choices[localize('textYes', 'Yes')] = true;
|
|
choices[localize('textNo', 'No')] = false;
|
|
|
|
let options = {
|
|
ignoreFocusOut: false,
|
|
placeHolder: localize('textConfirmDeleteController', 'Are you sure you want to delete \'{0}\'?', controllerNode.label)
|
|
};
|
|
|
|
let result = await vscode.window.showQuickPick(Object.keys(choices), options);
|
|
let remove: boolean = !!(result && choices[result]);
|
|
if (remove) {
|
|
deleteControllerInternal(treeDataProvider, controllerNode);
|
|
}
|
|
return remove;
|
|
}
|
|
|
|
function deleteControllerInternal(treeDataProvider: ControllerTreeDataProvider, controllerNode: ControllerNode): void {
|
|
let deleted = treeDataProvider.deleteController(controllerNode.url, controllerNode.username);
|
|
if (deleted) {
|
|
treeDataProvider.saveControllers();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Throttles actions to avoid bug where on clicking in tree, action gets called twice
|
|
* instead of once. Any right-click action is safe, just the default on-click action in a tree
|
|
*/
|
|
function runThrottledAction(id: string, action: () => void) {
|
|
let timer = throttleTimers[id];
|
|
if (!timer) {
|
|
throttleTimers[id] = timer = setTimeout(() => {
|
|
action();
|
|
clearTimeout(timer);
|
|
throttleTimers[id] = undefined;
|
|
}, 150);
|
|
}
|
|
// else ignore this as we got an identical action in the last 150ms
|
|
}
|