monaco-editor
Version:
A browser based code editor
76 lines (75 loc) • 4.04 kB
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __param = (this && this.__param) || function (paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
};
import * as dom from '../../../base/browser/dom.js';
import { mainWindow } from '../../../base/browser/window.js';
import { coalesce, firstOrDefault } from '../../../base/common/arrays.js';
import { Event } from '../../../base/common/event.js';
import { ICodeEditorService } from '../../browser/services/codeEditorService.js';
import { registerSingleton } from '../../../platform/instantiation/common/extensions.js';
import { ILayoutService } from '../../../platform/layout/browser/layoutService.js';
let StandaloneLayoutService = class StandaloneLayoutService {
get mainContainer() {
var _a, _b;
return (_b = (_a = firstOrDefault(this._codeEditorService.listCodeEditors())) === null || _a === void 0 ? void 0 : _a.getContainerDomNode()) !== null && _b !== void 0 ? _b : mainWindow.document.body;
}
get activeContainer() {
var _a, _b;
const activeCodeEditor = (_a = this._codeEditorService.getFocusedCodeEditor()) !== null && _a !== void 0 ? _a : this._codeEditorService.getActiveCodeEditor();
return (_b = activeCodeEditor === null || activeCodeEditor === void 0 ? void 0 : activeCodeEditor.getContainerDomNode()) !== null && _b !== void 0 ? _b : this.mainContainer;
}
get mainContainerDimension() {
return dom.getClientArea(this.mainContainer);
}
get activeContainerDimension() {
return dom.getClientArea(this.activeContainer);
}
get containers() {
return coalesce(this._codeEditorService.listCodeEditors().map(codeEditor => codeEditor.getContainerDomNode()));
}
getContainer() {
return this.activeContainer;
}
focus() {
var _a;
(_a = this._codeEditorService.getFocusedCodeEditor()) === null || _a === void 0 ? void 0 : _a.focus();
}
constructor(_codeEditorService) {
this._codeEditorService = _codeEditorService;
this.onDidLayoutMainContainer = Event.None;
this.onDidLayoutActiveContainer = Event.None;
this.onDidLayoutContainer = Event.None;
this.onDidChangeActiveContainer = Event.None;
this.onDidAddContainer = Event.None;
this.whenActiveContainerStylesLoaded = Promise.resolve();
this.mainContainerOffset = { top: 0, quickPickTop: 0 };
this.activeContainerOffset = { top: 0, quickPickTop: 0 };
}
};
StandaloneLayoutService = __decorate([
__param(0, ICodeEditorService)
], StandaloneLayoutService);
let EditorScopedLayoutService = class EditorScopedLayoutService extends StandaloneLayoutService {
get mainContainer() {
return this._container;
}
constructor(_container, codeEditorService) {
super(codeEditorService);
this._container = _container;
}
};
EditorScopedLayoutService = __decorate([
__param(1, ICodeEditorService)
], EditorScopedLayoutService);
export { EditorScopedLayoutService };
registerSingleton(ILayoutService, StandaloneLayoutService, 1 /* InstantiationType.Delayed */);