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

7
import {TPromise} from 'vs/base/common/winjs.base';
E
Erich Gamma 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
import nls = require('vs/nls');
import lifecycle = require('vs/base/common/lifecycle');
import objects = require('vs/base/common/objects');
import DOM = require('vs/base/browser/dom');
import URI from 'vs/base/common/uri';
import {MIME_BINARY} from 'vs/base/common/mime';
import async = require('vs/base/common/async');
import paths = require('vs/base/common/paths');
import errors = require('vs/base/common/errors');
import {isString} from 'vs/base/common/types';
import Actions = require('vs/base/common/actions');
import comparers = require('vs/base/common/comparers');
import {InputBox} from 'vs/base/browser/ui/inputbox/inputBox';
import {$} from 'vs/base/browser/builder';
import platform = require('vs/base/common/platform');
import glob = require('vs/base/common/glob');
import {ContributableActionProvider} from 'vs/workbench/browser/actionBarRegistry';
import {LocalFileChangeEvent, ConfirmResult, IFilesConfiguration, ITextFileService} from 'vs/workbench/parts/files/common/files';
import {IFileOperationResult, FileOperationResult, IFileStat, IFileService} from 'vs/platform/files/common/files';
import {FileEditorInput} from 'vs/workbench/parts/files/browser/editors/fileEditorInput';
import {DuplicateFileAction, ImportFileAction, PasteFileAction, keybindingForAction, IEditableData, IFileViewletState} from 'vs/workbench/parts/files/browser/fileActions';
import {EditorOptions} from 'vs/workbench/common/editor';
B
Benjamin Pasero 已提交
30
import {IDataSource, ITree, IElementCallback, IAccessibilityProvider, IRenderer, ContextMenuEvent, ISorter, IFilter, IDragAndDrop, IDragAndDropData, IDragOverReaction, DRAG_OVER_ACCEPT_BUBBLE_DOWN, DRAG_OVER_ACCEPT_BUBBLE_DOWN_COPY, DRAG_OVER_ACCEPT_BUBBLE_UP, DRAG_OVER_ACCEPT_BUBBLE_UP_COPY, DRAG_OVER_REJECT} from 'vs/base/parts/tree/browser/tree';
E
Erich Gamma 已提交
31 32 33 34
import labels = require('vs/base/common/labels');
import {DesktopDragAndDropData, ExternalElementsDragAndDropData} from 'vs/base/parts/tree/browser/treeDnd';
import {ClickBehavior, DefaultController} from 'vs/base/parts/tree/browser/treeDefaults';
import {ActionsRenderer} from 'vs/base/parts/tree/browser/actionsRenderer';
35
import {FileStat, NewStatPlaceholder} from 'vs/workbench/parts/files/common/explorerViewModel';
A
Alex Dima 已提交
36
import {DragMouseEvent, IMouseEvent} from 'vs/base/browser/mouseEvent';
E
Erich Gamma 已提交
37 38 39 40 41 42 43 44 45 46 47
import {IWorkbenchEditorService} from 'vs/workbench/services/editor/common/editorService';
import {IPartService} from 'vs/workbench/services/part/common/partService';
import {IWorkspaceContextService} from 'vs/workbench/services/workspace/common/contextService';
import {IWorkspace} from 'vs/platform/workspace/common/workspace';
import {IContextViewService, IContextMenuService} from 'vs/platform/contextview/browser/contextView';
import {IEventService} from 'vs/platform/event/common/event';
import {IInstantiationService} from 'vs/platform/instantiation/common/instantiation';
import {IMessageService, IConfirmation, Severity} from 'vs/platform/message/common/message';
import {IProgressService} from 'vs/platform/progress/common/progress';
import {ITelemetryService} from 'vs/platform/telemetry/common/telemetry';
import {Keybinding, CommonKeybindings} from 'vs/base/common/keyCodes';
A
Cleanup  
Alex Dima 已提交
48
import {IKeyboardEvent} from 'vs/base/browser/keyboardEvent';
E
Erich Gamma 已提交
49

B
Benjamin Pasero 已提交
50
export class FileDataSource implements IDataSource {
E
Erich Gamma 已提交
51 52 53 54 55 56 57 58 59 60 61 62
	private workspace: IWorkspace;

	constructor(
		@IProgressService private progressService: IProgressService,
		@IMessageService private messageService: IMessageService,
		@IFileService private fileService: IFileService,
		@IPartService private partService: IPartService,
		@IWorkspaceContextService contextService: IWorkspaceContextService
	) {
		this.workspace = contextService.getWorkspace();
	}

B
Benjamin Pasero 已提交
63
	public getId(tree: ITree, stat: FileStat): string {
E
Erich Gamma 已提交
64 65 66
		return stat.getId();
	}

B
Benjamin Pasero 已提交
67
	public hasChildren(tree: ITree, stat: FileStat): boolean {
E
Erich Gamma 已提交
68 69 70
		return stat.isDirectory;
	}

B
Benjamin Pasero 已提交
71
	public getChildren(tree: ITree, stat: FileStat): TPromise<FileStat[]> {
E
Erich Gamma 已提交
72 73 74

		// Return early if stat is already resolved
		if (stat.isDirectoryResolved) {
A
Alex Dima 已提交
75
			return TPromise.as(stat.children);
E
Erich Gamma 已提交
76 77 78 79 80 81 82 83 84 85 86
		}

		// Resolve children and add to fileStat for future lookup
		else {

			// Resolve
			let promise = this.fileService.resolveFile(stat.resource, { resolveSingleChildDescendants: true }).then((dirStat: IFileStat) => {

				// Convert to view model
				let modelDirStat = FileStat.create(dirStat);

87
				// Add children to folder
E
Erich Gamma 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100
				for (let i = 0; i < modelDirStat.children.length; i++) {
					stat.addChild(modelDirStat.children[i]);
				}

				stat.isDirectoryResolved = true;

				return stat.children;
			}, (e: any) => {
				this.messageService.show(Severity.Error, e);

				return []; // we could not resolve any children because of an error
			});

101
			this.progressService.showWhile(promise, this.partService.isCreated() ? 800 : 3200 /* less ugly initial startup */);
E
Erich Gamma 已提交
102 103 104 105 106

			return promise;
		}
	}

B
Benjamin Pasero 已提交
107
	public getParent(tree: ITree, stat: FileStat): TPromise<FileStat> {
E
Erich Gamma 已提交
108
		if (!stat) {
A
Alex Dima 已提交
109
			return TPromise.as(null); // can be null if nothing selected in the tree
E
Erich Gamma 已提交
110 111 112 113
		}

		// Return if root reached
		if (this.workspace && stat.resource.toString() === this.workspace.resource.toString()) {
A
Alex Dima 已提交
114
			return TPromise.as(null);
E
Erich Gamma 已提交
115 116 117 118
		}

		// Return if parent already resolved
		if (stat.parent) {
A
Alex Dima 已提交
119
			return TPromise.as(stat.parent);
E
Erich Gamma 已提交
120 121 122 123 124
		}

		// We never actually resolve the parent from the disk for performance reasons. It wouldnt make
		// any sense to resolve parent by parent with requests to walk up the chain. Instead, the explorer
		// makes sure to properly resolve a deep path to a specific file and merges the result with the model.
A
Alex Dima 已提交
125
		return TPromise.as(null);
E
Erich Gamma 已提交
126 127 128 129 130 131 132 133 134 135 136 137
	}
}

export class FileActionProvider extends ContributableActionProvider {
	private state: FileViewletState;

	constructor(state: any) {
		super();

		this.state = state;
	}

B
Benjamin Pasero 已提交
138
	public hasActions(tree: ITree, stat: FileStat): boolean {
E
Erich Gamma 已提交
139 140 141 142 143 144 145
		if (stat instanceof NewStatPlaceholder) {
			return false;
		}

		return super.hasActions(tree, stat);
	}

B
Benjamin Pasero 已提交
146
	public getActions(tree: ITree, stat: FileStat): TPromise<Actions.IAction[]> {
E
Erich Gamma 已提交
147
		if (stat instanceof NewStatPlaceholder) {
A
Alex Dima 已提交
148
			return TPromise.as([]);
E
Erich Gamma 已提交
149 150 151 152 153
		}

		return super.getActions(tree, stat);
	}

B
Benjamin Pasero 已提交
154
	public hasSecondaryActions(tree: ITree, stat: FileStat): boolean {
E
Erich Gamma 已提交
155 156 157 158 159 160 161
		if (stat instanceof NewStatPlaceholder) {
			return false;
		}

		return super.hasSecondaryActions(tree, stat);
	}

B
Benjamin Pasero 已提交
162
	public getSecondaryActions(tree: ITree, stat: FileStat): TPromise<Actions.IAction[]> {
E
Erich Gamma 已提交
163
		if (stat instanceof NewStatPlaceholder) {
A
Alex Dima 已提交
164
			return TPromise.as([]);
E
Erich Gamma 已提交
165 166 167 168 169
		}

		return super.getSecondaryActions(tree, stat);
	}

170 171 172
	public runAction(tree: ITree, stat: FileStat, action: Actions.IAction, context?: any): TPromise<any>;
	public runAction(tree: ITree, stat: FileStat, actionID: string, context?: any): TPromise<any>;
	public runAction(tree: ITree, stat: FileStat, arg: any, context: any = {}): TPromise<any> {
E
Erich Gamma 已提交
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
		context = objects.mixin({
			viewletState: this.state,
			stat: stat
		}, context);

		if (!isString(arg)) {
			let action = <Actions.IAction>arg;
			if (action.enabled) {
				return action.run(context);
			}

			return null;
		}

		let id = <string>arg;
A
Alex Dima 已提交
188
		let promise = this.hasActions(tree, stat) ? this.getActions(tree, stat) : TPromise.as([]);
E
Erich Gamma 已提交
189 190 191 192 193 194 195 196

		return promise.then((actions: Actions.IAction[]) => {
			for (let i = 0, len = actions.length; i < len; i++) {
				if (actions[i].id === id && actions[i].enabled) {
					return actions[i].run(context);
				}
			}

A
Alex Dima 已提交
197
			promise = this.hasSecondaryActions(tree, stat) ? this.getSecondaryActions(tree, stat) : TPromise.as([]);
E
Erich Gamma 已提交
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248

			return promise.then((actions: Actions.IAction[]) => {
				for (let i = 0, len = actions.length; i < len; i++) {
					if (actions[i].id === id && actions[i].enabled) {
						return actions[i].run(context);
					}
				}

				return null;
			});
		});
	}
}

export class FileViewletState implements IFileViewletState {
	private _actionProvider: FileActionProvider;
	private editableStats: { [resource: string]: IEditableData; };

	constructor() {
		this._actionProvider = new FileActionProvider(this);
		this.editableStats = Object.create(null);
	}

	public get actionProvider(): FileActionProvider {
		return this._actionProvider;
	}

	public getEditableData(stat: FileStat): IEditableData {
		return this.editableStats[stat.resource && stat.resource.toString()];
	}

	public setEditable(stat: FileStat, editableData: IEditableData): void {
		if (editableData) {
			this.editableStats[stat.resource && stat.resource.toString()] = editableData;
		}
	}

	public clearEditable(stat: FileStat): void {
		delete this.editableStats[stat.resource && stat.resource.toString()];
	}
}

export class ActionRunner extends Actions.ActionRunner implements Actions.IActionRunner {
	private viewletState: FileViewletState;

	constructor(state: FileViewletState) {
		super();

		this.viewletState = state;
	}

249
	public run(action: Actions.IAction, context?: any): TPromise<any> {
E
Erich Gamma 已提交
250 251 252 253 254
		return super.run(action, { viewletState: this.viewletState });
	}
}

// Explorer Renderer
B
Benjamin Pasero 已提交
255
export class FileRenderer extends ActionsRenderer implements IRenderer {
E
Erich Gamma 已提交
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
	private state: FileViewletState;

	constructor(
		state: FileViewletState,
		actionRunner: Actions.IActionRunner,
		@IContextViewService private contextViewService: IContextViewService
	) {
		super({
			actionProvider: state.actionProvider,
			actionRunner: actionRunner
		});

		this.state = state;
	}

B
Benjamin Pasero 已提交
271
	public getContentHeight(tree: ITree, element: any): number {
I
isidor 已提交
272
		return 22;
E
Erich Gamma 已提交
273 274
	}

B
Benjamin Pasero 已提交
275
	public renderContents(tree: ITree, stat: FileStat, domElement: HTMLElement, previousCleanupFn: IElementCallback): IElementCallback {
E
Erich Gamma 已提交
276 277 278 279 280 281 282 283
		let el = $(domElement).clearChildren();
		let item = $('.explorer-item').addClass(this.iconClass(stat)).appendTo(el);

		// File/Folder label
		let editableData: IEditableData = this.state.getEditableData(stat);
		if (!editableData) {
			let label = $('.explorer-item-label').appendTo(item);
			$('a.plain').text(stat.name).appendTo(label);
J
Joao Moreno 已提交
284
			return null;
E
Erich Gamma 已提交
285 286 287
		}

		// Input field (when creating a new file or folder or renaming)
J
Joao Moreno 已提交
288 289 290 291
		let inputBox = new InputBox(item.getHTMLElement(), this.contextViewService, {
			validationOptions: {
				validation: editableData.validator,
				showMessage: true
292 293
			},
			ariaLabel: nls.localize('fileInputAriaLabel', "Type file name. Press Enter to confirm or Escape to cancel.")
J
Joao Moreno 已提交
294
		});
E
Erich Gamma 已提交
295

J
Joao Moreno 已提交
296 297
		let value = stat.name || '';
		let lastDot = value.lastIndexOf('.');
E
Erich Gamma 已提交
298

J
Joao Moreno 已提交
299 300 301
		inputBox.value = value;
		inputBox.select({ start: 0, end: lastDot > 0 && !stat.isDirectory ? lastDot : value.length });
		inputBox.focus();
E
Erich Gamma 已提交
302

J
Joao Moreno 已提交
303
		let done = async.once<boolean, void>(commit => {
J
Joao Moreno 已提交
304 305
			tree.clearHighlight();

J
Joao Moreno 已提交
306
			if (commit && inputBox.value) {
E
Erich Gamma 已提交
307
				this.state.actionProvider.runAction(tree, stat, editableData.action, { value: inputBox.value });
J
Joao Moreno 已提交
308
			}
E
Erich Gamma 已提交
309

J
Joao Moreno 已提交
310 311
			setTimeout(() => {
				tree.DOMFocus();
J
Joao Moreno 已提交
312
				lifecycle.dispose(toDispose);
J
Joao Moreno 已提交
313
			}, 0);
J
Joao Moreno 已提交
314
		});
E
Erich Gamma 已提交
315

J
Joao Moreno 已提交
316 317
		var toDispose = [
			inputBox,
A
Cleanup  
Alex Dima 已提交
318
			DOM.addStandardDisposableListener(inputBox.inputElement, DOM.EventType.KEY_DOWN, (e: IKeyboardEvent) => {
J
Joao Moreno 已提交
319 320 321 322 323 324 325 326 327 328 329 330
				if (e.equals(CommonKeybindings.ENTER)) {
					if (inputBox.validate()) {
						done(true);
					}
				} else if (e.equals(CommonKeybindings.ESCAPE)) {
					done(false);
				}
			}),
			DOM.addDisposableListener(inputBox.inputElement, 'blur', () => {
				done(inputBox.isInputValid());
			})
		];
E
Erich Gamma 已提交
331

J
Joao Moreno 已提交
332
		return () => done(true);
E
Erich Gamma 已提交
333 334 335 336 337 338 339 340 341 342 343
	}

	private iconClass(element: FileStat): string {
		if (element.isDirectory) {
			return 'folder-icon';
		}

		return 'text-file-icon';
	}
}

344
// Explorer Accessibility Provider
B
Benjamin Pasero 已提交
345
export class FileAccessibilityProvider implements IAccessibilityProvider {
346

B
Benjamin Pasero 已提交
347
	public getAriaLabel(tree: ITree, stat: FileStat): string {
348
		return nls.localize('filesExplorerViewerAriaLabel', "{0}, Files Explorer", stat.name);
349 350 351
	}
}

E
Erich Gamma 已提交
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
// Explorer Controller
export class FileController extends DefaultController {
	private didCatchEnterDown: boolean;
	private state: FileViewletState;

	private workspace: IWorkspace;

	constructor(state: FileViewletState,
		@IWorkbenchEditorService private editorService: IWorkbenchEditorService,
		@ITextFileService private textFileService: ITextFileService,
		@IContextMenuService private contextMenuService: IContextMenuService,
		@IEventService private eventService: IEventService,
		@IInstantiationService private instantiationService: IInstantiationService,
		@ITelemetryService private telemetryService: ITelemetryService,
		@IWorkspaceContextService private contextService: IWorkspaceContextService
	) {
		super({ clickBehavior: ClickBehavior.ON_MOUSE_DOWN });

		this.workspace = contextService.getWorkspace();

		this.didCatchEnterDown = false;

		this.downKeyBindingDispatcher.set(platform.isMacintosh ? CommonKeybindings.CTRLCMD_DOWN_ARROW : CommonKeybindings.ENTER, this.onEnterDown.bind(this));
		this.upKeyBindingDispatcher.set(platform.isMacintosh ? CommonKeybindings.CTRLCMD_DOWN_ARROW : CommonKeybindings.ENTER, this.onEnterUp.bind(this));
		if (platform.isMacintosh) {
			this.upKeyBindingDispatcher.set(CommonKeybindings.WINCTRL_ENTER, this.onModifierEnterUp.bind(this)); // Mac: somehow Cmd+Enter does not work
		} else {
			this.upKeyBindingDispatcher.set(CommonKeybindings.CTRLCMD_ENTER, this.onModifierEnterUp.bind(this)); // Mac: somehow Cmd+Enter does not work
		}
		this.downKeyBindingDispatcher.set(platform.isMacintosh ? CommonKeybindings.ENTER : CommonKeybindings.F2, this.onF2.bind(this));
		this.downKeyBindingDispatcher.set(CommonKeybindings.CTRLCMD_C, this.onCopy.bind(this));
		this.downKeyBindingDispatcher.set(CommonKeybindings.CTRLCMD_V, this.onPaste.bind(this));

		if (platform.isMacintosh) {
			this.downKeyBindingDispatcher.set(CommonKeybindings.CTRLCMD_UP_ARROW, this.onLeft.bind(this));
			this.downKeyBindingDispatcher.set(CommonKeybindings.CTRLCMD_BACKSPACE, this.onDelete.bind(this));
		} else {
			this.downKeyBindingDispatcher.set(CommonKeybindings.DELETE, this.onDelete.bind(this));
			this.downKeyBindingDispatcher.set(CommonKeybindings.SHIFT_DELETE, this.onDelete.bind(this));
		}

		this.state = state;
	}

A
Alex Dima 已提交
396
	/* protected */ public onLeftClick(tree: ITree, stat: FileStat, event: IMouseEvent, origin: string = 'mouse'): boolean {
E
Erich Gamma 已提交
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
		let payload = { origin: origin };
		let isDoubleClick = (origin === 'mouse' && event.detail === 2);

		// Handle Highlight Mode
		if (tree.getHighlight()) {

			// Cancel Event
			event.preventDefault();
			event.stopPropagation();

			tree.clearHighlight(payload);

			return false;
		}

		// Handle root
		if (this.workspace && stat.resource.toString() === this.workspace.resource.toString()) {
			tree.clearFocus(payload);
			tree.clearSelection(payload);

			return false;
		}

		// Cancel Event
		let isMouseDown = event && event.browserEvent && event.browserEvent.type === 'mousedown';
		if (!isMouseDown) {
			event.preventDefault(); // we cannot preventDefault onMouseDown because this would break DND otherwise
		}
		event.stopPropagation();

		// Set DOM focus
		tree.DOMFocus();

		// Expand / Collapse
		tree.toggleExpansion(stat);

		// Allow to unselect
		if (event.shiftKey && !(stat instanceof NewStatPlaceholder)) {
			let selection = tree.getSelection();
436
			if (selection && selection.length > 0 && selection[0] === stat) {
E
Erich Gamma 已提交
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 462 463 464
				tree.clearSelection(payload);
			}
		}

		// Select, Focus and open files
		else if (!(stat instanceof NewStatPlaceholder)) {
			let preserveFocus = !isDoubleClick;
			tree.setFocus(stat, payload);

			if (isDoubleClick) {
				event.preventDefault(); // focus moves to editor, we need to prevent default
			}

			if (!stat.isDirectory) {
				tree.setSelection([stat], payload);

				this.openEditor(stat, preserveFocus, event && (event.ctrlKey || event.metaKey));

				// Doubleclick: add to working files set
				if (isDoubleClick) {
					this.textFileService.getWorkingFilesModel().addEntry(stat);
				}
			}
		}

		return true;
	}

B
Benjamin Pasero 已提交
465
	public onContextMenu(tree: ITree, stat: FileStat, event: ContextMenuEvent): boolean {
E
Erich Gamma 已提交
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
		if (event.target && event.target.tagName && event.target.tagName.toLowerCase() === 'input') {
			return false;
		}

		event.preventDefault();
		event.stopPropagation();

		tree.setFocus(stat);

		if (!this.state.actionProvider.hasSecondaryActions(tree, stat)) {
			return true;
		}

		let anchor = { x: event.posx + 1, y: event.posy };
		this.contextMenuService.showContextMenu({
			getAnchor: () => anchor,
			getActions: () => this.state.actionProvider.getSecondaryActions(tree, stat),
			getActionItem: this.state.actionProvider.getActionItem.bind(this.state.actionProvider, tree, stat),
			getKeyBinding: (a): Keybinding => keybindingForAction(a.id),
			getActionsContext: () => {
				return {
					viewletState: this.state,
					stat: stat
				};
			},
			onHide: (wasCancelled?: boolean) => {
				if (wasCancelled) {
					tree.DOMFocus();
				}
			}
		});

		return true;
	}

A
Cleanup  
Alex Dima 已提交
501
	private onEnterDown(tree: ITree, event: IKeyboardEvent): boolean {
E
Erich Gamma 已提交
502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
		if (tree.getHighlight()) {
			return false;
		}

		let payload = { origin: 'keyboard' };

		let stat: FileStat = tree.getFocus();
		if (stat) {

			// Directory: Toggle expansion
			if (stat.isDirectory) {
				tree.toggleExpansion(stat);
			}

			// File: Open
			else {
				tree.setFocus(stat, payload);
				this.openEditor(stat, false, false);
			}
		}

		this.didCatchEnterDown = true;

		return true;
	}

A
Cleanup  
Alex Dima 已提交
528
	private onEnterUp(tree: ITree, event: IKeyboardEvent): boolean {
E
Erich Gamma 已提交
529 530 531 532 533 534 535 536 537 538 539 540 541 542
		if (!this.didCatchEnterDown || tree.getHighlight()) {
			return false;
		}

		let stat: FileStat = tree.getFocus();
		if (stat && !stat.isDirectory) {
			this.openEditor(stat, false, false);
		}

		this.didCatchEnterDown = false;

		return true;
	}

A
Cleanup  
Alex Dima 已提交
543
	private onModifierEnterUp(tree: ITree, event: IKeyboardEvent): boolean {
E
Erich Gamma 已提交
544 545 546 547 548 549 550 551 552 553 554 555 556 557
		if (tree.getHighlight()) {
			return false;
		}

		let stat: FileStat = tree.getFocus();
		if (stat && !stat.isDirectory) {
			this.openEditor(stat, false, true);
		}

		this.didCatchEnterDown = false;

		return true;
	}

A
Cleanup  
Alex Dima 已提交
558
	private onCopy(tree: ITree, event: IKeyboardEvent): boolean {
E
Erich Gamma 已提交
559 560 561 562 563 564 565 566 567 568
		let stat: FileStat = tree.getFocus();
		if (stat) {
			this.runAction(tree, stat, 'workbench.files.action.copyFile').done();

			return true;
		}

		return false;
	}

A
Cleanup  
Alex Dima 已提交
569
	private onPaste(tree: ITree, event: IKeyboardEvent): boolean {
E
Erich Gamma 已提交
570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
		let stat: FileStat = tree.getFocus() || tree.getInput() /* root */;
		if (stat) {
			let pasteAction = this.instantiationService.createInstance(PasteFileAction, tree, stat);
			if (pasteAction._isEnabled()) {
				pasteAction.run().done(null, errors.onUnexpectedError);

				return true;
			}
		}

		return false;
	}

	private openEditor(stat: FileStat, preserveFocus: boolean, sideBySide: boolean): void {
		if (stat && !stat.isDirectory) {
			let editorInput = this.instantiationService.createInstance(FileEditorInput, stat.resource, stat.mime, void 0);
			let editorOptions = new EditorOptions();
			if (preserveFocus) {
				editorOptions.preserveFocus = true;
			}

			this.telemetryService.publicLog('workbenchActionExecuted', { id: 'workbench.files.openFile', from: 'explorer' });

			this.editorService.openEditor(editorInput, editorOptions, sideBySide).done(null, errors.onUnexpectedError);
		}
	}

A
Cleanup  
Alex Dima 已提交
597
	private onF2(tree: ITree, event: IKeyboardEvent): boolean {
E
Erich Gamma 已提交
598 599 600 601 602 603 604 605 606 607 608
		let stat: FileStat = tree.getFocus();

		if (stat) {
			this.runAction(tree, stat, 'workbench.files.action.triggerRename').done();

			return true;
		}

		return false;
	}

A
Cleanup  
Alex Dima 已提交
609
	private onDelete(tree: ITree, event: IKeyboardEvent): boolean {
E
Erich Gamma 已提交
610 611 612 613 614 615 616 617 618 619 620
		let useTrash = !event.shiftKey;
		let stat: FileStat = tree.getFocus();
		if (stat) {
			this.runAction(tree, stat, useTrash ? 'workbench.files.action.moveFileToTrash' : 'workbench.files.action.deleteFile').done();

			return true;
		}

		return false;
	}

621
	private runAction(tree: ITree, stat: FileStat, id: string): TPromise<any> {
E
Erich Gamma 已提交
622 623 624 625 626
		return this.state.actionProvider.runAction(tree, stat, id);
	}
}

// Explorer Sorter
B
Benjamin Pasero 已提交
627
export class FileSorter implements ISorter {
E
Erich Gamma 已提交
628

B
Benjamin Pasero 已提交
629
	public compare(tree: ITree, statA: FileStat, statB: FileStat): number {
E
Erich Gamma 已提交
630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
		if (statA.isDirectory && !statB.isDirectory) {
			return -1;
		}

		if (statB.isDirectory && !statA.isDirectory) {
			return 1;
		}

		if (statA.isDirectory && statB.isDirectory) {
			return statA.name.toLowerCase().localeCompare(statB.name.toLowerCase());
		}

		if (statA instanceof NewStatPlaceholder) {
			return -1;
		}

		if (statB instanceof NewStatPlaceholder) {
			return 1;
		}

		return comparers.compareFileNames(statA.name, statB.name);
	}
}

// Explorer Filter
B
Benjamin Pasero 已提交
655
export class FileFilter implements IFilter {
E
Erich Gamma 已提交
656 657 658 659 660 661 662 663 664 665 666 667 668 669 670
	private hiddenExpression: glob.IExpression;

	constructor( @IWorkspaceContextService private contextService: IWorkspaceContextService) {
		this.hiddenExpression = Object.create(null);
	}

	public updateConfiguration(configuration: IFilesConfiguration): boolean {
		let excludesConfig = (configuration && configuration.files && configuration.files.exclude) || Object.create(null);
		let needsRefresh = !objects.equals(this.hiddenExpression, excludesConfig);

		this.hiddenExpression = objects.clone(excludesConfig); // do not keep the config, as it gets mutated under our hoods

		return needsRefresh;
	}

B
Benjamin Pasero 已提交
671
	public isVisible(tree: ITree, stat: FileStat): boolean {
E
Erich Gamma 已提交
672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691
		return this.doIsVisible(stat);
	}

	private doIsVisible(stat: FileStat): boolean {
		if (stat instanceof NewStatPlaceholder) {
			return true; // always visible
		}

		let siblings = stat.parent && stat.parent.children && stat.parent.children.map(c => c.name);

		// Hide those that match Hidden Patterns
		if (glob.match(this.hiddenExpression, this.contextService.toWorkspaceRelativePath(stat.resource), siblings)) {
			return false; // hidden through pattern
		}

		return true;
	}
}

// Explorer Drag And Drop Controller
B
Benjamin Pasero 已提交
692
export class FileDragAndDrop implements IDragAndDrop {
E
Erich Gamma 已提交
693 694 695 696 697 698 699 700 701 702 703 704

	constructor(
		@IMessageService private messageService: IMessageService,
		@IWorkspaceContextService private contextService: IWorkspaceContextService,
		@IEventService private eventService: IEventService,
		@IProgressService private progressService: IProgressService,
		@IFileService private fileService: IFileService,
		@IInstantiationService private instantiationService: IInstantiationService,
		@ITextFileService private textFileService: ITextFileService
	) {
	}

B
Benjamin Pasero 已提交
705
	public getDragURI(tree: ITree, stat: FileStat): string {
E
Erich Gamma 已提交
706 707 708
		return stat.resource && stat.resource.toString();
	}

B
Benjamin Pasero 已提交
709
	public onDragStart(tree: ITree, data: IDragAndDropData, originalEvent: DragMouseEvent): void {
E
Erich Gamma 已提交
710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729
		let sources: FileStat[] = data.getData();
		let source: FileStat = null;
		if (sources.length > 0) {
			source = sources[0];
		}

		// When dragging folders, make sure to collapse them to free up some space
		if (source && source.isDirectory && tree.isExpanded(source)) {
			tree.collapse(source, false);
		}

		// Native only: when a DownloadURL attribute is defined on the data transfer it is possible to
		// drag a file from the browser to the desktop and have it downloaded there.
		if (!(data instanceof DesktopDragAndDropData)) {
			if (source && !source.isDirectory) {
				originalEvent.dataTransfer.setData('DownloadURL', [MIME_BINARY, source.name, source.resource.toString()].join(':'));
			}
		}
	}

B
Benjamin Pasero 已提交
730
	public onDragOver(tree: ITree, data: IDragAndDropData, target: FileStat, originalEvent: DragMouseEvent): IDragOverReaction {
E
Erich Gamma 已提交
731 732 733 734
		let isCopy = originalEvent && ((originalEvent.ctrlKey && !platform.isMacintosh) || (originalEvent.altKey && platform.isMacintosh));
		let fromDesktop = data instanceof DesktopDragAndDropData;

		if (this.contextService.getOptions().readOnly) {
B
Benjamin Pasero 已提交
735
			return DRAG_OVER_REJECT;
E
Erich Gamma 已提交
736 737 738 739 740 741 742 743 744 745 746 747 748
		}

		// Desktop DND
		if (fromDesktop) {
			let dragData = (<DesktopDragAndDropData>data).getData();

			let types = dragData.types;
			let typesArray: string[] = [];
			for (let i = 0; i < types.length; i++) {
				typesArray.push(types[i]);
			}

			if (typesArray.length === 0 || !typesArray.some((type) => { return type === 'Files'; })) {
B
Benjamin Pasero 已提交
749
				return DRAG_OVER_REJECT;
E
Erich Gamma 已提交
750 751 752 753 754
			}
		}

		// Other-Tree DND
		else if (data instanceof ExternalElementsDragAndDropData) {
B
Benjamin Pasero 已提交
755
			return DRAG_OVER_REJECT;
E
Erich Gamma 已提交
756 757 758 759 760 761
		}

		// In-Explorer DND
		else {
			let sources: FileStat[] = data.getData();
			if (!Array.isArray(sources)) {
B
Benjamin Pasero 已提交
762
				return DRAG_OVER_REJECT;
E
Erich Gamma 已提交
763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783
			}

			if (sources.some((source) => {
				if (source instanceof NewStatPlaceholder) {
					return true; // NewStatPlaceholders can not be moved
				}

				if (source.resource.toString() === target.resource.toString()) {
					return true; // Can not move anything onto itself
				}

				if (!isCopy && paths.dirname(source.resource.fsPath) === target.resource.fsPath) {
					return true; // Can not move a file to the same parent unless we copy
				}

				if (paths.isEqualOrParent(target.resource.fsPath, source.resource.fsPath)) {
					return true; // Can not move a parent folder into one of its children
				}

				return false;
			})) {
B
Benjamin Pasero 已提交
784
				return DRAG_OVER_REJECT;
E
Erich Gamma 已提交
785 786 787 788 789
			}
		}

		// All
		if (target.isDirectory) {
B
Benjamin Pasero 已提交
790
			return fromDesktop || isCopy ? DRAG_OVER_ACCEPT_BUBBLE_DOWN_COPY : DRAG_OVER_ACCEPT_BUBBLE_DOWN;
E
Erich Gamma 已提交
791 792 793
		}

		if (target.resource.toString() !== this.contextService.getWorkspace().resource.toString()) {
B
Benjamin Pasero 已提交
794
			return fromDesktop || isCopy ? DRAG_OVER_ACCEPT_BUBBLE_UP_COPY : DRAG_OVER_ACCEPT_BUBBLE_UP;
E
Erich Gamma 已提交
795 796
		}

B
Benjamin Pasero 已提交
797
		return DRAG_OVER_REJECT;
E
Erich Gamma 已提交
798 799
	}

B
Benjamin Pasero 已提交
800
	public drop(tree: ITree, data: IDragAndDropData, target: FileStat, originalEvent: DragMouseEvent): void {
801
		let promise: TPromise<void> = TPromise.as(null);
E
Erich Gamma 已提交
802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826

		// Desktop DND (Import file)
		if (data instanceof DesktopDragAndDropData) {
			let importAction = this.instantiationService.createInstance(ImportFileAction, tree, target, null);
			promise = importAction.run({
				input: {
					files: <FileList>(<DesktopDragAndDropData>data).getData().files
				}
			});
		}

		// In-Explorer DND (Move/Copy file)
		else {
			let source: FileStat = data.getData()[0];
			let isCopy = (originalEvent.ctrlKey && !platform.isMacintosh) || (originalEvent.altKey && platform.isMacintosh);

			promise = tree.expand(target).then(() => {

				// Reuse action if user copies
				if (isCopy) {
					let copyAction = this.instantiationService.createInstance(DuplicateFileAction, tree, source, target);
					return copyAction.run();
				}

				// Handle dirty
827
				let saveOrRevertPromise: TPromise<boolean> = TPromise.as(null);
E
Erich Gamma 已提交
828
				if (this.textFileService.isDirty(source.resource)) {
829
					let res = this.textFileService.confirmSave([source.resource]);
E
Erich Gamma 已提交
830 831 832 833 834
					if (res === ConfirmResult.SAVE) {
						saveOrRevertPromise = this.textFileService.save(source.resource);
					} else if (res === ConfirmResult.DONT_SAVE) {
						saveOrRevertPromise = this.textFileService.revert(source.resource);
					} else if (res === ConfirmResult.CANCEL) {
A
Alex Dima 已提交
835
						return TPromise.as(null);
E
Erich Gamma 已提交
836 837 838 839 840 841 842 843 844 845
					}
				}

				// For move, first check if file is dirty and save
				return saveOrRevertPromise.then(() => {

					// If the file is still dirty, do not touch it because a save is pending to the disk and we can not abort it
					if (this.textFileService.isDirty(source.resource)) {
						this.messageService.show(Severity.Warning, nls.localize('warningFileDirty', "File '{0}' is currently being saved, please try again later.", labels.getPathLabel(source.resource)));

A
Alex Dima 已提交
846
						return TPromise.as(null);
E
Erich Gamma 已提交
847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865
					}

					let targetResource = URI.file(paths.join(target.resource.fsPath, source.name));
					let didHandleConflict = false;

					let onMove = (result: IFileStat) => {
						this.eventService.emit('files.internal:fileChanged', new LocalFileChangeEvent(source.clone(), result));
					};

					// Move File/Folder and emit event
					return this.fileService.moveFile(source.resource, targetResource).then(onMove, (error) => {

						// Conflict
						if ((<IFileOperationResult>error).fileOperationResult === FileOperationResult.FILE_MOVE_CONFLICT) {
							didHandleConflict = true;

							let confirm: IConfirmation = {
								message: nls.localize('confirmOverwriteMessage', "'{0}' already exists in the destination folder. Do you want to replace it?", source.name),
								detail: nls.localize('irreversible', "This action is irreversible!"),
B
Benjamin Pasero 已提交
866
								primaryButton: nls.localize({ key: 'replaceButtonLabel', comment: ['&& denotes a mnemonic'] }, "&&Replace")
E
Erich Gamma 已提交
867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893
							};

							if (this.messageService.confirm(confirm)) {
								return this.fileService.moveFile(source.resource, targetResource, true).then((result) => {
									let fakeTargetState = new FileStat(targetResource);
									this.eventService.emit('files.internal:fileChanged', new LocalFileChangeEvent(fakeTargetState, null));

									onMove(result);
								}, (error) => {
									this.messageService.show(Severity.Error, error);
								});
							}

							return;
						}

						this.messageService.show(Severity.Error, error);
					});
				});
			}, errors.onUnexpectedError);
		}

		this.progressService.showWhile(promise, 800);

		promise.done(null, errors.onUnexpectedError);
	}
}