mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-21 09:35:38 -05:00
* Merge from vscode 504f934659740e9d41501cad9f162b54d7745ad9 * delete unused folders * distro * Bump build node version * update chokidar * FIx hygiene errors * distro * Fix extension lint issues * Remove strict-vscode * Add copyright header exemptions * Bump vscode-extension-telemetry to fix webpacking issue with zone.js * distro * Fix failing tests (revert marked.js back to current one until we decide to update) * Skip searchmodel test * Fix mac build * temp debug script loading * Try disabling coverage * log error too * Revert "log error too" This reverts commit af0183e5d4ab458fdf44b88fbfab9908d090526f. * Revert "temp debug script loading" This reverts commit 3d687d541c76db2c5b55626c78ae448d3c25089c. * Add comments explaining coverage disabling * Fix ansi_up loading issue * Merge latest from ads * Use newer option * Fix compile * add debug logging warn * Always log stack * log more * undo debug * Update to use correct base path (+cleanup) * distro * fix compile errors * Remove strict-vscode * Fix sql editors not showing * Show db dropdown input & fix styling * Fix more info in gallery * Fix gallery asset requests * Delete unused workflow * Fix tapable resolutions for smoke test compile error * Fix smoke compile * Disable crash reporting * Disable interactive Co-authored-by: ADS Merger <karlb@microsoft.com>
104 lines
4.1 KiB
TypeScript
104 lines
4.1 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 { Explorer } from './explorer';
|
|
import { ActivityBar } from './activityBar';
|
|
import { QuickAccess } from './quickaccess';
|
|
import { QuickInput } from './quickinput';
|
|
import { Extensions } from './extensions';
|
|
import { Search } from './search';
|
|
import { Editor } from './editor';
|
|
import { SCM } from './scm';
|
|
import { Debug } from './debug';
|
|
import { StatusBar } from './statusbar';
|
|
import { Problems } from './problems';
|
|
import { SettingsEditor } from './settings';
|
|
import { KeybindingsEditor } from './keybindings';
|
|
import { Editors } from './editors';
|
|
import { Code } from './code';
|
|
import { Terminal } from './terminal';
|
|
import { Notebook } from './notebook';
|
|
import { Localization } from './localization';
|
|
|
|
// {{SQL CARBON EDIT}}
|
|
import { ConnectionDialog } from './sql/connectionDialog';
|
|
import { Profiler } from './sql/profiler';
|
|
import { QueryEditors } from './sql/queryEditors';
|
|
import { QueryEditor } from './sql/queryEditor';
|
|
import { Notebook as SqlNotebook } from './sql/notebook';
|
|
import { ConfigurePythonDialog } from './sql/configurePythonDialog';
|
|
import { CreateBookDialog } from './sql/createBookDialog';
|
|
import { NotificationToast } from './sql/notificationToast';
|
|
import { AddRemoteBookDialog } from './sql/addRemoteBookDialog';
|
|
// {{END}}
|
|
|
|
export interface Commands {
|
|
runCommand(command: string): Promise<any>;
|
|
}
|
|
|
|
export class Workbench {
|
|
|
|
readonly quickaccess: QuickAccess;
|
|
readonly quickinput: QuickInput;
|
|
readonly editors: Editors;
|
|
readonly explorer: Explorer;
|
|
readonly activitybar: ActivityBar;
|
|
readonly search: Search;
|
|
readonly extensions: Extensions;
|
|
readonly editor: Editor;
|
|
readonly scm: SCM;
|
|
readonly debug: Debug;
|
|
readonly statusbar: StatusBar;
|
|
readonly problems: Problems;
|
|
readonly settingsEditor: SettingsEditor;
|
|
readonly keybindingsEditor: KeybindingsEditor;
|
|
readonly terminal: Terminal;
|
|
readonly notebook: Notebook;
|
|
readonly localization: Localization;
|
|
|
|
// {{SQL CARBON EDIT}}
|
|
readonly connectionDialog: ConnectionDialog;
|
|
readonly profiler: Profiler;
|
|
readonly queryEditors: QueryEditors;
|
|
readonly queryEditor: QueryEditor;
|
|
readonly sqlNotebook: SqlNotebook;
|
|
readonly createBookDialog: CreateBookDialog;
|
|
readonly configurePythonDialog: ConfigurePythonDialog;
|
|
readonly notificationToast: NotificationToast;
|
|
readonly addRemoteBookDialog: AddRemoteBookDialog;
|
|
// {{END}}
|
|
|
|
constructor(code: Code, userDataPath: string) {
|
|
this.editors = new Editors(code);
|
|
this.quickinput = new QuickInput(code);
|
|
this.quickaccess = new QuickAccess(code, this.editors, this.quickinput);
|
|
this.explorer = new Explorer(code, this.editors);
|
|
this.activitybar = new ActivityBar(code);
|
|
this.search = new Search(code);
|
|
this.extensions = new Extensions(code);
|
|
this.editor = new Editor(code, this.quickaccess);
|
|
this.scm = new SCM(code);
|
|
this.debug = new Debug(code, this.quickaccess, this.editors, this.editor);
|
|
this.statusbar = new StatusBar(code);
|
|
this.problems = new Problems(code, this.quickaccess);
|
|
this.settingsEditor = new SettingsEditor(code, userDataPath, this.editors, this.editor, this.quickaccess);
|
|
this.keybindingsEditor = new KeybindingsEditor(code);
|
|
this.terminal = new Terminal(code, this.quickaccess);
|
|
// {{SQL CARBON EDIT}}
|
|
this.notificationToast = new NotificationToast(code);
|
|
this.connectionDialog = new ConnectionDialog(code);
|
|
this.profiler = new Profiler(code, this.quickaccess);
|
|
this.queryEditors = new QueryEditors(code, this.editors);
|
|
this.queryEditor = new QueryEditor(code);
|
|
this.sqlNotebook = new SqlNotebook(code, this.quickaccess, this.quickinput, this.editors);
|
|
this.createBookDialog = new CreateBookDialog(code);
|
|
this.configurePythonDialog = new ConfigurePythonDialog(code);
|
|
this.addRemoteBookDialog = new AddRemoteBookDialog(code);
|
|
// {{END}}
|
|
this.notebook = new Notebook(this.quickaccess, code);
|
|
this.localization = new Localization(code);
|
|
}
|
|
}
|