layout.ts 17.5 KB
Newer Older
E
Erich Gamma 已提交
1 2 3 4 5 6 7 8
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/
'use strict';

import {Dimension, Builder, Box} from 'vs/base/browser/builder';
import {Preferences} from 'vs/workbench/common/constants';
9
import {EditorEvent, EventType} from 'vs/workbench/common/events';
E
Erich Gamma 已提交
10 11
import {Part} from 'vs/workbench/browser/part';
import {QuickOpenController} from 'vs/workbench/browser/parts/quickopen/quickOpenController';
I
isidor 已提交
12
import {Sash, ISashEvent, IVerticalSashLayoutProvider, IHorizontalSashLayoutProvider, Orientation} from 'vs/base/browser/ui/sash/sash';
E
Erich Gamma 已提交
13 14 15 16
import {IWorkbenchEditorService} from 'vs/workbench/services/editor/common/editorService';
import {IPartService, Position} from 'vs/workbench/services/part/common/partService';
import {IWorkspaceContextService} from 'vs/workbench/services/workspace/common/contextService';
import {IStorageService, StorageScope, StorageEventType} from 'vs/platform/storage/common/storage';
B
Benjamin Pasero 已提交
17
import {IContextViewService} from 'vs/platform/contextview/browser/contextView';
E
Erich Gamma 已提交
18 19 20
import {IEventService} from 'vs/platform/event/common/event';

const DEFAULT_MIN_PART_WIDTH = 170;
I
isidor 已提交
21
const DEFAULT_MIN_PANEL_PART_HEIGHT = 170;
E
Erich Gamma 已提交
22
const HIDE_SIDEBAR_WIDTH_THRESHOLD = 50;
I
isidor 已提交
23
const HIDE_PANEL_HEIGHT_THRESHOLD = 50;
I
isidor 已提交
24
const PANEL_HEIGHT_SCREEN_LIMIT = 0.8;
E
Erich Gamma 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46

const LAYOUT_RELATED_PREFERENCES = [
	Preferences.THEME
];

export class LayoutOptions {
	public margin: Box;

	constructor() {
		this.margin = new Box(0, 0, 0, 0);
	}

	public setMargin(margin: Box): LayoutOptions {
		this.margin = margin;

		return this;
	}
}

interface ComputedStyles {
	activitybar: { minWidth: number; };
	sidebar: { minWidth: number; };
I
isidor 已提交
47
	panelPart: { minHeight: number; }
E
Erich Gamma 已提交
48 49 50 51 52 53 54
	editor: { minWidth: number; };
	statusbar: { height: number; };
}

/**
 * The workbench layout is responsible to lay out all parts that make the Monaco Workbench.
 */
I
isidor 已提交
55
export class WorkbenchLayout implements IVerticalSashLayoutProvider, IHorizontalSashLayoutProvider {
E
Erich Gamma 已提交
56

I
isidor 已提交
57 58
	private static sashXWidthSettingsKey = 'workbench.sidebar.width';
	private static sashYHeightSettingsKey = 'workbench.panelpart.height';
E
Erich Gamma 已提交
59 60 61 62 63 64

	private parent: Builder;
	private workbenchContainer: Builder;
	private activitybar: Part;
	private editor: Part;
	private sidebar: Part;
I
isidor 已提交
65
	private panelPart: Part;
E
Erich Gamma 已提交
66 67 68 69 70 71
	private statusbar: Part;
	private quickopen: QuickOpenController;
	private options: LayoutOptions;
	private toUnbind: { (): void; }[];
	private computedStyles: ComputedStyles;
	private workbenchSize: Dimension;
I
isidor 已提交
72 73
	private sashX: Sash;
	private sashY: Sash;
E
Erich Gamma 已提交
74 75
	private startSidebarWidth: number;
	private sidebarWidth: number;
I
isidor 已提交
76
	private sidebarHeight: number;
I
isidor 已提交
77
	private startPanelPartHeight: number;
I
isidor 已提交
78
	private panelPartHeight: number;
I
isidor 已提交
79
	private panelPartWidth: number;
E
Erich Gamma 已提交
80

I
isidor 已提交
81
	// Take parts as an object bag since instatation service does not have typings for constructors with 9+ arguments
E
Erich Gamma 已提交
82 83 84
	constructor(
		parent: Builder,
		workbenchContainer: Builder,
I
isidor 已提交
85 86 87 88 89 90 91
		parts: {
			activitybar: Part,
			editor: Part,
			sidebar: Part,
			panel: Part,
			statusbar: Part
		},
E
Erich Gamma 已提交
92 93 94 95 96 97 98 99 100 101 102
		quickopen: QuickOpenController,
		options: LayoutOptions,
		@IStorageService private storageService: IStorageService,
		@IEventService private eventService: IEventService,
		@IContextViewService private contextViewService: IContextViewService,
		@IWorkbenchEditorService private editorService: IWorkbenchEditorService,
		@IWorkspaceContextService private contextService: IWorkspaceContextService,
		@IPartService private partService: IPartService
	) {
		this.parent = parent;
		this.workbenchContainer = workbenchContainer;
I
isidor 已提交
103 104 105 106 107
		this.activitybar = parts.activitybar;
		this.editor = parts.editor;
		this.sidebar = parts.sidebar;
		this.panelPart = parts.panel;
		this.statusbar = parts.statusbar;
E
Erich Gamma 已提交
108 109 110 111
		this.quickopen = quickopen;
		this.options = options || new LayoutOptions();
		this.toUnbind = [];
		this.computedStyles = null;
I
isidor 已提交
112
		this.sashX = new Sash(this.workbenchContainer.getHTMLElement(), this, {
E
Erich Gamma 已提交
113 114
			baseSize: 5
		});
I
isidor 已提交
115 116 117 118
		this.sashY = new Sash(this.workbenchContainer.getHTMLElement(), this, {
			baseSize: 5,
			orientation: Orientation.HORIZONTAL
		});
E
Erich Gamma 已提交
119

I
isidor 已提交
120 121
		this.sidebarWidth = this.storageService.getInteger(WorkbenchLayout.sashXWidthSettingsKey, StorageScope.GLOBAL, -1);
		this.panelPartHeight = this.storageService.getInteger(WorkbenchLayout.sashYHeightSettingsKey, StorageScope.GLOBAL, 0);
E
Erich Gamma 已提交
122 123 124 125 126 127 128 129 130 131 132 133

		this.registerListeners();
		this.registerSashListeners();
	}

	private registerListeners(): void {
		this.toUnbind.push(this.eventService.addListener(StorageEventType.STORAGE, (e: StorageEvent) => this.onPreferenceChange(e)));
		this.toUnbind.push(this.eventService.addListener(EventType.EDITOR_INPUT_CHANGING, (e: EditorEvent) => this.onEditorInputChanging(e)));
	}

	private registerSashListeners(): void {
		let startX: number = 0;
I
isidor 已提交
134
		let startY: number = 0;
E
Erich Gamma 已提交
135

I
isidor 已提交
136
		this.sashX.addListener('start', (e: ISashEvent) => {
E
Erich Gamma 已提交
137 138 139 140
			this.startSidebarWidth = this.sidebarWidth;
			startX = e.startX;
		});

I
isidor 已提交
141 142 143 144 145 146
		this.sashY.addListener('start', (e: ISashEvent) => {
			this.startPanelPartHeight = this.panelPartHeight;
			startY = e.startY;
		});

		this.sashX.addListener('change', (e: ISashEvent) => {
E
Erich Gamma 已提交
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
			let doLayout = false;
			let sidebarPosition = this.partService.getSideBarPosition();
			let isSidebarHidden = this.partService.isSideBarHidden();
			let newSashWidth = (sidebarPosition === Position.LEFT) ? this.startSidebarWidth + e.currentX - startX : this.startSidebarWidth - e.currentX + startX;

			// Sidebar visible
			if (!isSidebarHidden) {

				// Automatically hide side bar when a certain threshold is met
				if (newSashWidth + HIDE_SIDEBAR_WIDTH_THRESHOLD < this.computedStyles.sidebar.minWidth) {
					let dragCompensation = DEFAULT_MIN_PART_WIDTH - HIDE_SIDEBAR_WIDTH_THRESHOLD;
					this.partService.setSideBarHidden(true);
					startX = (sidebarPosition === Position.LEFT) ? Math.max(this.computedStyles.activitybar.minWidth, e.currentX - dragCompensation) : Math.min(e.currentX + dragCompensation, this.workbenchSize.width - this.computedStyles.activitybar.minWidth);
					this.sidebarWidth = this.startSidebarWidth; // when restoring sidebar, restore to the sidebar width we started from
				}

				// Otherwise size the sidebar accordingly
				else {
					this.sidebarWidth = Math.max(this.computedStyles.sidebar.minWidth, newSashWidth); // Sidebar can not become smaller than MIN_PART_WIDTH
					doLayout = newSashWidth >= this.computedStyles.sidebar.minWidth;
				}
			}

			// Sidebar hidden
			else {
				if ((sidebarPosition === Position.LEFT && e.currentX - startX >= this.computedStyles.sidebar.minWidth) ||
					(sidebarPosition === Position.RIGHT && startX - e.currentX >= this.computedStyles.sidebar.minWidth)) {
					this.startSidebarWidth = this.computedStyles.sidebar.minWidth - (sidebarPosition === Position.LEFT ? e.currentX - startX : startX - e.currentX);
					this.sidebarWidth = this.computedStyles.sidebar.minWidth;
					this.partService.setSideBarHidden(false);
				}
			}

			if (doLayout) {
				this.layout();
			}
		});

I
isidor 已提交
185 186 187
		this.sashY.addListener('change', (e: ISashEvent) => {
			let doLayout = false;
			let isPanelPartHidden = this.partService.isPanelPartHidden();
I
isidor 已提交
188
			let newSashHeight = this.startPanelPartHeight - (e.currentY - startY);
I
isidor 已提交
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206

			// Panel visible
			if (!isPanelPartHidden) {
				// TODO@Isidor Automatically hide panel when a certain threshold is met

				this.panelPartHeight = Math.max(this.computedStyles.panelPart.minHeight, newSashHeight); // Panel can not become smaller than MIN_PART_HEIGHT
				doLayout = newSashHeight >= this.computedStyles.panelPart.minHeight;
			}
			if (doLayout) {
				this.layout();
			}
		});

		this.sashX.addListener('end', () => {
			this.storageService.store(WorkbenchLayout.sashXWidthSettingsKey, this.sidebarWidth, StorageScope.GLOBAL);
		});
		this.sashY.addListener('end', () => {
			this.storageService.store(WorkbenchLayout.sashYHeightSettingsKey, this.panelPartHeight, StorageScope.GLOBAL);
E
Erich Gamma 已提交
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
		});
	}

	private onEditorInputChanging(e: EditorEvent): void {

		// Make sure that we layout properly in case we detect that the sidebar is large enought to cause
		// multiple opened editors to go below minimal size. The fix is to trigger a layout for any editor
		// input change that falls into this category.
		if (this.workbenchSize && this.sidebarWidth) {
			let visibleEditors = this.editorService.getVisibleEditors().length;
			if (visibleEditors > 1 && this.workbenchSize.width - this.sidebarWidth < visibleEditors * DEFAULT_MIN_PART_WIDTH) {
				this.layout();
			}
		}
	}

	private onPreferenceChange(e: StorageEvent): void {
		if (e.key && LAYOUT_RELATED_PREFERENCES.indexOf(e.key) >= 0) {

			// Recompute Styles
			this.computeStyle();
			this.editor.getLayout().computeStyle();
			this.sidebar.getLayout().computeStyle();
I
isidor 已提交
230
			this.panelPart.getLayout().computeStyle();
E
Erich Gamma 已提交
231 232 233 234 235 236 237

			// Trigger Layout
			this.layout();
		}
	}

	private computeStyle(): void {
I
isidor 已提交
238 239 240 241
		const sidebarStyle = this.sidebar.getContainer().getComputedStyle();
		const panelPartStyle = this.panelPart.getContainer().getComputedStyle();
		const editorStyle = this.editor.getContainer().getComputedStyle();
		const activitybarStyle = this.activitybar.getContainer().getComputedStyle();
E
Erich Gamma 已提交
242 243 244 245 246 247 248 249 250 251

		this.computedStyles = {
			activitybar: {
				minWidth: parseInt(activitybarStyle.getPropertyValue('min-width'), 10) || 0
			},

			sidebar: {
				minWidth: parseInt(sidebarStyle.getPropertyValue('min-width'), 10) || DEFAULT_MIN_PART_WIDTH
			},

I
isidor 已提交
252
			panelPart: {
I
isidor 已提交
253
				minHeight: parseInt(panelPartStyle.getPropertyValue('min-height'), 10) || DEFAULT_MIN_PANEL_PART_HEIGHT
I
isidor 已提交
254 255
			},

E
Erich Gamma 已提交
256 257 258 259 260 261 262 263 264 265
			editor: {
				minWidth: parseInt(editorStyle.getPropertyValue('min-width'), 10) || DEFAULT_MIN_PART_WIDTH
			},

			statusbar: {
				height: 0
			}
		};

		if (this.statusbar) {
I
isidor 已提交
266
			const statusbarStyle = this.statusbar.getContainer().getComputedStyle();
E
Erich Gamma 已提交
267 268 269 270 271 272 273 274 275
			this.computedStyles.statusbar.height = parseInt(statusbarStyle.getPropertyValue('height'), 10) || 18;
		}
	}

	public layout(forceStyleReCompute?: boolean): void {
		if (forceStyleReCompute) {
			this.computeStyle();
			this.editor.getLayout().computeStyle();
			this.sidebar.getLayout().computeStyle();
I
isidor 已提交
276
			this.panelPart.getLayout().computeStyle();
E
Erich Gamma 已提交
277 278 279 280 281 282 283 284
		}

		if (!this.computedStyles) {
			this.computeStyle();
		}

		this.workbenchSize = this.getWorkbenchArea();

I
isidor 已提交
285 286 287
		const isSidebarHidden = this.partService.isSideBarHidden();
		const isPanelPartHidden = this.partService.isPanelPartHidden();
		const sidebarPosition = this.partService.getSideBarPosition();
E
Erich Gamma 已提交
288 289 290 291 292 293 294 295 296 297 298 299

		// Sidebar
		let sidebarWidth: number;
		if (isSidebarHidden) {
			sidebarWidth = 0;
		} else if (this.sidebarWidth !== -1) {
			sidebarWidth = Math.max(this.computedStyles.sidebar.minWidth, this.sidebarWidth);
		} else {
			sidebarWidth = this.workbenchSize.width / 5;
			this.sidebarWidth = sidebarWidth;
		}

I
isidor 已提交
300 301
		this.sidebarHeight = this.workbenchSize.height - this.computedStyles.statusbar.height;
		let sidebarSize = new Dimension(sidebarWidth, this.sidebarHeight);
E
Erich Gamma 已提交
302 303 304 305 306

		// Activity Bar
		let activityBarMinWidth = this.computedStyles.activitybar.minWidth;
		let activityBarSize = new Dimension(activityBarMinWidth, sidebarSize.height);

I
isidor 已提交
307 308 309 310 311
		// Panel part
		let panelHeight: number;
		if (isPanelPartHidden) {
			panelHeight = 0;
		} else if (this.panelPartHeight > 0) {
I
isidor 已提交
312
			panelHeight = Math.min(sidebarSize.height * PANEL_HEIGHT_SCREEN_LIMIT, Math.max(this.computedStyles.panelPart.minHeight, this.panelPartHeight));
I
isidor 已提交
313 314 315 316
		} else {
			panelHeight = sidebarSize.height * 0.4;
		}
		const panelDimension = new Dimension(this.workbenchSize.width - sidebarSize.width - activityBarSize.width, panelHeight);
I
isidor 已提交
317
		this.panelPartWidth = panelDimension.width;
I
isidor 已提交
318

E
Erich Gamma 已提交
319 320 321 322 323 324 325 326
		// Editor
		let editorSize = {
			width: 0,
			height: 0,
			remainderLeft: 0,
			remainderRight: 0
		};

I
isidor 已提交
327
		let editorDimension = new Dimension(panelDimension.width, sidebarSize.height - panelDimension.height);
E
Erich Gamma 已提交
328
		editorSize.width = editorDimension.width;
I
isidor 已提交
329
		editorSize.height = editorDimension.height;
E
Erich Gamma 已提交
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358

		// Sidebar hidden
		if (isSidebarHidden) {
			editorSize.width = Math.min(this.workbenchSize.width - activityBarSize.width, this.workbenchSize.width - activityBarMinWidth);

			if (sidebarPosition === Position.LEFT) {
				editorSize.remainderLeft = Math.round((this.workbenchSize.width - editorSize.width + activityBarSize.width) / 2);
				editorSize.remainderRight = this.workbenchSize.width - editorSize.width - editorSize.remainderLeft;
			} else {
				editorSize.remainderRight = Math.round((this.workbenchSize.width - editorSize.width + activityBarSize.width) / 2);
				editorSize.remainderLeft = this.workbenchSize.width - editorSize.width - editorSize.remainderRight;
			}
		}

		// Assert Sidebar and Editor Size to not overflow
		let editorMinWidth = this.computedStyles.editor.minWidth;
		let visibleEditorCount = this.editorService.getVisibleEditors().length;
		if (visibleEditorCount > 1) {
			editorMinWidth *= visibleEditorCount;
		}
		if (editorSize.width < editorMinWidth) {
			let diff = editorMinWidth - editorSize.width;
			editorSize.width = editorMinWidth;
			sidebarSize.width -= diff;
			sidebarSize.width = Math.max(DEFAULT_MIN_PART_WIDTH, sidebarSize.width);
		}

		if (!isSidebarHidden) {
			this.sidebarWidth = sidebarSize.width;
I
isidor 已提交
359
			this.storageService.store(WorkbenchLayout.sashXWidthSettingsKey, this.sidebarWidth, StorageScope.GLOBAL);
E
Erich Gamma 已提交
360 361
		}

I
isidor 已提交
362 363
		if (!isPanelPartHidden) {
			this.panelPartHeight = panelDimension.height;
I
isidor 已提交
364
			this.storageService.store(WorkbenchLayout.sashYHeightSettingsKey, this.panelPartHeight, StorageScope.GLOBAL);
I
isidor 已提交
365 366
		}

E
Erich Gamma 已提交
367 368 369 370 371 372 373 374 375 376
		// Workbench
		this.workbenchContainer
			.position(this.options.margin.top, this.options.margin.right, this.options.margin.bottom, this.options.margin.left, 'relative')
			.size(this.workbenchSize.width, this.workbenchSize.height);

		// Bug on Chrome: Sometimes Chrome wants to scroll the workbench container on layout changes. The fix is to reset scrollTop in this case.
		if (this.workbenchContainer.getHTMLElement().scrollTop > 0) {
			this.workbenchContainer.getHTMLElement().scrollTop = 0;
		}

I
isidor 已提交
377
		// Editor Part and Panel part
E
Erich Gamma 已提交
378
		this.editor.getContainer().size(editorSize.width, editorSize.height);
I
isidor 已提交
379
		this.panelPart.getContainer().size(panelDimension.width, panelDimension.height);
E
Erich Gamma 已提交
380

381
		const editorBottom = this.computedStyles.statusbar.height + panelDimension.height;
E
Erich Gamma 已提交
382
		if (isSidebarHidden) {
383 384
			this.editor.getContainer().position(0, editorSize.remainderRight, editorBottom, editorSize.remainderLeft);
			this.panelPart.getContainer().position(editorDimension.height, editorSize.remainderRight, this.computedStyles.statusbar.height, editorSize.remainderRight);
E
Erich Gamma 已提交
385
		} else if (sidebarPosition === Position.LEFT) {
386 387
			this.editor.getContainer().position(0, 0, editorBottom, sidebarSize.width + activityBarSize.width);
			this.panelPart.getContainer().position(editorDimension.height, 0, this.computedStyles.statusbar.height, sidebarSize.width + activityBarSize.width);
E
Erich Gamma 已提交
388
		} else {
389 390
			this.editor.getContainer().position(0, sidebarSize.width, editorBottom, 0);
			this.panelPart.getContainer().position(editorDimension.height, sidebarSize.width, this.computedStyles.statusbar.height, 0);
E
Erich Gamma 已提交
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
		}

		// Activity Bar Part
		this.activitybar.getContainer().size(null, activityBarSize.height);
		if (sidebarPosition === Position.LEFT) {
			this.activitybar.getContainer().getHTMLElement().style.right = '';
			this.activitybar.getContainer().position(0, null, 0, 0);
		} else {
			this.activitybar.getContainer().getHTMLElement().style.left = '';
			this.activitybar.getContainer().position(0, 0, 0, null);
		}

		// Sidebar Part
		this.sidebar.getContainer().size(sidebarSize.width, sidebarSize.height);

		if (sidebarPosition === Position.LEFT) {
			this.sidebar.getContainer().position(0, editorSize.width, 0, activityBarSize.width);
		} else {
			this.sidebar.getContainer().position(0, null, 0, editorSize.width);
		}

		// Statusbar Part
		if (this.statusbar) {
			this.statusbar.getContainer().position(this.workbenchSize.height - this.computedStyles.statusbar.height);
		}

		// Quick open
		this.quickopen.layout(this.workbenchSize);

I
isidor 已提交
420 421
		// Sashes
		this.sashX.layout();
I
isidor 已提交
422
		isPanelPartHidden ? this.sashY.hide() : this.sashY.show();
I
isidor 已提交
423
		this.sashY.layout();
E
Erich Gamma 已提交
424 425 426 427

		// Propagate to Part Layouts
		this.editor.layout(new Dimension(editorSize.width, editorSize.height));
		this.sidebar.layout(sidebarSize);
428
		this.panelPart.layout(panelDimension);
E
Erich Gamma 已提交
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461

		// Propagate to Context View
		if (this.contextViewService) {
			this.contextViewService.layout();
		}
	}

	private getWorkbenchArea(): Dimension {

		// Client Area: Parent
		let clientArea = this.parent.getClientArea();

		// Workbench: Client Area - Margins
		return clientArea.substract(this.options.margin);
	}

	public getVerticalSashTop(sash: Sash): number {
		return 0;
	}

	public getVerticalSashLeft(sash: Sash): number {
		let isSidebarHidden = this.partService.isSideBarHidden();
		let sidebarPosition = this.partService.getSideBarPosition();
		let activitybarWidth = this.computedStyles.activitybar.minWidth;

		if (sidebarPosition === Position.LEFT) {
			return !isSidebarHidden ? this.sidebarWidth + activitybarWidth : activitybarWidth;
		}

		return !isSidebarHidden ? this.workbenchSize.width - this.sidebarWidth - activitybarWidth : this.workbenchSize.width - activitybarWidth;
	}

	public getVerticalSashHeight(sash: Sash): number {
I
isidor 已提交
462
		return this.sidebarHeight;
E
Erich Gamma 已提交
463 464
	}

I
isidor 已提交
465
	public getHorizontalSashTop(sash: Sash): number {
I
isidor 已提交
466
		return this.sidebarHeight - this.panelPartHeight;
I
isidor 已提交
467 468 469 470 471 472 473 474 475 476
	}

	public getHorizontalSashLeft(sash: Sash): number {
		return this.getVerticalSashLeft(sash);
	}

	public getHorizontalSashWidth(sash: Sash): number {
		return this.panelPartWidth;
	}

E
Erich Gamma 已提交
477 478 479 480 481 482
	public dispose(): void {
		while (this.toUnbind.length) {
			this.toUnbind.pop()();
		}
	}
}