mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-24 01:25:37 -05:00
Fixes #5231 - Add stdin handling. Has to be at UI level so add plumb through handling - Add unit tests - Add new StdIn component. Testing: Unit Tests and manual testing of following: - Prompt for password using `getpass` in python. - Password prompt is hidden since "password" is true. - Hit enter, it completes - prompt, stop cell running, StdIn disappears - prompt, hit escape, stdIn disappears and stdIn request is handled. Issues: focus isn't always set to the input even though we call focus. Will investigate this further.
57 lines
2.1 KiB
TypeScript
57 lines
2.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 'vs/css!./code';
|
|
import 'vs/css!./outputArea';
|
|
import { OnInit, Component, Input, Inject, ElementRef, ViewChild, forwardRef, ChangeDetectorRef } from '@angular/core';
|
|
import { AngularDisposable } from 'sql/base/node/lifecycle';
|
|
import { ICellModel } from 'sql/workbench/parts/notebook/models/modelInterfaces';
|
|
import * as themeColors from 'vs/workbench/common/theme';
|
|
import { IWorkbenchThemeService, IColorTheme } from 'vs/workbench/services/themes/common/workbenchThemeService';
|
|
|
|
export const OUTPUT_AREA_SELECTOR: string = 'output-area-component';
|
|
|
|
@Component({
|
|
selector: OUTPUT_AREA_SELECTOR,
|
|
templateUrl: decodeURI(require.toUrl('./outputArea.component.html'))
|
|
})
|
|
export class OutputAreaComponent extends AngularDisposable implements OnInit {
|
|
@ViewChild('outputarea', { read: ElementRef }) private outputArea: ElementRef;
|
|
@Input() cellModel: ICellModel;
|
|
|
|
private _activeCellId: string;
|
|
|
|
constructor(
|
|
@Inject(IWorkbenchThemeService) private themeService: IWorkbenchThemeService,
|
|
@Inject(forwardRef(() => ChangeDetectorRef)) private _changeRef: ChangeDetectorRef
|
|
) {
|
|
super();
|
|
}
|
|
|
|
ngOnInit() {
|
|
this._register(this.themeService.onDidColorThemeChange(this.updateTheme, this));
|
|
this.updateTheme(this.themeService.getColorTheme());
|
|
if (this.cellModel) {
|
|
this._register(this.cellModel.onOutputsChanged(() => {
|
|
if (!(this._changeRef['destroyed'])) {
|
|
this._changeRef.detectChanges();
|
|
}
|
|
}));
|
|
}
|
|
}
|
|
|
|
@Input() set activeCellId(value: string) {
|
|
this._activeCellId = value;
|
|
}
|
|
|
|
get activeCellId(): string {
|
|
return this._activeCellId;
|
|
}
|
|
|
|
private updateTheme(theme: IColorTheme): void {
|
|
let outputElement = <HTMLElement>this.outputArea.nativeElement;
|
|
outputElement.style.borderTopColor = theme.getColor(themeColors.SIDE_BAR_BACKGROUND, true).toString();
|
|
}
|
|
}
|