mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-24 09:35:37 -05:00
* Fixed #3954 The problem is: connectionProfileId is not passed into New Notebook flow. The fix is: plumbing connectionProfileId via NotebookInput. * Resolved PR comments
559 lines
22 KiB
TypeScript
559 lines
22 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 { OnInit, Component, Inject, forwardRef, ElementRef, ChangeDetectorRef, ViewChild, OnDestroy } from '@angular/core';
|
|
|
|
import { IColorTheme, IWorkbenchThemeService } from 'vs/workbench/services/themes/common/workbenchThemeService';
|
|
import * as themeColors from 'vs/workbench/common/theme';
|
|
import { INotificationService, INotification, Severity } from 'vs/platform/notification/common/notification';
|
|
import { localize } from 'vs/nls';
|
|
import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
|
|
import { IContextMenuService, IContextViewService } from 'vs/platform/contextview/browser/contextView';
|
|
import { IEditorService } from 'vs/workbench/services/editor/common/editorService';
|
|
import { attachSelectBoxStyler } from 'vs/platform/theme/common/styler';
|
|
import { MenuId, IMenuService, MenuItemAction } from 'vs/platform/actions/common/actions';
|
|
import { IAction, Action, IActionItem } from 'vs/base/common/actions';
|
|
import { IContextKeyService, RawContextKey } from 'vs/platform/contextkey/common/contextkey';
|
|
import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding';
|
|
import { fillInActions, LabeledMenuItemActionItem } from 'vs/platform/actions/browser/menuItemActionItem';
|
|
import { Schemas } from 'vs/base/common/network';
|
|
import URI from 'vs/base/common/uri';
|
|
import { IHistoryService } from 'vs/workbench/services/history/common/history';
|
|
import * as paths from 'vs/base/common/paths';
|
|
import { IWindowService } from 'vs/platform/windows/common/windows';
|
|
import { TPromise } from 'vs/base/common/winjs.base';
|
|
import { IViewletService } from 'vs/workbench/services/viewlet/browser/viewlet';
|
|
import { VIEWLET_ID, IExtensionsViewlet } from 'vs/workbench/parts/extensions/common/extensions';
|
|
|
|
import { CommonServiceInterface } from 'sql/services/common/commonServiceInterface.service';
|
|
import { AngularDisposable } from 'sql/base/node/lifecycle';
|
|
import { CellTypes, CellType } from 'sql/parts/notebook/models/contracts';
|
|
import { ICellModel, IModelFactory, notebookConstants, INotebookModel, NotebookContentChange } from 'sql/parts/notebook/models/modelInterfaces';
|
|
import { IConnectionManagementService, IConnectionDialogService } from 'sql/platform/connection/common/connectionManagement';
|
|
import { INotebookService, INotebookParams, INotebookManager, INotebookEditor, DEFAULT_NOTEBOOK_FILETYPE, DEFAULT_NOTEBOOK_PROVIDER, SQL_NOTEBOOK_PROVIDER } from 'sql/workbench/services/notebook/common/notebookService';
|
|
import { IBootstrapParams } from 'sql/services/bootstrap/bootstrapService';
|
|
import { NotebookModel } from 'sql/parts/notebook/models/notebookModel';
|
|
import { ModelFactory } from 'sql/parts/notebook/models/modelFactory';
|
|
import * as notebookUtils from 'sql/parts/notebook/notebookUtils';
|
|
import { Deferred } from 'sql/base/common/promise';
|
|
import { IConnectionProfile } from 'sql/platform/connection/common/interfaces';
|
|
import { Taskbar } from 'sql/base/browser/ui/taskbar/taskbar';
|
|
import { KernelsDropdown, AttachToDropdown, AddCellAction, TrustedAction, SaveNotebookAction } from 'sql/parts/notebook/notebookActions';
|
|
import { IObjectExplorerService } from 'sql/parts/objectExplorer/common/objectExplorerService';
|
|
import * as TaskUtilities from 'sql/workbench/common/taskUtilities';
|
|
import { ISingleNotebookEditOperation } from 'sql/workbench/api/common/sqlExtHostTypes';
|
|
import { IResourceInput } from 'vs/platform/editor/common/editor';
|
|
import { IUntitledEditorService } from 'vs/workbench/services/untitled/common/untitledEditorService';
|
|
import { IEditorGroupsService } from 'vs/workbench/services/group/common/editorGroupsService';
|
|
import { ICapabilitiesService } from 'sql/platform/capabilities/common/capabilitiesService';
|
|
|
|
export const NOTEBOOK_SELECTOR: string = 'notebook-component';
|
|
|
|
|
|
@Component({
|
|
selector: NOTEBOOK_SELECTOR,
|
|
templateUrl: decodeURI(require.toUrl('./notebook.component.html'))
|
|
})
|
|
export class NotebookComponent extends AngularDisposable implements OnInit, OnDestroy, INotebookEditor {
|
|
@ViewChild('toolbar', { read: ElementRef }) private toolbar: ElementRef;
|
|
private _model: NotebookModel;
|
|
private _isInErrorState: boolean = false;
|
|
private _errorMessage: string;
|
|
protected _actionBar: Taskbar;
|
|
protected isLoading: boolean;
|
|
private notebookManagers: INotebookManager[] = [];
|
|
private _modelReadyDeferred = new Deferred<NotebookModel>();
|
|
private _modelRegisteredDeferred = new Deferred<NotebookModel>();
|
|
private profile: IConnectionProfile;
|
|
private _trustedAction: TrustedAction;
|
|
private _providerRelatedActions: IAction[] = [];
|
|
|
|
|
|
constructor(
|
|
@Inject(forwardRef(() => CommonServiceInterface)) private _bootstrapService: CommonServiceInterface,
|
|
@Inject(forwardRef(() => ChangeDetectorRef)) private _changeRef: ChangeDetectorRef,
|
|
@Inject(IWorkbenchThemeService) private themeService: IWorkbenchThemeService,
|
|
@Inject(IConnectionManagementService) private connectionManagementService: IConnectionManagementService,
|
|
@Inject(IObjectExplorerService) private objectExplorerService: IObjectExplorerService,
|
|
@Inject(IEditorService) private editorService: IEditorService,
|
|
@Inject(INotificationService) private notificationService: INotificationService,
|
|
@Inject(INotebookService) private notebookService: INotebookService,
|
|
@Inject(IBootstrapParams) private _notebookParams: INotebookParams,
|
|
@Inject(IInstantiationService) private instantiationService: IInstantiationService,
|
|
@Inject(IContextMenuService) private contextMenuService: IContextMenuService,
|
|
@Inject(IContextViewService) private contextViewService: IContextViewService,
|
|
@Inject(IConnectionDialogService) private connectionDialogService: IConnectionDialogService,
|
|
@Inject(IContextKeyService) private contextKeyService: IContextKeyService,
|
|
@Inject(IMenuService) private menuService: IMenuService,
|
|
@Inject(IKeybindingService) private keybindingService: IKeybindingService,
|
|
@Inject(IHistoryService) private historyService: IHistoryService,
|
|
@Inject(IWindowService) private windowService: IWindowService,
|
|
@Inject(IViewletService) private viewletService: IViewletService,
|
|
@Inject(IUntitledEditorService) private untitledEditorService: IUntitledEditorService,
|
|
@Inject(IEditorGroupsService) private editorGroupService: IEditorGroupsService,
|
|
@Inject(ICapabilitiesService) private capabilitiesService: ICapabilitiesService
|
|
) {
|
|
super();
|
|
this.updateProfile();
|
|
this.isLoading = true;
|
|
}
|
|
|
|
private updateProfile(): void {
|
|
this.profile = this.notebookParams ? this.notebookParams.profile : undefined;
|
|
let profile: IConnectionProfile;
|
|
if (!this.profile) {
|
|
// Use connectionProfile passed in first
|
|
if (this._notebookParams.connectionProfileId !== undefined && this._notebookParams.connectionProfileId) {
|
|
profile = this.connectionManagementService.getConnectionProfileById(this._notebookParams.connectionProfileId);
|
|
} else {
|
|
// Second use global connection if possible
|
|
profile = TaskUtilities.getCurrentGlobalConnection(this.objectExplorerService, this.connectionManagementService, this.editorService);
|
|
}
|
|
// TODO use generic method to match kernel with valid connection that's compatible. For now, we only have 1
|
|
if (profile && profile.providerName) {
|
|
this.profile = profile;
|
|
} else {
|
|
// if not, try 1st active connection that matches our filter
|
|
let profiles = this.connectionManagementService.getActiveConnections();
|
|
if (profiles && profiles.length > 0) {
|
|
this.profile = profiles[0];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
ngOnInit() {
|
|
this._register(this.themeService.onDidColorThemeChange(this.updateTheme, this));
|
|
this.updateTheme(this.themeService.getColorTheme());
|
|
this.initActionBar();
|
|
this.doLoad();
|
|
}
|
|
|
|
ngOnDestroy() {
|
|
this.dispose();
|
|
if (this.notebookService) {
|
|
this.notebookService.removeNotebookEditor(this);
|
|
}
|
|
}
|
|
|
|
public get model(): NotebookModel | null {
|
|
return this._model;
|
|
}
|
|
|
|
public get activeCellId(): string {
|
|
return this._model && this._model.activeCell ? this._model.activeCell.id : '';
|
|
}
|
|
|
|
public get modelRegistered(): Promise<NotebookModel> {
|
|
return this._modelRegisteredDeferred.promise;
|
|
}
|
|
|
|
public get cells(): ICellModel[] {
|
|
return this._model ? this._model.cells : [];
|
|
}
|
|
|
|
private updateTheme(theme: IColorTheme): void {
|
|
let toolbarEl = <HTMLElement>this.toolbar.nativeElement;
|
|
toolbarEl.style.borderBottomColor = theme.getColor(themeColors.SIDE_BAR_BACKGROUND, true).toString();
|
|
}
|
|
|
|
public selectCell(cell: ICellModel, event?: Event) {
|
|
if (event) {
|
|
event.stopPropagation();
|
|
}
|
|
if (cell !== this.model.activeCell) {
|
|
if (this.model.activeCell) {
|
|
this.model.activeCell.active = false;
|
|
}
|
|
this._model.activeCell = cell;
|
|
this._model.activeCell.active = true;
|
|
this._changeRef.detectChanges();
|
|
}
|
|
}
|
|
|
|
public unselectActiveCell() {
|
|
if (this.model && this.model.activeCell) {
|
|
this.model.activeCell.active = false;
|
|
this.model.activeCell = undefined;
|
|
}
|
|
this._changeRef.detectChanges();
|
|
}
|
|
|
|
// Add cell based on cell type
|
|
public addCell(cellType: CellType) {
|
|
this._model.addCell(cellType);
|
|
}
|
|
|
|
// Updates Notebook model's trust details
|
|
public updateModelTrustDetails(isTrusted: boolean) {
|
|
this._model.trustedMode = isTrusted;
|
|
this._model.cells.forEach(cell => {
|
|
cell.trustedMode = isTrusted;
|
|
});
|
|
this.setDirty(true);
|
|
this._changeRef.detectChanges();
|
|
}
|
|
|
|
public onKeyDown(event) {
|
|
switch (event.key) {
|
|
case 'ArrowDown':
|
|
case 'ArrowRight':
|
|
let nextIndex = (this.findCellIndex(this.model.activeCell) + 1) % this.cells.length;
|
|
this.selectCell(this.cells[nextIndex]);
|
|
break;
|
|
case 'ArrowUp':
|
|
case 'ArrowLeft':
|
|
let index = this.findCellIndex(this.model.activeCell);
|
|
if (index === 0) {
|
|
index = this.cells.length;
|
|
}
|
|
this.selectCell(this.cells[--index]);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
private async doLoad(): Promise<void> {
|
|
try {
|
|
await this.loadModel();
|
|
this.setLoading(false);
|
|
this._modelReadyDeferred.resolve(this._model);
|
|
} catch (error) {
|
|
this.setViewInErrorState(localize('displayFailed', 'Could not display contents: {0}', error));
|
|
this.setLoading(false);
|
|
this._modelReadyDeferred.reject(error);
|
|
} finally {
|
|
// Always add the editor for now to close loop, even if loading contents failed
|
|
this.notebookService.addNotebookEditor(this);
|
|
}
|
|
}
|
|
|
|
private setLoading(isLoading: boolean): void {
|
|
this.isLoading = isLoading;
|
|
this._changeRef.detectChanges();
|
|
}
|
|
|
|
private async loadModel(): Promise<void> {
|
|
await this.awaitNonDefaultProvider();
|
|
let providerId = notebookUtils.sqlNotebooksEnabled(this.contextKeyService) ? 'sql' : this._notebookParams.providers.find(provider => provider !== DEFAULT_NOTEBOOK_PROVIDER); // this is tricky; really should also depend on the connection profile
|
|
this.setContextKeyServiceWithProviderId(providerId);
|
|
this.fillInActionsForCurrentContext();
|
|
for (let providerId of this._notebookParams.providers) {
|
|
let notebookManager = await this.notebookService.getOrCreateNotebookManager(providerId, this._notebookParams.notebookUri);
|
|
this.notebookManagers.push(notebookManager);
|
|
}
|
|
let model = new NotebookModel({
|
|
factory: this.modelFactory,
|
|
notebookUri: this._notebookParams.notebookUri,
|
|
connectionService: this.connectionManagementService,
|
|
notificationService: this.notificationService,
|
|
notebookManagers: this.notebookManagers,
|
|
standardKernels: this._notebookParams.input.standardKernels,
|
|
providerId: notebookUtils.sqlNotebooksEnabled(this.contextKeyService) ? 'sql' : 'jupyter', // this is tricky; really should also depend on the connection profile
|
|
defaultKernel: this._notebookParams.input.defaultKernel,
|
|
layoutChanged: this._notebookParams.input.layoutChanged,
|
|
capabilitiesService: this.capabilitiesService
|
|
}, false, this.profile);
|
|
model.onError((errInfo: INotification) => this.handleModelError(errInfo));
|
|
await model.requestModelLoad(this._notebookParams.isTrusted);
|
|
model.contentChanged((change) => this.handleContentChanged(change));
|
|
model.onProviderIdChange((provider) => this.handleProviderIdChanged(provider));
|
|
this._model = this._register(model);
|
|
this.updateToolbarComponents(this._model.trustedMode);
|
|
this._modelRegisteredDeferred.resolve(this._model);
|
|
model.backgroundStartSession();
|
|
this._changeRef.detectChanges();
|
|
}
|
|
|
|
private async awaitNonDefaultProvider(): Promise<void> {
|
|
// Wait on registration for now. Long-term would be good to cache and refresh
|
|
await this.notebookService.registrationComplete;
|
|
// Refresh the provider if we had been using default
|
|
if (DEFAULT_NOTEBOOK_PROVIDER === this._notebookParams.providerId) {
|
|
let providers = notebookUtils.getProvidersForFileName(this._notebookParams.notebookUri.fsPath, this.notebookService);
|
|
let tsqlProvider = providers.find(provider => provider === SQL_NOTEBOOK_PROVIDER);
|
|
this._notebookParams.providerId = tsqlProvider ? SQL_NOTEBOOK_PROVIDER : providers[0];
|
|
}
|
|
if (DEFAULT_NOTEBOOK_PROVIDER === this._notebookParams.providerId) {
|
|
// If it's still the default, warn them they should install an extension
|
|
this.notificationService.prompt(Severity.Warning,
|
|
localize('noKernelInstalled', 'Please install the SQL Server 2019 extension to run cells'),
|
|
[{
|
|
label: localize('installSql2019Extension', 'Install Extension'),
|
|
run: () => this.openExtensionGallery()
|
|
}]);
|
|
}
|
|
}
|
|
|
|
private async openExtensionGallery(): Promise<void> {
|
|
try {
|
|
let viewlet = await this.viewletService.openViewlet(VIEWLET_ID, true) as IExtensionsViewlet;
|
|
viewlet.search('sql-vnext');
|
|
viewlet.focus();
|
|
} catch (error) {
|
|
this.notificationService.error(error.message);
|
|
}
|
|
}
|
|
|
|
// Updates toolbar components
|
|
private updateToolbarComponents(isTrusted: boolean) {
|
|
if (this._trustedAction) {
|
|
this._trustedAction.enabled = true;
|
|
this._trustedAction.trusted = isTrusted;
|
|
}
|
|
}
|
|
|
|
private get modelFactory(): IModelFactory {
|
|
if (!this._notebookParams.modelFactory) {
|
|
this._notebookParams.modelFactory = new ModelFactory();
|
|
}
|
|
return this._notebookParams.modelFactory;
|
|
}
|
|
private handleModelError(notification: INotification): void {
|
|
this.notificationService.notify(notification);
|
|
}
|
|
|
|
private handleContentChanged(change: NotebookContentChange) {
|
|
// Note: for now we just need to set dirty state and refresh the UI.
|
|
this.setDirty(true);
|
|
this._changeRef.detectChanges();
|
|
}
|
|
|
|
private handleProviderIdChanged(providerId: string) {
|
|
// If there are any actions that were related to the previous provider,
|
|
// disable them in the actionBar
|
|
this._providerRelatedActions.forEach(action => {
|
|
action.enabled = false;
|
|
});
|
|
this.setContextKeyServiceWithProviderId(providerId);
|
|
this.fillInActionsForCurrentContext();
|
|
}
|
|
|
|
findCellIndex(cellModel: ICellModel): number {
|
|
return this._model.cells.findIndex((cell) => cell.id === cellModel.id);
|
|
}
|
|
|
|
private setViewInErrorState(error: any): any {
|
|
this._isInErrorState = true;
|
|
this._errorMessage = notebookUtils.getErrorMessage(error);
|
|
// For now, send message as error notification #870 covers having dedicated area for this
|
|
this.notificationService.error(error);
|
|
}
|
|
|
|
protected initActionBar() {
|
|
let kernelContainer = document.createElement('div');
|
|
let kernelDropdown = new KernelsDropdown(kernelContainer, this.contextViewService, this.modelRegistered);
|
|
kernelDropdown.render(kernelContainer);
|
|
attachSelectBoxStyler(kernelDropdown, this.themeService);
|
|
|
|
let attachToContainer = document.createElement('div');
|
|
let attachToDropdown = new AttachToDropdown(attachToContainer, this.contextViewService, this.modelRegistered,
|
|
this.connectionManagementService, this.connectionDialogService, this.notificationService, this.capabilitiesService);
|
|
attachToDropdown.render(attachToContainer);
|
|
attachSelectBoxStyler(attachToDropdown, this.themeService);
|
|
|
|
let addCodeCellButton = new AddCellAction('notebook.AddCodeCell', localize('code', 'Code'), 'notebook-button icon-add');
|
|
addCodeCellButton.cellType = CellTypes.Code;
|
|
|
|
let addTextCellButton = new AddCellAction('notebook.AddTextCell', localize('text', 'Text'), 'notebook-button icon-add');
|
|
addTextCellButton.cellType = CellTypes.Markdown;
|
|
|
|
this._trustedAction = this.instantiationService.createInstance(TrustedAction, 'notebook.Trusted');
|
|
this._trustedAction.enabled = false;
|
|
|
|
let saveNotebookButton = this.instantiationService.createInstance(SaveNotebookAction, 'notebook.SaveNotebook', localize('save', 'Save'), 'notebook-button icon-save');
|
|
|
|
let taskbar = <HTMLElement>this.toolbar.nativeElement;
|
|
this._actionBar = new Taskbar(taskbar, this.contextMenuService, { actionItemProvider: action => this.actionItemProvider(action as Action) });
|
|
this._actionBar.context = this;
|
|
this._actionBar.setContent([
|
|
{ element: kernelContainer },
|
|
{ element: attachToContainer },
|
|
{ action: addCodeCellButton },
|
|
{ action: addTextCellButton },
|
|
{ action: saveNotebookButton },
|
|
{ action: this._trustedAction }
|
|
]);
|
|
|
|
}
|
|
|
|
// Gets file path from recent workspace in local
|
|
private getLastActiveFilePath(untitledResource: URI): string {
|
|
let fileName = untitledResource.path + '.' + DEFAULT_NOTEBOOK_FILETYPE.toLocaleLowerCase();
|
|
|
|
let lastActiveFile = this.historyService.getLastActiveFile();
|
|
if (lastActiveFile) {
|
|
return URI.file(paths.join(paths.dirname(lastActiveFile.fsPath), fileName)).fsPath;
|
|
}
|
|
|
|
let lastActiveFolder = this.historyService.getLastActiveWorkspaceRoot('file');
|
|
if (lastActiveFolder) {
|
|
return URI.file(paths.join(lastActiveFolder.fsPath, fileName)).fsPath;
|
|
}
|
|
return fileName;
|
|
}
|
|
|
|
promptForPath(defaultPath: string): TPromise<string> {
|
|
return this.windowService.showSaveDialog({
|
|
defaultPath: defaultPath,
|
|
filters: [{ name: localize('notebookFile', 'Notebook'), extensions: ['ipynb'] }]
|
|
});
|
|
}
|
|
|
|
// Entry point to save notebook
|
|
public async save(): Promise<boolean> {
|
|
let self = this;
|
|
let notebookUri = this.notebookParams.notebookUri;
|
|
if (notebookUri.scheme === Schemas.untitled) {
|
|
let dialogPath = this.getLastActiveFilePath(notebookUri);
|
|
return this.promptForPath(dialogPath).then(path => {
|
|
if (path) {
|
|
let target = URI.file(path);
|
|
let resource = self._model.notebookUri;
|
|
self._model.notebookUri = target;
|
|
this.saveNotebook().then(result => {
|
|
if (result) {
|
|
return this.replaceUntitledNotebookEditor(resource, target);
|
|
}
|
|
return result;
|
|
});
|
|
}
|
|
return false; // User clicks cancel
|
|
});
|
|
}
|
|
else {
|
|
return await this.saveNotebook();
|
|
}
|
|
}
|
|
|
|
// Replaces untitled notebook editor with the saved file name
|
|
private async replaceUntitledNotebookEditor(resource: URI, target: URI): Promise<boolean> {
|
|
let encodingOfSource = this.untitledEditorService.getEncoding(resource);
|
|
const replacement: IResourceInput = {
|
|
resource: target,
|
|
encoding: encodingOfSource,
|
|
options: {
|
|
pinned: true
|
|
}
|
|
};
|
|
|
|
return TPromise.join(this.editorGroupService.groups.map(g =>
|
|
this.editorService.replaceEditors([{
|
|
editor: { resource },
|
|
replacement
|
|
}], g))).then(() => {
|
|
this.notebookService.renameNotebookEditor(resource, target, this);
|
|
return true;
|
|
});
|
|
}
|
|
|
|
private async saveNotebook(): Promise<boolean> {
|
|
try {
|
|
let saved = await this._model.saveModel();
|
|
if (saved) {
|
|
this.setDirty(false);
|
|
}
|
|
return saved;
|
|
} catch (err) {
|
|
this.notificationService.error(localize('saveFailed', 'Failed to save notebook: {0}', notebookUtils.getErrorMessage(err)));
|
|
return false;
|
|
}
|
|
}
|
|
|
|
private setDirty(isDirty: boolean): void {
|
|
if (this._notebookParams.input) {
|
|
this._notebookParams.input.setDirty(isDirty);
|
|
}
|
|
}
|
|
|
|
private actionItemProvider(action: Action): IActionItem {
|
|
// Check extensions to create ActionItem; otherwise, return undefined
|
|
// This is similar behavior that exists in MenuItemActionItem
|
|
if (action instanceof MenuItemAction) {
|
|
return new LabeledMenuItemActionItem(action, this.keybindingService, this.notificationService, this.contextMenuService, 'notebook-button');
|
|
}
|
|
return undefined;
|
|
}
|
|
|
|
/**
|
|
* Get all of the menu contributions that use the ID 'notebook/toolbar'.
|
|
* Then, find all groups (currently we don't leverage the contributed
|
|
* groups functionality for the notebook toolbar), and fill in the 'primary'
|
|
* array with items that don't list a group. Finally, add any actions from
|
|
* the primary array to the end of the toolbar.
|
|
*/
|
|
private fillInActionsForCurrentContext(): void {
|
|
let primary: IAction[] = [];
|
|
let secondary: IAction[] = [];
|
|
let notebookBarMenu = this.menuService.createMenu(MenuId.NotebookToolbar, this.contextKeyService);
|
|
let groups = notebookBarMenu.getActions({ arg: null, shouldForwardArgs: true });
|
|
fillInActions(groups, { primary, secondary }, false, (group: string) => group === undefined);
|
|
this.addPrimaryContributedActions(primary);
|
|
}
|
|
|
|
private addPrimaryContributedActions(primary: IAction[]) {
|
|
for (let action of primary) {
|
|
// Need to ensure that we don't add the same action multiple times
|
|
let foundIndex = this._providerRelatedActions.findIndex(act => act.id === action.id);
|
|
if (foundIndex < 0) {
|
|
this._actionBar.addAction(action);
|
|
this._providerRelatedActions.push(action);
|
|
} else {
|
|
this._providerRelatedActions[foundIndex].enabled = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
private setContextKeyServiceWithProviderId(providerId: string) {
|
|
let provider = new RawContextKey<string>('providerId', providerId);
|
|
provider.bindTo(this.contextKeyService);
|
|
}
|
|
|
|
public get notebookParams(): INotebookParams {
|
|
return this._notebookParams;
|
|
}
|
|
|
|
public get id(): string {
|
|
return this._notebookParams.notebookUri.toString();
|
|
}
|
|
|
|
public get modelReady(): Promise<INotebookModel> {
|
|
return this._modelReadyDeferred.promise;
|
|
}
|
|
|
|
isActive(): boolean {
|
|
return this.editorService.activeEditor === this.notebookParams.input;
|
|
}
|
|
|
|
isVisible(): boolean {
|
|
let notebookEditor = this.notebookParams.input;
|
|
return this.editorService.visibleEditors.some(e => e === notebookEditor);
|
|
}
|
|
|
|
isDirty(): boolean {
|
|
return this.notebookParams.input.isDirty();
|
|
}
|
|
|
|
executeEdits(edits: ISingleNotebookEditOperation[]): boolean {
|
|
if (!edits || edits.length === 0) {
|
|
return false;
|
|
}
|
|
this._model.pushEditOperations(edits);
|
|
return true;
|
|
}
|
|
|
|
public async runCell(cell: ICellModel): Promise<boolean> {
|
|
await this.modelReady;
|
|
let uriString = cell.cellUri.toString();
|
|
if (this._model.cells.findIndex(c => c.cellUri.toString() === uriString) > -1) {
|
|
return cell.runCell(this.notificationService);
|
|
} else {
|
|
return Promise.reject<boolean>(new Error(localize('cellNotFound', 'cell with URI {0} was not found in this model', uriString)));
|
|
}
|
|
}
|
|
|
|
}
|