mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-23 17:23:02 -05:00
- Defines a new NotebookService in Azure Data Studio which will be used to interact with notebooks. Since notebooks can require per-file instantiation the provider is just used to create & track managers for a given URI. - Inject this into notebook.component.ts and pass required parameters that'll be used to properly initialize a manger into the method. Actual initialization not done yet. - Port over & recompile notebook model code - Define most required APIs in sqlops.proposed.d.ts. In the future, these will be used by extensions to contribute their own providers.
49 lines
1.9 KiB
TypeScript
49 lines
1.9 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 'vs/css!./codeCell';
|
|
|
|
import { OnInit, Component, Input, Inject, forwardRef, ElementRef, ChangeDetectorRef, OnDestroy, ViewChild } from '@angular/core';
|
|
|
|
import { CommonServiceInterface } from 'sql/services/common/commonServiceInterface.service';
|
|
import { CellView } from 'sql/parts/notebook/cellViews/interfaces';
|
|
|
|
import { IColorTheme, IWorkbenchThemeService } from 'vs/workbench/services/themes/common/workbenchThemeService';
|
|
import * as themeColors from 'vs/workbench/common/theme';
|
|
import { ICellModel } from 'sql/parts/notebook/models/modelInterfaces';
|
|
|
|
|
|
export const CODE_SELECTOR: string = 'code-cell-component';
|
|
|
|
@Component({
|
|
selector: CODE_SELECTOR,
|
|
templateUrl: decodeURI(require.toUrl('./codeCell.component.html'))
|
|
})
|
|
export class CodeCellComponent extends CellView implements OnInit {
|
|
@ViewChild('output', { read: ElementRef }) private output: ElementRef;
|
|
@Input() cellModel: ICellModel;
|
|
constructor(
|
|
@Inject(forwardRef(() => CommonServiceInterface)) private _bootstrapService: CommonServiceInterface,
|
|
@Inject(forwardRef(() => ChangeDetectorRef)) private _changeRef: ChangeDetectorRef,
|
|
@Inject(IWorkbenchThemeService) private themeService: IWorkbenchThemeService
|
|
) {
|
|
super();
|
|
}
|
|
|
|
ngOnInit() {
|
|
this._register(this.themeService.onDidColorThemeChange(this.updateTheme, this));
|
|
this.updateTheme(this.themeService.getColorTheme());
|
|
}
|
|
|
|
// Todo: implement layout
|
|
public layout() {
|
|
|
|
}
|
|
|
|
private updateTheme(theme: IColorTheme): void {
|
|
let outputElement = <HTMLElement>this.output.nativeElement;
|
|
outputElement.style.borderTopColor = theme.getColor(themeColors.SIDE_BAR_BACKGROUND, true).toString();
|
|
}
|
|
}
|