workbench.ts 30.4 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 'vs/css!./media/workbench';
9

10
import {TPromise, ValueCallback} from 'vs/base/common/winjs.base';
E
Erich Gamma 已提交
11
import types = require('vs/base/common/types');
J
Joao Moreno 已提交
12
import {IDisposable, dispose} from 'vs/base/common/lifecycle';
E
Erich Gamma 已提交
13 14 15 16 17 18 19 20
import strings = require('vs/base/common/strings');
import DOM = require('vs/base/browser/dom');
import {Box, Builder, withElementById, $} from 'vs/base/browser/builder';
import {Delayer} from 'vs/base/common/async';
import assert = require('vs/base/common/assert');
import timer = require('vs/base/common/timer');
import errors = require('vs/base/common/errors');
import {Registry} from 'vs/platform/platform';
M
Martin Aeschlimann 已提交
21
import {Identifiers} from 'vs/workbench/common/constants';
22
import {isWindows, isLinux} from 'vs/base/common/platform';
E
Erich Gamma 已提交
23 24
import {IOptions} from 'vs/workbench/common/options';
import {IWorkbenchContributionsRegistry, Extensions as WorkbenchExtensions} from 'vs/workbench/common/contributions';
B
Benjamin Pasero 已提交
25 26
import {BaseEditor} from 'vs/workbench/browser/parts/editor/baseEditor';
import {IEditorRegistry, Extensions as EditorExtensions, TextEditorOptions, EditorInput, EditorOptions} from 'vs/workbench/common/editor';
E
Erich Gamma 已提交
27 28 29
import {Part} from 'vs/workbench/browser/part';
import {HistoryService} from 'vs/workbench/services/history/browser/history';
import {ActivitybarPart} from 'vs/workbench/browser/parts/activitybar/activitybarPart';
B
Benjamin Pasero 已提交
30
import {EditorPart} from 'vs/workbench/browser/parts/editor/editorPart';
E
Erich Gamma 已提交
31
import {SidebarPart} from 'vs/workbench/browser/parts/sidebar/sidebarPart';
I
isidor 已提交
32
import {PanelPart} from 'vs/workbench/browser/parts/panel/panelPart';
E
Erich Gamma 已提交
33 34 35
import {StatusbarPart} from 'vs/workbench/browser/parts/statusbar/statusbarPart';
import {WorkbenchLayout, LayoutOptions} from 'vs/workbench/browser/layout';
import {IActionBarRegistry, Extensions as ActionBarExtensions} from 'vs/workbench/browser/actionBarRegistry';
I
isidor 已提交
36
import {ViewletRegistry, Extensions as ViewletExtensions} from 'vs/workbench/browser/viewlet';
I
isidor 已提交
37
import {PanelRegistry, Extensions as PanelExtensions} from 'vs/workbench/browser/panel';
E
Erich Gamma 已提交
38
import {QuickOpenController} from 'vs/workbench/browser/parts/quickopen/quickOpenController';
39
import {DiffEditorInput, toDiffLabel} from 'vs/workbench/common/editor/diffEditorInput';
E
Erich Gamma 已提交
40
import {getServices} from 'vs/platform/instantiation/common/extensions';
41
import {IUntitledEditorService} from 'vs/workbench/services/untitled/common/untitledEditorService';
E
Erich Gamma 已提交
42 43 44
import {WorkbenchEditorService} from 'vs/workbench/services/editor/browser/editorService';
import {Position, Parts, IPartService} from 'vs/workbench/services/part/common/partService';
import {IWorkspaceContextService as IWorkbenchWorkspaceContextService} from 'vs/workbench/services/workspace/common/contextService';
M
Martin Aeschlimann 已提交
45
import {IStorageService, StorageScope} from 'vs/platform/storage/common/storage';
46
import {ContextMenuService} from 'vs/workbench/services/contextview/electron-browser/contextmenuService';
A
Alex Dima 已提交
47
import {WorkbenchKeybindingService} from 'vs/workbench/services/keybinding/electron-browser/keybindingService';
A
Alex Dima 已提交
48
import {ContextKeyService} from 'vs/platform/contextkey/browser/contextKeyService';
B
Benjamin Pasero 已提交
49
import {IWorkspace, IConfiguration} from 'vs/platform/workspace/common/workspace';
50
import {IKeybindingService} from 'vs/platform/keybinding/common/keybinding';
A
Alex Dima 已提交
51
import {ContextKeyExpr, RawContextKey, IContextKeyService, IContextKey} from 'vs/platform/contextkey/common/contextkey';
E
Erich Gamma 已提交
52 53
import {IActivityService} from 'vs/workbench/services/activity/common/activityService';
import {IViewletService} from 'vs/workbench/services/viewlet/common/viewletService';
I
isidor 已提交
54
import {IPanelService} from 'vs/workbench/services/panel/common/panelService';
E
Erich Gamma 已提交
55
import {WorkbenchMessageService} from 'vs/workbench/services/message/browser/messageService';
B
Benjamin Pasero 已提交
56
import {IWorkbenchEditorService} from 'vs/workbench/services/editor/common/editorService';
57
import {IQuickOpenService} from 'vs/workbench/services/quickopen/common/quickOpenService';
58
import {IEditorGroupService} from 'vs/workbench/services/group/common/groupService';
E
Erich Gamma 已提交
59 60 61
import {IHistoryService} from 'vs/workbench/services/history/common/history';
import {IEventService} from 'vs/platform/event/common/event';
import {IInstantiationService} from 'vs/platform/instantiation/common/instantiation';
62
import {SyncDescriptor} from 'vs/platform/instantiation/common/descriptors';
63
import {ServiceCollection} from 'vs/platform/instantiation/common/serviceCollection';
E
Erich Gamma 已提交
64 65
import {ILifecycleService} from 'vs/platform/lifecycle/common/lifecycle';
import {IMessageService} from 'vs/platform/message/common/message';
66
import {IThreadService} from 'vs/workbench/services/thread/common/threadService';
67
import {IStatusbarService} from 'vs/platform/statusbar/common/statusbar';
68
import {IMenuService} from 'vs/platform/actions/common/actions';
J
Johannes Rieken 已提交
69
import {MenuService} from 'vs/platform/actions/common/menuService';
70
import {IContextMenuService} from 'vs/platform/contextview/browser/contextView';
B
Benjamin Pasero 已提交
71
import {IEnvironmentService} from 'vs/platform/environment/common/environment';
E
Erich Gamma 已提交
72

A
Alex Dima 已提交
73 74
export const MessagesVisibleContext = new RawContextKey<boolean>('globalMessageVisible', false);
export const EditorsVisibleContext = new RawContextKey<boolean>('editorIsOpen', false);
A
Alex Dima 已提交
75
export const NoEditorsVisibleContext:ContextKeyExpr = EditorsVisibleContext.toNegated();
A
Alex Dima 已提交
76

E
Erich Gamma 已提交
77 78 79 80
interface WorkbenchParams {
	workspace?: IWorkspace;
	configuration: IConfiguration;
	options: IOptions;
81
	serviceCollection: ServiceCollection;
E
Erich Gamma 已提交
82 83 84 85
}

export interface IWorkbenchCallbacks {
	onServicesCreated?: () => void;
86
	onWorkbenchStarted?: (customKeybindingsCount: number) => void;
E
Erich Gamma 已提交
87 88 89
}

/**
B
Benjamin Pasero 已提交
90
 * The workbench creates and lays out all parts that make up the workbench.
E
Erich Gamma 已提交
91 92 93 94
 */
export class Workbench implements IPartService {

	private static sidebarPositionSettingKey = 'workbench.sidebar.position';
95
	private static statusbarHiddenSettingKey = 'workbench.statusbar.hidden';
E
Erich Gamma 已提交
96
	private static sidebarHiddenSettingKey = 'workbench.sidebar.hidden';
I
isidor 已提交
97
	private static panelHiddenSettingKey = 'workbench.panel.hidden';
E
Erich Gamma 已提交
98

99
	public _serviceBrand: any;
E
Erich Gamma 已提交
100 101 102 103 104 105 106 107

	private container: HTMLElement;
	private workbenchParams: WorkbenchParams;
	private workbenchContainer: Builder;
	private workbench: Builder;
	private workbenchStarted: boolean;
	private workbenchCreated: boolean;
	private workbenchShutdown: boolean;
108
	private editorService: WorkbenchEditorService;
109
	private contextKeyService: IContextKeyService;
110
	private keybindingService: IKeybindingService;
E
Erich Gamma 已提交
111 112
	private activitybarPart: ActivitybarPart;
	private sidebarPart: SidebarPart;
I
isidor 已提交
113
	private panelPart: PanelPart;
E
Erich Gamma 已提交
114 115 116 117 118 119 120 121 122 123
	private editorPart: EditorPart;
	private statusbarPart: StatusbarPart;
	private quickOpen: QuickOpenController;
	private workbenchLayout: WorkbenchLayout;
	private toDispose: IDisposable[];
	private toShutdown: { shutdown: () => void; }[];
	private callbacks: IWorkbenchCallbacks;
	private creationPromise: TPromise<boolean>;
	private creationPromiseComplete: ValueCallback;
	private sideBarHidden: boolean;
124
	private statusBarHidden: boolean;
E
Erich Gamma 已提交
125
	private sideBarPosition: Position;
I
isidor 已提交
126
	private panelHidden: boolean;
E
Erich Gamma 已提交
127
	private editorBackgroundDelayer: Delayer<void>;
A
Alex Dima 已提交
128 129
	private messagesVisibleContext: IContextKey<boolean>;
	private editorsVisibleContext: IContextKey<boolean>;
E
Erich Gamma 已提交
130

131 132 133 134 135 136
	constructor(
		container: HTMLElement,
		workspace: IWorkspace,
		configuration: IConfiguration,
		options: IOptions,
		serviceCollection: ServiceCollection,
137 138 139 140 141 142 143
		@IInstantiationService private instantiationService: IInstantiationService,
		@IUntitledEditorService private untitledEditorService: IUntitledEditorService,
		@IEventService private eventService: IEventService,
		@IWorkbenchWorkspaceContextService private contextService: IWorkbenchWorkspaceContextService,
		@IStorageService private storageService: IStorageService,
		@ILifecycleService private lifecycleService: ILifecycleService,
		@IMessageService private messageService: IMessageService,
B
Benjamin Pasero 已提交
144 145
		@IThreadService private threadService: IThreadService,
		@IEnvironmentService private environmentService: IEnvironmentService
146
	) {
E
Erich Gamma 已提交
147 148 149 150 151 152

		// Validate params
		this.validateParams(container, configuration, options);

		// If String passed in as container, try to find it in DOM
		if (types.isString(container)) {
B
Benjamin Pasero 已提交
153
			const element = withElementById(container.toString());
E
Erich Gamma 已提交
154 155 156 157 158 159 160 161 162 163 164 165
			this.container = element.getHTMLElement();
		}

		// Otherwise use as HTMLElement
		else {
			this.container = container;
		}

		this.workbenchParams = {
			workspace: workspace,
			configuration: configuration,
			options: options || {},
166
			serviceCollection
E
Erich Gamma 已提交
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
		};

		this.toDispose = [];
		this.toShutdown = [];
		this.editorBackgroundDelayer = new Delayer<void>(50);

		this.creationPromise = new TPromise<boolean>((c, e, p) => {
			this.creationPromiseComplete = c;
		});
	}

	private validateParams(container: HTMLElement, configuration: IConfiguration, options: IOptions): void {

		// Container
		assert.ok(container, 'Workbench requires a container to be created with');
		if (types.isString(container)) {
B
Benjamin Pasero 已提交
183
			const element = withElementById(container.toString());
E
Erich Gamma 已提交
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
			assert.ok(element, strings.format('Can not find HTMLElement with id \'{0}\'.', container));
		}
	}

	/**
	 * Starts the workbench and creates the HTML elements on the container. A workbench can only be started
	 * once. Use the shutdown function to free up resources created by the workbench on startup.
	 */
	public startup(callbacks?: IWorkbenchCallbacks): void {
		assert.ok(!this.workbenchStarted, 'Can not start a workbench that was already started');
		assert.ok(!this.workbenchShutdown, 'Can not start a workbench that was shutdown');

		try {
			this.workbenchStarted = true;
			this.callbacks = callbacks;

			// Create Workbench
			this.createWorkbench();

			// Services
			this.initServices();
			if (this.callbacks && this.callbacks.onServicesCreated) {
				this.callbacks.onServicesCreated();
			}

209
			// Contexts
210 211
			this.messagesVisibleContext = MessagesVisibleContext.bindTo(this.contextKeyService);
			this.editorsVisibleContext = EditorsVisibleContext.bindTo(this.contextKeyService);
212

E
Erich Gamma 已提交
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
			// Register Listeners
			this.registerListeners();

			// Settings
			this.initSettings();

			// Create Workbench and Parts
			this.renderWorkbench();

			// Workbench Layout
			this.createWorkbenchLayout();

			// Register Emitters
			this.registerEmitters();

I
isidor 已提交
228
			// Load composits and editors in parallel
B
Benjamin Pasero 已提交
229
			const compositeAndEditorPromises: TPromise<any>[] = [];
E
Erich Gamma 已提交
230

B
Benjamin Pasero 已提交
231
			// Load Viewlet
B
Benjamin Pasero 已提交
232
			const viewletRegistry = (<ViewletRegistry>Registry.as(ViewletExtensions.Viewlets));
233
			let viewletId = viewletRegistry.getDefaultViewletId();
B
Benjamin Pasero 已提交
234
			if (!this.environmentService.isBuilt) {
235
				viewletId = this.storageService.get(SidebarPart.activeViewletSettingsKey, StorageScope.WORKSPACE, viewletRegistry.getDefaultViewletId()); // help developers and restore last view
236 237 238
			}

			if (!this.sideBarHidden && !!viewletId) {
B
Benjamin Pasero 已提交
239
				const viewletTimerEvent = timer.start(timer.Topic.STARTUP, strings.format('Opening Viewlet: {0}', viewletId));
I
isidor 已提交
240
				compositeAndEditorPromises.push(this.sidebarPart.openViewlet(viewletId, false).then(() => viewletTimerEvent.stop()));
E
Erich Gamma 已提交
241 242
			}

B
Benjamin Pasero 已提交
243
			// Load Panel
B
Benjamin Pasero 已提交
244
			const panelRegistry = (<PanelRegistry>Registry.as(PanelExtensions.Panels));
245 246
			const panelId = this.storageService.get(PanelPart.activePanelSettingsKey, StorageScope.WORKSPACE, panelRegistry.getDefaultPanelId());
			if (!this.panelHidden && !!panelId) {
I
isidor 已提交
247
				compositeAndEditorPromises.push(this.panelPart.openPanel(panelId, false));
248 249
			}

B
Benjamin Pasero 已提交
250
			// Load Editors
B
Benjamin Pasero 已提交
251
			const editorTimerEvent = timer.start(timer.Topic.STARTUP, strings.format('Restoring Editor(s)'));
B
Benjamin Pasero 已提交
252 253 254 255 256 257 258
			compositeAndEditorPromises.push(this.resolveEditorsToOpen().then((inputsWithOptions) => {
				let editorOpenPromise: TPromise<BaseEditor[]>;
				if (inputsWithOptions.length) {
					const editors = inputsWithOptions.map((inputWithOptions, index) => {
						return {
							input: inputWithOptions.input,
							options: inputWithOptions.options,
259
							position: Position.LEFT
B
Benjamin Pasero 已提交
260
						};
261 262
					});

B
Benjamin Pasero 已提交
263 264 265
					editorOpenPromise = this.editorPart.openEditors(editors);
				} else {
					editorOpenPromise = this.editorPart.restoreEditors();
266
				}
267 268

				return editorOpenPromise.then(() => {
269
					this.onEditorsChanged(); // make sure we show the proper background in the editor area
E
Erich Gamma 已提交
270 271 272 273 274
					editorTimerEvent.stop();
				});
			}));

			// Flag workbench as created once done
275
			const workbenchDone = (error?: Error) => {
E
Erich Gamma 已提交
276 277 278
				this.workbenchCreated = true;
				this.creationPromiseComplete(true);

B
Benjamin Pasero 已提交
279
				if (this.callbacks && this.callbacks.onWorkbenchStarted) {
280
					this.callbacks.onWorkbenchStarted(this.keybindingService.customKeybindingsCount());
B
Benjamin Pasero 已提交
281
				}
282 283 284 285 286 287

				if (error) {
					errors.onUnexpectedError(error);
				}
			};

B
polish  
Benjamin Pasero 已提交
288
			// Join viewlet, panel and editor promises
289
			TPromise.join(compositeAndEditorPromises).then(() => workbenchDone(), (error) => workbenchDone(error));
E
Erich Gamma 已提交
290 291 292 293 294 295 296 297 298 299
		} catch (error) {

			// Print out error
			console.error(errors.toErrorMessage(error, true));

			// Rethrow
			throw error;
		}
	}

B
Benjamin Pasero 已提交
300 301 302 303 304
	private resolveEditorsToOpen(): TPromise<{ input: EditorInput, options?: EditorOptions }[]> {

		// Files to open, diff or create
		const wbopt = this.workbenchParams.options;
		if ((wbopt.filesToCreate && wbopt.filesToCreate.length) || (wbopt.filesToOpen && wbopt.filesToOpen.length) || (wbopt.filesToDiff && wbopt.filesToDiff.length)) {
B
Benjamin Pasero 已提交
305 306 307
			const filesToCreate = wbopt.filesToCreate || [];
			const filesToOpen = wbopt.filesToOpen || [];
			const filesToDiff = wbopt.filesToDiff;
B
Benjamin Pasero 已提交
308 309 310

			// Files to diff is exclusive
			if (filesToDiff && filesToDiff.length) {
311
				return TPromise.join<EditorInput>(filesToDiff.map((resourceInput) => this.editorService.createInput(resourceInput))).then((inputsToDiff) => {
B
Benjamin Pasero 已提交
312 313 314 315 316 317
					return [{ input: new DiffEditorInput(toDiffLabel(filesToDiff[0].resource, filesToDiff[1].resource, this.contextService), null, inputsToDiff[0], inputsToDiff[1]) }];
				});
			}

			// Otherwise: Open/Create files
			else {
B
Benjamin Pasero 已提交
318 319
				const inputs: EditorInput[] = [];
				const options: EditorOptions[] = [];
B
Benjamin Pasero 已提交
320 321 322 323 324 325

				// Files to create
				inputs.push(...filesToCreate.map((resourceInput) => this.untitledEditorService.createOrGet(resourceInput.resource)));
				options.push(...filesToCreate.map(r => null)); // fill empty options for files to create because we dont have options there

				// Files to open
326
				return TPromise.join<EditorInput>(filesToOpen.map((resourceInput) => this.editorService.createInput(resourceInput))).then((inputsToOpen) => {
B
Benjamin Pasero 已提交
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
					inputs.push(...inputsToOpen);
					options.push(...filesToOpen.map(resourceInput => TextEditorOptions.from(resourceInput)));

					return inputs.map((input, index) => { return { input, options: options[index] }; });
				});
			}
		}

		// Empty workbench
		else if (!this.workbenchParams.workspace) {
			return TPromise.as([{ input: this.untitledEditorService.createOrGet() }]);
		}

		return TPromise.as([]);
	}

E
Erich Gamma 已提交
343
	private initServices(): void {
344 345
		const {serviceCollection} = this.workbenchParams;

346
		this.toDispose.push(this.lifecycleService.onShutdown(this.shutdownComponents, this));
E
Erich Gamma 已提交
347 348

		// Services we contribute
349
		serviceCollection.set(IPartService, this);
E
Erich Gamma 已提交
350

351 352 353 354 355 356 357
		// Status bar
		this.statusbarPart = this.instantiationService.createInstance(StatusbarPart, Identifiers.STATUSBAR_PART);
		this.toDispose.push(this.statusbarPart);
		this.toShutdown.push(this.statusbarPart);
		serviceCollection.set(IStatusbarService, this.statusbarPart);

		// Keybindings
A
Alex Dima 已提交
358
		this.contextKeyService = this.instantiationService.createInstance(ContextKeyService);
359
		serviceCollection.set(IContextKeyService, this.contextKeyService);
360

A
Alex Dima 已提交
361
		this.keybindingService = this.instantiationService.createInstance(WorkbenchKeybindingService, <any>window);
362
		serviceCollection.set(IKeybindingService, this.keybindingService);
A
Alex Dima 已提交
363

364
		// Context Menu
365
		serviceCollection.set(IContextMenuService, this.instantiationService.createInstance(ContextMenuService));
366

367 368
		// Menus/Actions
		serviceCollection.set(IMenuService, new SyncDescriptor(MenuService));
369

E
Erich Gamma 已提交
370
		// Viewlet service (sidebar part)
371
		this.sidebarPart = this.instantiationService.createInstance(SidebarPart, Identifiers.SIDEBAR_PART);
E
Erich Gamma 已提交
372 373
		this.toDispose.push(this.sidebarPart);
		this.toShutdown.push(this.sidebarPart);
374
		serviceCollection.set(IViewletService, this.sidebarPart);
E
Erich Gamma 已提交
375

I
isidor 已提交
376
		// Panel service (panel part)
377
		this.panelPart = this.instantiationService.createInstance(PanelPart, Identifiers.PANEL_PART);
I
isidor 已提交
378 379
		this.toDispose.push(this.panelPart);
		this.toShutdown.push(this.panelPart);
380
		serviceCollection.set(IPanelService, this.panelPart);
I
isidor 已提交
381

E
Erich Gamma 已提交
382
		// Activity service (activitybar part)
383
		this.activitybarPart = this.instantiationService.createInstance(ActivitybarPart, Identifiers.ACTIVITYBAR_PART);
E
Erich Gamma 已提交
384 385
		this.toDispose.push(this.activitybarPart);
		this.toShutdown.push(this.activitybarPart);
386
		serviceCollection.set(IActivityService, this.activitybarPart);
E
Erich Gamma 已提交
387 388

		// Editor service (editor part)
389
		this.editorPart = this.instantiationService.createInstance(EditorPart, Identifiers.EDITOR_PART);
E
Erich Gamma 已提交
390 391
		this.toDispose.push(this.editorPart);
		this.toShutdown.push(this.editorPart);
392
		this.editorService = this.instantiationService.createInstance(WorkbenchEditorService, this.editorPart);
393
		serviceCollection.set(IWorkbenchEditorService, this.editorService);
394
		serviceCollection.set(IEditorGroupService, this.editorPart);
E
Erich Gamma 已提交
395

396
		// History
397
		serviceCollection.set(IHistoryService, this.instantiationService.createInstance(HistoryService));
398

E
Erich Gamma 已提交
399
		// Quick open service (quick open controller)
400
		this.quickOpen = this.instantiationService.createInstance(QuickOpenController);
E
Erich Gamma 已提交
401 402
		this.toDispose.push(this.quickOpen);
		this.toShutdown.push(this.quickOpen);
403
		serviceCollection.set(IQuickOpenService, this.quickOpen);
E
Erich Gamma 已提交
404

B
polish  
Benjamin Pasero 已提交
405
		// Contributed services
B
Benjamin Pasero 已提交
406
		const contributedServices = getServices();
E
Erich Gamma 已提交
407
		for (let contributedService of contributedServices) {
408
			serviceCollection.set(contributedService.id, contributedService.descriptor);
E
Erich Gamma 已提交
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
		}

		// Set the some services to registries that have been created eagerly
		<IActionBarRegistry>Registry.as(ActionBarExtensions.Actionbar).setInstantiationService(this.instantiationService);
		<IWorkbenchContributionsRegistry>Registry.as(WorkbenchExtensions.Workbench).setInstantiationService(this.instantiationService);
		<IEditorRegistry>Registry.as(EditorExtensions.Editors).setInstantiationService(this.instantiationService);
	}

	private initSettings(): void {

		// Sidebar visibility
		this.sideBarHidden = this.storageService.getBoolean(Workbench.sidebarHiddenSettingKey, StorageScope.WORKSPACE, false);
		if (!!this.workbenchParams.options.singleFileMode) {
			this.sideBarHidden = true; // we hide sidebar in single-file-mode
		}

B
Benjamin Pasero 已提交
425
		const viewletRegistry = (<ViewletRegistry>Registry.as(ViewletExtensions.Viewlets));
I
isidor 已提交
426
		if (!viewletRegistry.getDefaultViewletId()) {
B
Benjamin Pasero 已提交
427
			this.sideBarHidden = true; // can only hide sidebar if we dont have a default Viewlet id
E
Erich Gamma 已提交
428 429
		}

I
isidor 已提交
430
		// Panel part visibility
B
Benjamin Pasero 已提交
431
		const panelRegistry = (<PanelRegistry>Registry.as(PanelExtensions.Panels));
I
isidor 已提交
432
		this.panelHidden = this.storageService.getBoolean(Workbench.panelHiddenSettingKey, StorageScope.WORKSPACE, true);
I
isidor 已提交
433
		if (!!this.workbenchParams.options.singleFileMode || !panelRegistry.getDefaultPanelId()) {
434
			this.panelHidden = true; // we hide panel part in single-file-mode or if there is no default panel
I
isidor 已提交
435
		}
I
isidor 已提交
436

E
Erich Gamma 已提交
437
		// Sidebar position
B
Benjamin Pasero 已提交
438
		const rawPosition = this.storageService.get(Workbench.sidebarPositionSettingKey, StorageScope.GLOBAL, 'left');
E
Erich Gamma 已提交
439
		this.sideBarPosition = (rawPosition === 'left') ? Position.LEFT : Position.RIGHT;
B
Benjamin Pasero 已提交
440 441

		// Statusbar visibility
442
		this.statusBarHidden = this.storageService.getBoolean(Workbench.statusbarHiddenSettingKey, StorageScope.GLOBAL, false);
E
Erich Gamma 已提交
443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
	}

	/**
	 * Returns whether the workbench has been started.
	 */
	public isStarted(): boolean {
		return this.workbenchStarted && !this.workbenchShutdown;
	}

	/**
	 * Returns whether the workbench has been fully created.
	 */
	public isCreated(): boolean {
		return this.workbenchCreated && this.workbenchStarted;
	}

	public joinCreation(): TPromise<boolean> {
		return this.creationPromise;
	}

	public hasFocus(part: Parts): boolean {
B
Benjamin Pasero 已提交
464
		const activeElement = document.activeElement;
E
Erich Gamma 已提交
465 466 467 468 469 470 471 472 473 474 475 476
		if (!activeElement) {
			return false;
		}

		let container: Builder = null;
		switch (part) {
			case Parts.ACTIVITYBAR_PART:
				container = this.activitybarPart.getContainer();
				break;
			case Parts.SIDEBAR_PART:
				container = this.sidebarPart.getContainer();
				break;
I
isidor 已提交
477 478 479
			case Parts.PANEL_PART:
				container = this.panelPart.getContainer();
				break;
E
Erich Gamma 已提交
480 481 482 483 484 485 486 487 488 489 490 491
			case Parts.EDITOR_PART:
				container = this.editorPart.getContainer();
				break;
			case Parts.STATUSBAR_PART:
				container = this.statusbarPart.getContainer();
				break;
		}

		return DOM.isAncestor(activeElement, container.getHTMLElement());
	}

	public isVisible(part: Parts): boolean {
B
Benjamin Pasero 已提交
492 493 494 495 496 497 498
		switch (part) {
			case Parts.SIDEBAR_PART:
				return !this.sideBarHidden;
			case Parts.PANEL_PART:
				return !this.panelHidden;
			case Parts.STATUSBAR_PART:
				return !this.statusBarHidden;
499
		}
E
Erich Gamma 已提交
500 501 502 503

		return true; // any other part cannot be hidden
	}

504 505 506 507 508 509 510 511 512 513 514
	public isStatusBarHidden(): boolean {
		return this.statusBarHidden;
	}

	public setStatusBarHidden(hidden: boolean, skipLayout?: boolean): void {
		this.statusBarHidden = hidden;

		// Layout
		if (!skipLayout) {
			this.workbenchLayout.layout(true);
		}
515

516
		this.storageService.store(Workbench.statusbarHiddenSettingKey, hidden ? 'true' : 'false');
517 518
	}

E
Erich Gamma 已提交
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
	public isSideBarHidden(): boolean {
		return this.sideBarHidden;
	}

	public setSideBarHidden(hidden: boolean, skipLayout?: boolean): void {
		this.sideBarHidden = hidden;

		// Adjust CSS
		if (hidden) {
			this.workbench.addClass('nosidebar');
		} else {
			this.workbench.removeClass('nosidebar');
		}

		// Layout
		if (!skipLayout) {
			this.workbenchLayout.layout(true);
		}

B
Benjamin Pasero 已提交
538
		// If sidebar becomes hidden, also hide the current active Viewlet if any
E
Erich Gamma 已提交
539 540 541 542
		if (hidden && this.sidebarPart.getActiveViewlet()) {
			this.sidebarPart.hideActiveViewlet();

			// Pass Focus to Editor if Sidebar is now hidden
B
Benjamin Pasero 已提交
543
			const editor = this.editorPart.getActiveEditor();
E
Erich Gamma 已提交
544 545 546 547 548
			if (editor) {
				editor.focus();
			}
		}

B
Benjamin Pasero 已提交
549
		// If sidebar becomes visible, show last active Viewlet or default viewlet
E
Erich Gamma 已提交
550
		else if (!hidden && !this.sidebarPart.getActiveViewlet()) {
B
Benjamin Pasero 已提交
551 552
			const registry = (<ViewletRegistry>Registry.as(ViewletExtensions.Viewlets));
			const viewletToOpen = this.sidebarPart.getLastActiveViewletId() || registry.getDefaultViewletId();
E
Erich Gamma 已提交
553 554 555 556 557 558 559 560 561
			if (viewletToOpen) {
				this.sidebarPart.openViewlet(viewletToOpen, true).done(null, errors.onUnexpectedError);
			}
		}

		// Remember in settings
		this.storageService.store(Workbench.sidebarHiddenSettingKey, hidden ? 'true' : 'false', StorageScope.WORKSPACE);
	}

I
isidor 已提交
562 563
	public isPanelHidden(): boolean {
		return this.panelHidden;
I
isidor 已提交
564 565
	}

B
Benjamin Pasero 已提交
566
	public setPanelHidden(hidden: boolean, skipLayout?: boolean): void {
I
isidor 已提交
567
		this.panelHidden = hidden;
I
isidor 已提交
568 569 570 571 572 573 574 575 576 577 578

		// Layout
		if (!skipLayout) {
			this.workbenchLayout.layout(true);
		}

		// If panel part becomes hidden, also hide the current active panel if any
		if (hidden && this.panelPart.getActivePanel()) {
			this.panelPart.hideActivePanel();

			// Pass Focus to Editor if Panel part is now hidden
B
Benjamin Pasero 已提交
579
			const editor = this.editorPart.getActiveEditor();
I
isidor 已提交
580 581 582 583 584 585 586
			if (editor) {
				editor.focus();
			}
		}

		// If panel part becomes visible, show last active panel or default panel
		else if (!hidden && !this.panelPart.getActivePanel()) {
B
Benjamin Pasero 已提交
587 588
			const registry = (<PanelRegistry>Registry.as(PanelExtensions.Panels));
			const panelToOpen = this.panelPart.getLastActivePanelId() || registry.getDefaultPanelId();
I
isidor 已提交
589 590 591 592 593 594
			if (panelToOpen) {
				this.panelPart.openPanel(panelToOpen, true).done(null, errors.onUnexpectedError);
			}
		}

		// Remember in settings
I
isidor 已提交
595
		this.storageService.store(Workbench.panelHiddenSettingKey, hidden ? 'true' : 'false', StorageScope.WORKSPACE);
I
isidor 已提交
596 597
	}

E
Erich Gamma 已提交
598 599 600 601 602 603 604 605 606
	public getSideBarPosition(): Position {
		return this.sideBarPosition;
	}

	public setSideBarPosition(position: Position): void {
		if (this.sideBarHidden) {
			this.setSideBarHidden(false, true /* Skip Layout */);
		}

B
Benjamin Pasero 已提交
607 608
		const newPositionValue = (position === Position.LEFT) ? 'left' : 'right';
		const oldPositionValue = (this.sideBarPosition === Position.LEFT) ? 'left' : 'right';
E
Erich Gamma 已提交
609 610 611 612 613 614 615 616 617 618 619 620 621 622 623
		this.sideBarPosition = position;

		// Adjust CSS
		this.activitybarPart.getContainer().removeClass(oldPositionValue);
		this.sidebarPart.getContainer().removeClass(oldPositionValue);
		this.activitybarPart.getContainer().addClass(newPositionValue);
		this.sidebarPart.getContainer().addClass(newPositionValue);

		// Layout
		this.workbenchLayout.layout(true);

		// Remember in settings
		this.storageService.store(Workbench.sidebarPositionSettingKey, position === Position.LEFT ? 'left' : 'right', StorageScope.GLOBAL);
	}

B
Benjamin Pasero 已提交
624
	public dispose(): void {
E
Erich Gamma 已提交
625
		if (this.isStarted()) {
B
Benjamin Pasero 已提交
626
			this.shutdownComponents();
E
Erich Gamma 已提交
627 628 629
			this.workbenchShutdown = true;
		}

J
Joao Moreno 已提交
630
		this.toDispose = dispose(this.toDispose);
E
Erich Gamma 已提交
631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
	}

	/**
	 * Asks the workbench and all its UI components inside to lay out according to
	 * the containers dimension the workbench is living in.
	 */
	public layout(): void {
		if (this.isStarted()) {
			this.workbenchLayout.layout();
		}
	}

	private shutdownComponents(): void {

		// Pass shutdown on to each participant
		this.toShutdown.forEach(s => s.shutdown());
	}

	private registerEmitters(): void {

		// Part Emitters
		this.hookPartListeners(this.activitybarPart);
		this.hookPartListeners(this.editorPart);
		this.hookPartListeners(this.sidebarPart);
I
isidor 已提交
655
		this.hookPartListeners(this.panelPart);
E
Erich Gamma 已提交
656 657 658
	}

	private hookPartListeners(part: Part): void {
A
Alex Dima 已提交
659
		this.toDispose.push(this.eventService.addEmitter2(part, part.getId()));
E
Erich Gamma 已提交
660 661 662 663 664
	}

	private registerListeners(): void {

		// Listen to editor changes
665
		this.toDispose.push(this.editorPart.onEditorsChanged(() => this.onEditorsChanged()));
666 667 668

		// Handle message service and quick open events
		if (this.messageService instanceof WorkbenchMessageService) {
669 670
			this.toDispose.push((<WorkbenchMessageService>this.messageService).onMessagesShowing(() => this.messagesVisibleContext.set(true)));
			this.toDispose.push((<WorkbenchMessageService>this.messageService).onMessagesCleared(() => this.messagesVisibleContext.reset()));
671 672 673 674

			this.toDispose.push(this.quickOpen.onShow(() => (<WorkbenchMessageService>this.messageService).suspend())); // when quick open is open, don't show messages behind
			this.toDispose.push(this.quickOpen.onHide(() => (<WorkbenchMessageService>this.messageService).resume()));  // resume messages once quick open is closed again
		}
E
Erich Gamma 已提交
675 676
	}

677
	private onEditorsChanged(): void {
B
Benjamin Pasero 已提交
678
		const visibleEditors = this.editorService.getVisibleEditors().length;
E
Erich Gamma 已提交
679 680 681 682

		// We update the editorpart class to indicate if an editor is opened or not
		// through a delay to accomodate for fast editor switching

683
		const editorContainer = this.editorPart.getContainer();
E
Erich Gamma 已提交
684
		if (visibleEditors === 0) {
685
			this.editorsVisibleContext.reset();
686
			this.editorBackgroundDelayer.trigger(() => editorContainer.addClass('empty'));
E
Erich Gamma 已提交
687
		} else {
688
			this.editorsVisibleContext.set(true);
689
			this.editorBackgroundDelayer.trigger(() => editorContainer.removeClass('empty'));
E
Erich Gamma 已提交
690 691 692 693
		}
	}

	private createWorkbenchLayout(): void {
B
Benjamin Pasero 已提交
694
		const options = new LayoutOptions();
E
Erich Gamma 已提交
695 696 697 698 699
		options.setMargin(new Box(0, 0, 0, 0));

		this.workbenchLayout = this.instantiationService.createInstance(WorkbenchLayout,
			$(this.container),							// Parent
			this.workbench,								// Workbench Container
I
isidor 已提交
700 701 702 703 704 705 706
			{
				activitybar: this.activitybarPart,		// Activity Bar
				editor: this.editorPart,				// Editor
				sidebar: this.sidebarPart,				// Sidebar
				panel: this.panelPart,					// Panel Part
				statusbar: this.statusbarPart,			// Statusbar
			},
E
Erich Gamma 已提交
707 708 709 710 711 712 713 714 715 716 717
			this.quickOpen,								// Quickopen
			options										// Layout Options
		);

		this.toDispose.push(this.workbenchLayout);
	}

	private createWorkbench(): void {

		// Create Workbench DIV Off-DOM
		this.workbenchContainer = $('.monaco-workbench-container');
718
		this.workbench = $().div({ 'class': 'monaco-workbench ' + (isWindows ? 'windows' : isLinux ? 'linux' : 'mac'), id: Identifiers.WORKBENCH_CONTAINER }).appendTo(this.workbenchContainer);
E
Erich Gamma 已提交
719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736
	}

	private renderWorkbench(): void {

		// Apply sidebar state as CSS class
		if (this.sideBarHidden) {
			this.workbench.addClass('nosidebar');
		}

		// Apply no-workspace state as CSS class
		if (!this.workbenchParams.workspace) {
			this.workbench.addClass('no-workspace');
		}

		// Create Parts
		this.createActivityBarPart();
		this.createSidebarPart();
		this.createEditorPart();
737
		this.createPanelPart();
E
Erich Gamma 已提交
738 739 740 741 742 743 744
		this.createStatusbarPart();

		// Add Workbench to DOM
		this.workbenchContainer.build(this.container);
	}

	private createActivityBarPart(): void {
B
Benjamin Pasero 已提交
745
		const activitybarPartContainer = $(this.workbench)
E
Erich Gamma 已提交
746 747
			.div({
				'class': ['part', 'activitybar', this.sideBarPosition === Position.LEFT ? 'left' : 'right'],
748 749
				id: Identifiers.ACTIVITYBAR_PART,
				role: 'navigation'
E
Erich Gamma 已提交
750 751 752 753 754 755
			});

		this.activitybarPart.create(activitybarPartContainer);
	}

	private createSidebarPart(): void {
B
Benjamin Pasero 已提交
756
		const sidebarPartContainer = $(this.workbench)
E
Erich Gamma 已提交
757 758
			.div({
				'class': ['part', 'sidebar', this.sideBarPosition === Position.LEFT ? 'left' : 'right'],
759 760
				id: Identifiers.SIDEBAR_PART,
				role: 'complementary'
E
Erich Gamma 已提交
761 762 763 764 765
			});

		this.sidebarPart.create(sidebarPartContainer);
	}

I
isidor 已提交
766
	private createPanelPart(): void {
B
Benjamin Pasero 已提交
767
		const panelPartContainer = $(this.workbench)
I
isidor 已提交
768
			.div({
769
				'class': ['part', 'panel', 'monaco-editor-background'],
770 771
				id: Identifiers.PANEL_PART,
				role: 'complementary'
I
isidor 已提交
772 773 774 775 776
			});

		this.panelPart.create(panelPartContainer);
	}

E
Erich Gamma 已提交
777
	private createEditorPart(): void {
B
Benjamin Pasero 已提交
778
		const editorContainer = $(this.workbench)
E
Erich Gamma 已提交
779
			.div({
780
				'class': ['part', 'editor', 'monaco-editor-background'],
781 782
				id: Identifiers.EDITOR_PART,
				role: 'main'
E
Erich Gamma 已提交
783 784 785 786 787 788
			});

		this.editorPart.create(editorContainer);
	}

	private createStatusbarPart(): void {
B
Benjamin Pasero 已提交
789
		const statusbarContainer = $(this.workbench).div({
E
Erich Gamma 已提交
790
			'class': ['part', 'statusbar'],
791 792
			id: Identifiers.STATUSBAR_PART,
			role: 'contentinfo'
E
Erich Gamma 已提交
793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809
		});

		this.statusbarPart.create(statusbarContainer);
	}

	public getEditorPart(): EditorPart {
		assert.ok(this.workbenchStarted, 'Workbench is not started. Call startup() first.');

		return this.editorPart;
	}

	public getSidebarPart(): SidebarPart {
		assert.ok(this.workbenchStarted, 'Workbench is not started. Call startup() first.');

		return this.sidebarPart;
	}

I
isidor 已提交
810 811 812 813 814 815
	public getPanelPart(): PanelPart {
		assert.ok(this.workbenchStarted, 'Workbench is not started. Call startup() first.');

		return this.panelPart;
	}

E
Erich Gamma 已提交
816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833
	public getInstantiationService(): IInstantiationService {
		assert.ok(this.workbenchStarted, 'Workbench is not started. Call startup() first.');

		return this.instantiationService;
	}

	public addClass(clazz: string): void {
		if (this.workbench) {
			this.workbench.addClass(clazz);
		}
	}

	public removeClass(clazz: string): void {
		if (this.workbench) {
			this.workbench.removeClass(clazz);
		}
	}
}