-
Notifications
You must be signed in to change notification settings - Fork 31.8k
/
Copy pathworkspaceActions.ts
437 lines (364 loc) · 14.9 KB
/
workspaceActions.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
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
185
186
187
188
189
190
191
192
193
194
195
196
197
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
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
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
396
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
436
437
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { localize, localize2 } from '../../../nls.js';
import { ITelemetryData } from '../../../platform/telemetry/common/telemetry.js';
import { IWorkspaceContextService, WorkbenchState, IWorkspaceFolder, hasWorkspaceFileExtension } from '../../../platform/workspace/common/workspace.js';
import { IWorkspaceEditingService } from '../../services/workspaces/common/workspaceEditing.js';
import { IEditorService } from '../../services/editor/common/editorService.js';
import { ICommandService } from '../../../platform/commands/common/commands.js';
import { ADD_ROOT_FOLDER_COMMAND_ID, ADD_ROOT_FOLDER_LABEL, PICK_WORKSPACE_FOLDER_COMMAND_ID, SET_ROOT_FOLDER_COMMAND_ID } from './workspaceCommands.js';
import { IFileDialogService } from '../../../platform/dialogs/common/dialogs.js';
import { MenuRegistry, MenuId, Action2, registerAction2 } from '../../../platform/actions/common/actions.js';
import { EmptyWorkspaceSupportContext, EnterMultiRootWorkspaceSupportContext, OpenFolderWorkspaceSupportContext, WorkbenchStateContext, WorkspaceFolderCountContext } from '../../common/contextkeys.js';
import { ServicesAccessor } from '../../../platform/instantiation/common/instantiation.js';
import { IHostService } from '../../services/host/browser/host.js';
import { KeyChord, KeyCode, KeyMod } from '../../../base/common/keyCodes.js';
import { ContextKeyExpr } from '../../../platform/contextkey/common/contextkey.js';
import { IWorkbenchEnvironmentService } from '../../services/environment/common/environmentService.js';
import { IWorkspacesService } from '../../../platform/workspaces/common/workspaces.js';
import { KeybindingWeight } from '../../../platform/keybinding/common/keybindingsRegistry.js';
import { IsMacNativeContext } from '../../../platform/contextkey/common/contextkeys.js';
import { ILocalizedString } from '../../../platform/action/common/action.js';
import { Categories } from '../../../platform/action/common/actionCommonCategories.js';
const workspacesCategory: ILocalizedString = localize2('workspaces', 'Workspaces');
export class OpenFileAction extends Action2 {
static readonly ID = 'workbench.action.files.openFile';
constructor() {
super({
id: OpenFileAction.ID,
title: localize2('openFile', 'Open File...'),
category: Categories.File,
f1: true,
keybinding: {
when: IsMacNativeContext.toNegated(),
weight: KeybindingWeight.WorkbenchContrib,
primary: KeyMod.CtrlCmd | KeyCode.KeyO
}
});
}
override async run(accessor: ServicesAccessor, data?: ITelemetryData): Promise<void> {
const fileDialogService = accessor.get(IFileDialogService);
return fileDialogService.pickFileAndOpen({ forceNewWindow: false, telemetryExtraData: data });
}
}
export class OpenFolderAction extends Action2 {
static readonly ID = 'workbench.action.files.openFolder';
constructor() {
super({
id: OpenFolderAction.ID,
title: localize2('openFolder', 'Open Folder...'),
category: Categories.File,
f1: true,
precondition: OpenFolderWorkspaceSupportContext,
keybinding: {
weight: KeybindingWeight.WorkbenchContrib,
primary: undefined,
linux: {
primary: KeyChord(KeyMod.CtrlCmd | KeyCode.KeyK, KeyMod.CtrlCmd | KeyCode.KeyO)
},
win: {
primary: KeyChord(KeyMod.CtrlCmd | KeyCode.KeyK, KeyMod.CtrlCmd | KeyCode.KeyO)
}
}
});
}
override async run(accessor: ServicesAccessor, data?: ITelemetryData): Promise<void> {
const fileDialogService = accessor.get(IFileDialogService);
return fileDialogService.pickFolderAndOpen({ forceNewWindow: false, telemetryExtraData: data });
}
}
export class OpenFolderViaWorkspaceAction extends Action2 {
// This action swaps the folders of a workspace with
// the selected folder and is a workaround for providing
// "Open Folder..." in environments that do not support
// this without having a workspace open (e.g. web serverless)
static readonly ID = 'workbench.action.files.openFolderViaWorkspace';
constructor() {
super({
id: OpenFolderViaWorkspaceAction.ID,
title: localize2('openFolder', 'Open Folder...'),
category: Categories.File,
f1: true,
precondition: ContextKeyExpr.and(OpenFolderWorkspaceSupportContext.toNegated(), WorkbenchStateContext.isEqualTo('workspace')),
keybinding: {
weight: KeybindingWeight.WorkbenchContrib,
primary: KeyMod.CtrlCmd | KeyCode.KeyO
}
});
}
override run(accessor: ServicesAccessor): Promise<void> {
const commandService = accessor.get(ICommandService);
return commandService.executeCommand(SET_ROOT_FOLDER_COMMAND_ID);
}
}
export class OpenFileFolderAction extends Action2 {
static readonly ID = 'workbench.action.files.openFileFolder';
static readonly LABEL: ILocalizedString = localize2('openFileFolder', 'Open...');
constructor() {
super({
id: OpenFileFolderAction.ID,
title: OpenFileFolderAction.LABEL,
category: Categories.File,
f1: true,
precondition: ContextKeyExpr.and(IsMacNativeContext, OpenFolderWorkspaceSupportContext),
keybinding: {
weight: KeybindingWeight.WorkbenchContrib,
primary: KeyMod.CtrlCmd | KeyCode.KeyO
}
});
}
override async run(accessor: ServicesAccessor, data?: ITelemetryData): Promise<void> {
const fileDialogService = accessor.get(IFileDialogService);
return fileDialogService.pickFileFolderAndOpen({ forceNewWindow: false, telemetryExtraData: data });
}
}
class OpenWorkspaceAction extends Action2 {
static readonly ID = 'workbench.action.openWorkspace';
constructor() {
super({
id: OpenWorkspaceAction.ID,
title: localize2('openWorkspaceAction', 'Open Workspace from File...'),
category: Categories.File,
f1: true,
precondition: EnterMultiRootWorkspaceSupportContext
});
}
override async run(accessor: ServicesAccessor, data?: ITelemetryData): Promise<void> {
const fileDialogService = accessor.get(IFileDialogService);
return fileDialogService.pickWorkspaceAndOpen({ telemetryExtraData: data });
}
}
class CloseWorkspaceAction extends Action2 {
static readonly ID = 'workbench.action.closeFolder';
constructor() {
super({
id: CloseWorkspaceAction.ID,
title: localize2('closeWorkspace', 'Close Workspace'),
category: workspacesCategory,
f1: true,
precondition: ContextKeyExpr.and(WorkbenchStateContext.notEqualsTo('empty'), EmptyWorkspaceSupportContext),
keybinding: {
weight: KeybindingWeight.WorkbenchContrib,
primary: KeyChord(KeyMod.CtrlCmd | KeyCode.KeyK, KeyCode.KeyF)
}
});
}
override async run(accessor: ServicesAccessor): Promise<void> {
const hostService = accessor.get(IHostService);
const environmentService = accessor.get(IWorkbenchEnvironmentService);
return hostService.openWindow({ forceReuseWindow: true, remoteAuthority: environmentService.remoteAuthority });
}
}
class OpenWorkspaceConfigFileAction extends Action2 {
static readonly ID = 'workbench.action.openWorkspaceConfigFile';
constructor() {
super({
id: OpenWorkspaceConfigFileAction.ID,
title: localize2('openWorkspaceConfigFile', 'Open Workspace Configuration File'),
category: workspacesCategory,
f1: true,
precondition: WorkbenchStateContext.isEqualTo('workspace')
});
}
override async run(accessor: ServicesAccessor): Promise<void> {
const contextService = accessor.get(IWorkspaceContextService);
const editorService = accessor.get(IEditorService);
const configuration = contextService.getWorkspace().configuration;
if (configuration) {
await editorService.openEditor({ resource: configuration, options: { pinned: true } });
}
}
}
export class AddRootFolderAction extends Action2 {
static readonly ID = 'workbench.action.addRootFolder';
constructor() {
super({
id: AddRootFolderAction.ID,
title: ADD_ROOT_FOLDER_LABEL,
category: workspacesCategory,
f1: true,
precondition: ContextKeyExpr.or(EnterMultiRootWorkspaceSupportContext, WorkbenchStateContext.isEqualTo('workspace'))
});
}
override run(accessor: ServicesAccessor): Promise<void> {
const commandService = accessor.get(ICommandService);
return commandService.executeCommand(ADD_ROOT_FOLDER_COMMAND_ID);
}
}
export class RemoveRootFolderAction extends Action2 {
static readonly ID = 'workbench.action.removeRootFolder';
constructor() {
super({
id: RemoveRootFolderAction.ID,
title: localize2('globalRemoveFolderFromWorkspace', 'Remove Folder from Workspace...'),
category: workspacesCategory,
f1: true,
precondition: ContextKeyExpr.and(WorkspaceFolderCountContext.notEqualsTo('0'), ContextKeyExpr.or(EnterMultiRootWorkspaceSupportContext, WorkbenchStateContext.isEqualTo('workspace')))
});
}
override async run(accessor: ServicesAccessor): Promise<void> {
const commandService = accessor.get(ICommandService);
const workspaceEditingService = accessor.get(IWorkspaceEditingService);
const folder = await commandService.executeCommand<IWorkspaceFolder>(PICK_WORKSPACE_FOLDER_COMMAND_ID);
if (folder) {
await workspaceEditingService.removeFolders([folder.uri]);
}
}
}
class SaveWorkspaceAsAction extends Action2 {
static readonly ID = 'workbench.action.saveWorkspaceAs';
constructor() {
super({
id: SaveWorkspaceAsAction.ID,
title: localize2('saveWorkspaceAsAction', 'Save Workspace As...'),
category: workspacesCategory,
f1: true,
precondition: EnterMultiRootWorkspaceSupportContext
});
}
override async run(accessor: ServicesAccessor): Promise<void> {
const workspaceEditingService = accessor.get(IWorkspaceEditingService);
const contextService = accessor.get(IWorkspaceContextService);
const configPathUri = await workspaceEditingService.pickNewWorkspacePath();
if (configPathUri && hasWorkspaceFileExtension(configPathUri)) {
switch (contextService.getWorkbenchState()) {
case WorkbenchState.EMPTY:
case WorkbenchState.FOLDER: {
const folders = contextService.getWorkspace().folders.map(folder => ({ uri: folder.uri }));
return workspaceEditingService.createAndEnterWorkspace(folders, configPathUri);
}
case WorkbenchState.WORKSPACE:
return workspaceEditingService.saveAndEnterWorkspace(configPathUri);
}
}
}
}
class DuplicateWorkspaceInNewWindowAction extends Action2 {
static readonly ID = 'workbench.action.duplicateWorkspaceInNewWindow';
constructor() {
super({
id: DuplicateWorkspaceInNewWindowAction.ID,
title: localize2('duplicateWorkspaceInNewWindow', 'Duplicate As Workspace in New Window'),
category: workspacesCategory,
f1: true,
precondition: EnterMultiRootWorkspaceSupportContext
});
}
override async run(accessor: ServicesAccessor): Promise<void> {
const workspaceContextService = accessor.get(IWorkspaceContextService);
const workspaceEditingService = accessor.get(IWorkspaceEditingService);
const hostService = accessor.get(IHostService);
const workspacesService = accessor.get(IWorkspacesService);
const environmentService = accessor.get(IWorkbenchEnvironmentService);
const folders = workspaceContextService.getWorkspace().folders;
const remoteAuthority = environmentService.remoteAuthority;
const newWorkspace = await workspacesService.createUntitledWorkspace(folders, remoteAuthority);
await workspaceEditingService.copyWorkspaceSettings(newWorkspace);
return hostService.openWindow([{ workspaceUri: newWorkspace.configPath }], { forceNewWindow: true, remoteAuthority });
}
}
// --- Actions Registration
registerAction2(AddRootFolderAction);
registerAction2(RemoveRootFolderAction);
registerAction2(OpenFileAction);
registerAction2(OpenFolderAction);
registerAction2(OpenFolderViaWorkspaceAction);
registerAction2(OpenFileFolderAction);
registerAction2(OpenWorkspaceAction);
registerAction2(OpenWorkspaceConfigFileAction);
registerAction2(CloseWorkspaceAction);
registerAction2(SaveWorkspaceAsAction);
registerAction2(DuplicateWorkspaceInNewWindowAction);
// --- Menu Registration
MenuRegistry.appendMenuItem(MenuId.MenubarFileMenu, {
group: '2_open',
command: {
id: OpenFileAction.ID,
title: localize({ key: 'miOpenFile', comment: ['&& denotes a mnemonic'] }, "&&Open File...")
},
order: 1,
when: IsMacNativeContext.toNegated()
});
MenuRegistry.appendMenuItem(MenuId.MenubarFileMenu, {
group: '2_open',
command: {
id: OpenFolderAction.ID,
title: localize({ key: 'miOpenFolder', comment: ['&& denotes a mnemonic'] }, "Open &&Folder...")
},
order: 2,
when: OpenFolderWorkspaceSupportContext
});
MenuRegistry.appendMenuItem(MenuId.MenubarFileMenu, {
group: '2_open',
command: {
id: OpenFolderViaWorkspaceAction.ID,
title: localize({ key: 'miOpenFolder', comment: ['&& denotes a mnemonic'] }, "Open &&Folder...")
},
order: 2,
when: ContextKeyExpr.and(OpenFolderWorkspaceSupportContext.toNegated(), WorkbenchStateContext.isEqualTo('workspace'))
});
MenuRegistry.appendMenuItem(MenuId.MenubarFileMenu, {
group: '2_open',
command: {
id: OpenFileFolderAction.ID,
title: localize({ key: 'miOpen', comment: ['&& denotes a mnemonic'] }, "&&Open...")
},
order: 1,
when: ContextKeyExpr.and(IsMacNativeContext, OpenFolderWorkspaceSupportContext)
});
MenuRegistry.appendMenuItem(MenuId.MenubarFileMenu, {
group: '2_open',
command: {
id: OpenWorkspaceAction.ID,
title: localize({ key: 'miOpenWorkspace', comment: ['&& denotes a mnemonic'] }, "Open Wor&&kspace from File...")
},
order: 3,
when: EnterMultiRootWorkspaceSupportContext
});
MenuRegistry.appendMenuItem(MenuId.MenubarFileMenu, {
group: '3_workspace',
command: {
id: ADD_ROOT_FOLDER_COMMAND_ID,
title: localize({ key: 'miAddFolderToWorkspace', comment: ['&& denotes a mnemonic'] }, "A&&dd Folder to Workspace...")
},
when: ContextKeyExpr.or(EnterMultiRootWorkspaceSupportContext, WorkbenchStateContext.isEqualTo('workspace')),
order: 1
});
MenuRegistry.appendMenuItem(MenuId.MenubarFileMenu, {
group: '3_workspace',
command: {
id: SaveWorkspaceAsAction.ID,
title: localize('miSaveWorkspaceAs', "Save Workspace As...")
},
order: 2,
when: EnterMultiRootWorkspaceSupportContext
});
MenuRegistry.appendMenuItem(MenuId.MenubarFileMenu, {
group: '3_workspace',
command: {
id: DuplicateWorkspaceInNewWindowAction.ID,
title: localize('duplicateWorkspace', "Duplicate Workspace")
},
order: 3,
when: EnterMultiRootWorkspaceSupportContext
});
MenuRegistry.appendMenuItem(MenuId.MenubarFileMenu, {
group: '6_close',
command: {
id: CloseWorkspaceAction.ID,
title: localize({ key: 'miCloseFolder', comment: ['&& denotes a mnemonic'] }, "Close &&Folder")
},
order: 3,
when: ContextKeyExpr.and(WorkbenchStateContext.isEqualTo('folder'), EmptyWorkspaceSupportContext)
});
MenuRegistry.appendMenuItem(MenuId.MenubarFileMenu, {
group: '6_close',
command: {
id: CloseWorkspaceAction.ID,
title: localize({ key: 'miCloseWorkspace', comment: ['&& denotes a mnemonic'] }, "Close &&Workspace")
},
order: 3,
when: ContextKeyExpr.and(WorkbenchStateContext.isEqualTo('workspace'), EmptyWorkspaceSupportContext)
});