mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-16 01:25:36 -05:00
* moving test files and inital refactoring * relayer extension host code * fix imports * make insights work * relayer dashboard * relayer notebooks * moveing more code around * formatting * accept angular as browser * fix serializer * add missing files * remove declarations from extensions * fix build errors * more relayering * change urls to relative to help code relayering * remove layering to prep for merge * fix hygiene errors * fix hygiene errors * fix tests
112 lines
3.8 KiB
TypeScript
112 lines
3.8 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!./media/modelViewEditor';
|
|
|
|
import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';
|
|
import { IThemeService } from 'vs/platform/theme/common/themeService';
|
|
import { BaseEditor } from 'vs/workbench/browser/parts/editor/baseEditor';
|
|
import { EditorOptions } from 'vs/workbench/common/editor';
|
|
import * as DOM from 'vs/base/browser/dom';
|
|
|
|
import { ModelViewInput } from 'sql/workbench/browser/modelComponents/modelViewInput';
|
|
import { CancellationToken } from 'vs/base/common/cancellation';
|
|
import { IStorageService } from 'vs/platform/storage/common/storage';
|
|
|
|
export class ModelViewEditor extends BaseEditor {
|
|
|
|
public static ID: string = 'workbench.editor.modelViewEditor';
|
|
|
|
private _editorFrame: HTMLElement;
|
|
private _content: HTMLElement;
|
|
|
|
constructor(
|
|
@ITelemetryService telemetryService: ITelemetryService,
|
|
@IThemeService themeService: IThemeService,
|
|
@IStorageService storageService: IStorageService
|
|
) {
|
|
super(ModelViewEditor.ID, telemetryService, themeService, storageService);
|
|
}
|
|
|
|
/**
|
|
* Called to create the editor in the parent element.
|
|
*/
|
|
public createEditor(parent: HTMLElement): void {
|
|
this._editorFrame = parent;
|
|
this._content = document.createElement('div');
|
|
parent.appendChild(this._content);
|
|
}
|
|
|
|
/**
|
|
* Sets focus on this editor. Specifically, it sets the focus on the hosted text editor.
|
|
*/
|
|
public focus(): void {
|
|
}
|
|
|
|
public clearInput() {
|
|
this.hideOrRemoveModelViewContainer();
|
|
super.clearInput();
|
|
}
|
|
|
|
private hideOrRemoveModelViewContainer() {
|
|
if (this.input instanceof ModelViewInput) {
|
|
if (this.input.container) {
|
|
if (this.input.options && this.input.options.retainContextWhenHidden) {
|
|
this.input.container.style.visibility = 'hidden';
|
|
} else {
|
|
this.input.removeModelViewContainer();
|
|
this.input.container.style.visibility = 'hidden';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
async setInput(input: ModelViewInput, options?: EditorOptions): Promise<void> {
|
|
if (this.input && this.input.matches(input)) {
|
|
return Promise.resolve(undefined);
|
|
}
|
|
|
|
this.hideOrRemoveModelViewContainer();
|
|
|
|
input.appendModelViewContainer();
|
|
input.container.style.visibility = 'visible';
|
|
this._content.setAttribute('aria-flowto', input.container.id);
|
|
|
|
await super.setInput(input, options, CancellationToken.None);
|
|
this.doUpdateContainer();
|
|
}
|
|
|
|
private doUpdateContainer() {
|
|
let modelViewInput = this.input as ModelViewInput;
|
|
const modelViewContainer = modelViewInput && modelViewInput.container;
|
|
if (modelViewContainer) {
|
|
const frameRect = this._editorFrame.getBoundingClientRect();
|
|
const containerRect = modelViewContainer.parentElement.getBoundingClientRect();
|
|
|
|
modelViewContainer.style.position = 'absolute';
|
|
modelViewContainer.style.top = `${frameRect.top - containerRect.top}px`;
|
|
modelViewContainer.style.left = `${frameRect.left - containerRect.left}px`;
|
|
modelViewContainer.style.width = `${frameRect.width}px`;
|
|
modelViewContainer.style.height = `${frameRect.height}px`;
|
|
if (modelViewInput.dialogPane) {
|
|
modelViewInput.dialogPane.layout(true);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Updates the internal variable keeping track of the editor's size, and re-calculates the sash position.
|
|
* To be called when the container of this editor changes size.
|
|
*/
|
|
public layout(dimension: DOM.Dimension): void {
|
|
if (this.input instanceof ModelViewInput) {
|
|
if (this.input.container && this.input.dialogPane) {
|
|
this.doUpdateContainer();
|
|
// todo: layout this.input.dialogPane (Github issue: #1484)
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|