mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-25 06:10:30 -04:00
* Initial VS Code 1.21 file copy with patches * A few more merges * Post npm install * Fix batch of build breaks * Fix more build breaks * Fix more build errors * Fix more build breaks * Runtime fixes 1 * Get connection dialog working with some todos * Fix a few packaging issues * Copy several node_modules to package build to fix loader issues * Fix breaks from master * A few more fixes * Make tests pass * First pass of license header updates * Second pass of license header updates * Fix restore dialog issues * Remove add additional themes menu items * fix select box issues where the list doesn't show up * formatting * Fix editor dispose issue * Copy over node modules to correct location on all platforms
219 lines
8.2 KiB
TypeScript
219 lines
8.2 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as nls from 'vs/nls';
|
|
import * as lifecycle from 'vs/base/common/lifecycle';
|
|
import * as errors from 'vs/base/common/errors';
|
|
import { IAction, IActionRunner } from 'vs/base/common/actions';
|
|
import { KeyCode } from 'vs/base/common/keyCodes';
|
|
import * as dom from 'vs/base/browser/dom';
|
|
import { StandardKeyboardEvent } from 'vs/base/browser/keyboardEvent';
|
|
import { SelectBox } from 'vs/base/browser/ui/selectBox/selectBox';
|
|
import { SelectActionItem, IActionItem } from 'vs/base/browser/ui/actionbar/actionbar';
|
|
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
|
|
import { ICommandService } from 'vs/platform/commands/common/commands';
|
|
import { IDebugService } from 'vs/workbench/parts/debug/common/debug';
|
|
import { IThemeService } from 'vs/platform/theme/common/themeService';
|
|
import { attachSelectBoxStyler, attachStylerCallback } from 'vs/platform/theme/common/styler';
|
|
import { SIDE_BAR_BACKGROUND } from 'vs/workbench/common/theme';
|
|
import { selectBorder } from 'vs/platform/theme/common/colorRegistry';
|
|
import { IContextViewService } from 'vs/platform/contextview/browser/contextView';
|
|
import { IWorkspaceContextService, WorkbenchState } from 'vs/platform/workspace/common/workspace';
|
|
|
|
const $ = dom.$;
|
|
|
|
export class StartDebugActionItem implements IActionItem {
|
|
|
|
private static readonly SEPARATOR = '─────────';
|
|
|
|
public actionRunner: IActionRunner;
|
|
private container: HTMLElement;
|
|
private start: HTMLElement;
|
|
private selectBox: SelectBox;
|
|
private options: { label: string, handler: (() => boolean) }[];
|
|
private toDispose: lifecycle.IDisposable[];
|
|
private selected: number;
|
|
|
|
constructor(
|
|
private context: any,
|
|
private action: IAction,
|
|
@IDebugService private debugService: IDebugService,
|
|
@IThemeService private themeService: IThemeService,
|
|
@IConfigurationService private configurationService: IConfigurationService,
|
|
@ICommandService private commandService: ICommandService,
|
|
@IWorkspaceContextService private contextService: IWorkspaceContextService,
|
|
@IContextViewService contextViewService: IContextViewService,
|
|
) {
|
|
this.toDispose = [];
|
|
this.selectBox = new SelectBox([], -1, contextViewService);
|
|
this.toDispose.push(attachSelectBoxStyler(this.selectBox, themeService, {
|
|
selectBackground: SIDE_BAR_BACKGROUND
|
|
}));
|
|
|
|
this.registerListeners();
|
|
}
|
|
|
|
private registerListeners(): void {
|
|
this.toDispose.push(this.configurationService.onDidChangeConfiguration(e => {
|
|
if (e.affectsConfiguration('launch')) {
|
|
this.updateOptions();
|
|
}
|
|
}));
|
|
this.toDispose.push(this.selectBox.onDidSelect(e => {
|
|
if (this.options[e.index].handler()) {
|
|
this.selected = e.index;
|
|
} else {
|
|
// Some select options should not remain selected https://github.com/Microsoft/vscode/issues/31526
|
|
this.selectBox.select(this.selected);
|
|
}
|
|
}));
|
|
this.toDispose.push(this.debugService.getConfigurationManager().onDidSelectConfiguration(() => {
|
|
this.updateOptions();
|
|
}));
|
|
}
|
|
|
|
public render(container: HTMLElement): void {
|
|
this.container = container;
|
|
dom.addClass(container, 'start-debug-action-item');
|
|
this.start = dom.append(container, $('.icon'));
|
|
this.start.title = this.action.label;
|
|
this.start.tabIndex = 0;
|
|
|
|
this.toDispose.push(dom.addDisposableListener(this.start, dom.EventType.CLICK, () => {
|
|
this.start.blur();
|
|
this.actionRunner.run(this.action, this.context).done(null, errors.onUnexpectedError);
|
|
}));
|
|
|
|
this.toDispose.push(dom.addDisposableListener(this.start, dom.EventType.MOUSE_DOWN, (e: MouseEvent) => {
|
|
if (this.action.enabled && e.button === 0) {
|
|
dom.addClass(this.start, 'active');
|
|
}
|
|
}));
|
|
this.toDispose.push(dom.addDisposableListener(this.start, dom.EventType.MOUSE_UP, () => {
|
|
dom.removeClass(this.start, 'active');
|
|
}));
|
|
this.toDispose.push(dom.addDisposableListener(this.start, dom.EventType.MOUSE_OUT, () => {
|
|
dom.removeClass(this.start, 'active');
|
|
}));
|
|
|
|
this.toDispose.push(dom.addDisposableListener(this.start, dom.EventType.KEY_DOWN, (e: KeyboardEvent) => {
|
|
const event = new StandardKeyboardEvent(e);
|
|
if (event.equals(KeyCode.Enter)) {
|
|
this.actionRunner.run(this.action, this.context).done(null, errors.onUnexpectedError);
|
|
}
|
|
if (event.equals(KeyCode.RightArrow)) {
|
|
this.selectBox.focus();
|
|
event.stopPropagation();
|
|
}
|
|
}));
|
|
|
|
const selectBoxContainer = $('.configuration');
|
|
this.selectBox.render(dom.append(container, selectBoxContainer));
|
|
this.toDispose.push(dom.addDisposableListener(selectBoxContainer, dom.EventType.KEY_DOWN, (e: KeyboardEvent) => {
|
|
const event = new StandardKeyboardEvent(e);
|
|
if (event.equals(KeyCode.LeftArrow)) {
|
|
this.start.focus();
|
|
event.stopPropagation();
|
|
}
|
|
}));
|
|
this.toDispose.push(attachStylerCallback(this.themeService, { selectBorder }, colors => {
|
|
this.container.style.border = colors.selectBorder ? `1px solid ${colors.selectBorder}` : null;
|
|
selectBoxContainer.style.borderLeft = colors.selectBorder ? `1px solid ${colors.selectBorder}` : null;
|
|
}));
|
|
|
|
this.updateOptions();
|
|
}
|
|
|
|
public setActionContext(context: any): void {
|
|
this.context = context;
|
|
}
|
|
|
|
public isEnabled(): boolean {
|
|
return true;
|
|
}
|
|
|
|
public focus(fromRight?: boolean): void {
|
|
if (fromRight) {
|
|
this.selectBox.focus();
|
|
} else {
|
|
this.start.focus();
|
|
}
|
|
}
|
|
|
|
public blur(): void {
|
|
this.container.blur();
|
|
}
|
|
|
|
public dispose(): void {
|
|
this.toDispose = lifecycle.dispose(this.toDispose);
|
|
}
|
|
|
|
private updateOptions(): void {
|
|
this.selected = 0;
|
|
this.options = [];
|
|
const manager = this.debugService.getConfigurationManager();
|
|
const launches = manager.getLaunches();
|
|
const inWorkspace = this.contextService.getWorkbenchState() === WorkbenchState.WORKSPACE;
|
|
launches.forEach(launch =>
|
|
launch.getConfigurationNames().forEach(name => {
|
|
if (name === manager.selectedConfiguration.name && launch === manager.selectedConfiguration.launch) {
|
|
this.selected = this.options.length;
|
|
}
|
|
const label = inWorkspace ? `${name} (${launch.name})` : name;
|
|
this.options.push({ label, handler: () => { manager.selectConfiguration(launch, name); return true; } });
|
|
}));
|
|
|
|
if (this.options.length === 0) {
|
|
this.options.push({ label: nls.localize('noConfigurations', "No Configurations"), handler: () => false });
|
|
}
|
|
this.options.push({ label: StartDebugActionItem.SEPARATOR, handler: undefined });
|
|
|
|
const disabledIdx = this.options.length - 1;
|
|
launches.filter(l => !l.hidden).forEach(l => {
|
|
const label = inWorkspace ? nls.localize("addConfigTo", "Add Config ({0})...", l.name) : nls.localize('addConfiguration', "Add Configuration...");
|
|
this.options.push({
|
|
label, handler: () => {
|
|
this.commandService.executeCommand('debug.addConfiguration', l.uri.toString()).done(undefined, errors.onUnexpectedError);
|
|
return false;
|
|
}
|
|
});
|
|
});
|
|
|
|
this.selectBox.setOptions(this.options.map(data => data.label), this.selected, disabledIdx);
|
|
}
|
|
}
|
|
|
|
export class FocusProcessActionItem extends SelectActionItem {
|
|
constructor(
|
|
action: IAction,
|
|
@IDebugService private debugService: IDebugService,
|
|
@IThemeService themeService: IThemeService,
|
|
@IContextViewService contextViewService: IContextViewService
|
|
) {
|
|
super(null, action, [], -1, contextViewService);
|
|
|
|
this.toDispose.push(attachSelectBoxStyler(this.selectBox, themeService));
|
|
|
|
this.debugService.getViewModel().onDidFocusStackFrame(() => {
|
|
const process = this.debugService.getViewModel().focusedProcess;
|
|
if (process) {
|
|
const index = this.debugService.getModel().getProcesses().indexOf(process);
|
|
this.select(index);
|
|
}
|
|
});
|
|
|
|
this.debugService.getModel().onDidChangeCallStack(() => this.update());
|
|
this.update();
|
|
}
|
|
|
|
private update() {
|
|
const process = this.debugService.getViewModel().focusedProcess;
|
|
const processes = this.debugService.getModel().getProcesses();
|
|
const showRootName = this.debugService.getConfigurationManager().getLaunches().length > 1;
|
|
const names = processes.map(p => p.getName(showRootName));
|
|
this.setOptions(names, process ? processes.indexOf(process) : undefined);
|
|
}
|
|
}
|