@theia/workspace 1.45.1 → 1.46.0-next.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +30 -30
- package/lib/browser/canonical-uri-service.d.ts +11 -11
- package/lib/browser/canonical-uri-service.js +59 -59
- package/lib/browser/diff-service.d.ts +10 -10
- package/lib/browser/diff-service.js +85 -85
- package/lib/browser/index.d.ts +7 -7
- package/lib/browser/index.js +34 -34
- package/lib/browser/quick-open-workspace.d.ts +25 -25
- package/lib/browser/quick-open-workspace.js +137 -137
- package/lib/browser/untitled-workspace-exit-dialog.d.ts +19 -19
- package/lib/browser/untitled-workspace-exit-dialog.js +74 -74
- package/lib/browser/workspace-breadcrumbs-contribution.d.ts +10 -10
- package/lib/browser/workspace-breadcrumbs-contribution.js +66 -66
- package/lib/browser/workspace-commands.d.ts +117 -117
- package/lib/browser/workspace-commands.js +601 -601
- package/lib/browser/workspace-commands.spec.d.ts +1 -1
- package/lib/browser/workspace-commands.spec.js +127 -127
- package/lib/browser/workspace-compare-handler.d.ts +26 -26
- package/lib/browser/workspace-compare-handler.js +66 -66
- package/lib/browser/workspace-delete-handler.d.ts +75 -75
- package/lib/browser/workspace-delete-handler.js +214 -214
- package/lib/browser/workspace-duplicate-handler.d.ts +30 -30
- package/lib/browser/workspace-duplicate-handler.js +86 -86
- package/lib/browser/workspace-frontend-contribution.d.ts +110 -110
- package/lib/browser/workspace-frontend-contribution.js +546 -546
- package/lib/browser/workspace-frontend-contribution.js.map +1 -1
- package/lib/browser/workspace-frontend-module.d.ts +3 -3
- package/lib/browser/workspace-frontend-module.js +91 -91
- package/lib/browser/workspace-input-dialog.d.ts +19 -19
- package/lib/browser/workspace-input-dialog.js +74 -74
- package/lib/browser/workspace-preferences.d.ts +11 -11
- package/lib/browser/workspace-preferences.js +46 -46
- package/lib/browser/workspace-schema-updater.d.ts +34 -34
- package/lib/browser/workspace-schema-updater.js +153 -153
- package/lib/browser/workspace-service.d.ts +184 -184
- package/lib/browser/workspace-service.js +739 -739
- package/lib/browser/workspace-storage-service.d.ts +15 -15
- package/lib/browser/workspace-storage-service.js +80 -80
- package/lib/browser/workspace-trust-preferences.d.ts +21 -21
- package/lib/browser/workspace-trust-preferences.js +65 -65
- package/lib/browser/workspace-trust-service.d.ts +27 -27
- package/lib/browser/workspace-trust-service.js +152 -152
- package/lib/browser/workspace-uri-contribution.d.ts +20 -20
- package/lib/browser/workspace-uri-contribution.js +113 -113
- package/lib/browser/workspace-uri-contribution.spec.d.ts +1 -1
- package/lib/browser/workspace-uri-contribution.spec.js +169 -169
- package/lib/browser/workspace-user-working-directory-provider.d.ts +12 -12
- package/lib/browser/workspace-user-working-directory-provider.js +62 -62
- package/lib/browser/workspace-utils.d.ts +15 -15
- package/lib/browser/workspace-utils.js +54 -54
- package/lib/browser/workspace-variable-contribution.d.ts +23 -23
- package/lib/browser/workspace-variable-contribution.js +237 -237
- package/lib/browser/workspace-window-title-updater.d.ts +7 -7
- package/lib/browser/workspace-window-title-updater.js +57 -57
- package/lib/browser-only/browser-only-workspace-server.d.ts +13 -0
- package/lib/browser-only/browser-only-workspace-server.d.ts.map +1 -0
- package/lib/browser-only/browser-only-workspace-server.js +81 -0
- package/lib/browser-only/browser-only-workspace-server.js.map +1 -0
- package/lib/browser-only/workspace-frontend-only-module.d.ts +4 -0
- package/lib/browser-only/workspace-frontend-only-module.d.ts.map +1 -0
- package/lib/browser-only/workspace-frontend-only-module.js +30 -0
- package/lib/browser-only/workspace-frontend-only-module.js.map +1 -0
- package/lib/common/index.d.ts +3 -3
- package/lib/common/index.js +30 -30
- package/lib/common/test/mock-workspace-server.d.ts +7 -7
- package/lib/common/test/mock-workspace-server.js +35 -35
- package/lib/common/untitled-workspace-service.d.ts +8 -8
- package/lib/common/untitled-workspace-service.js +60 -60
- package/lib/common/workspace-file-service.d.ts +26 -26
- package/lib/common/workspace-file-service.js +71 -71
- package/lib/common/workspace-protocol.d.ts +26 -26
- package/lib/common/workspace-protocol.js +23 -23
- package/lib/node/default-workspace-server.d.ts +65 -65
- package/lib/node/default-workspace-server.js +248 -248
- package/lib/node/default-workspace-server.spec.d.ts +1 -1
- package/lib/node/default-workspace-server.spec.js +85 -85
- package/lib/node/index.d.ts +2 -2
- package/lib/node/index.js +29 -29
- package/lib/node/workspace-backend-module.d.ts +3 -3
- package/lib/node/workspace-backend-module.js +33 -33
- package/package.json +9 -6
- package/src/browser/canonical-uri-service.ts +57 -57
- package/src/browser/diff-service.ts +62 -62
- package/src/browser/index.ts +23 -23
- package/src/browser/quick-open-workspace.ts +112 -112
- package/src/browser/untitled-workspace-exit-dialog.ts +70 -70
- package/src/browser/workspace-breadcrumbs-contribution.ts +56 -56
- package/src/browser/workspace-commands.spec.ts +153 -153
- package/src/browser/workspace-commands.ts +588 -588
- package/src/browser/workspace-compare-handler.ts +56 -56
- package/src/browser/workspace-delete-handler.ts +212 -212
- package/src/browser/workspace-duplicate-handler.ts +75 -75
- package/src/browser/workspace-frontend-contribution.ts +537 -537
- package/src/browser/workspace-frontend-module.ts +118 -118
- package/src/browser/workspace-input-dialog.ts +61 -61
- package/src/browser/workspace-preferences.ts +58 -58
- package/src/browser/workspace-schema-updater.ts +150 -150
- package/src/browser/workspace-service.ts +780 -780
- package/src/browser/workspace-storage-service.ts +67 -67
- package/src/browser/workspace-trust-preferences.ts +76 -76
- package/src/browser/workspace-trust-service.ts +147 -147
- package/src/browser/workspace-uri-contribution.spec.ts +191 -191
- package/src/browser/workspace-uri-contribution.ts +97 -97
- package/src/browser/workspace-user-working-directory-provider.ts +49 -49
- package/src/browser/workspace-utils.ts +45 -45
- package/src/browser/workspace-variable-contribution.ts +222 -222
- package/src/browser/workspace-window-title-updater.ts +45 -45
- package/src/browser-only/browser-only-workspace-server.ts +69 -0
- package/src/browser-only/workspace-frontend-only-module.ts +28 -0
- package/src/common/index.ts +19 -19
- package/src/common/test/mock-workspace-server.ts +29 -29
- package/src/common/untitled-workspace-service.ts +50 -50
- package/src/common/workspace-file-service.ts +72 -72
- package/src/common/workspace-protocol.ts +47 -47
- package/src/node/default-workspace-server.spec.ts +100 -100
- package/src/node/default-workspace-server.ts +244 -244
- package/src/node/index.ts +18 -18
- package/src/node/workspace-backend-module.ts +38 -38
package/src/browser/index.ts
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
// *****************************************************************************
|
|
2
|
-
// Copyright (C) 2017 TypeFox and others.
|
|
3
|
-
//
|
|
4
|
-
// This program and the accompanying materials are made available under the
|
|
5
|
-
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
-
// http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
-
//
|
|
8
|
-
// This Source Code may also be made available under the following Secondary
|
|
9
|
-
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
-
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
-
// with the GNU Classpath Exception which is available at
|
|
12
|
-
// https://www.gnu.org/software/classpath/license.html.
|
|
13
|
-
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
-
// *****************************************************************************
|
|
16
|
-
|
|
17
|
-
export * from './workspace-commands';
|
|
18
|
-
export * from './workspace-service';
|
|
19
|
-
export * from './canonical-uri-service';
|
|
20
|
-
export * from './workspace-frontend-contribution';
|
|
21
|
-
export * from './workspace-frontend-module';
|
|
22
|
-
export * from './workspace-preferences';
|
|
23
|
-
export * from './workspace-trust-service';
|
|
1
|
+
// *****************************************************************************
|
|
2
|
+
// Copyright (C) 2017 TypeFox and others.
|
|
3
|
+
//
|
|
4
|
+
// This program and the accompanying materials are made available under the
|
|
5
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
+
//
|
|
8
|
+
// This Source Code may also be made available under the following Secondary
|
|
9
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
+
// with the GNU Classpath Exception which is available at
|
|
12
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
13
|
+
//
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
+
// *****************************************************************************
|
|
16
|
+
|
|
17
|
+
export * from './workspace-commands';
|
|
18
|
+
export * from './workspace-service';
|
|
19
|
+
export * from './canonical-uri-service';
|
|
20
|
+
export * from './workspace-frontend-contribution';
|
|
21
|
+
export * from './workspace-frontend-module';
|
|
22
|
+
export * from './workspace-preferences';
|
|
23
|
+
export * from './workspace-trust-service';
|
|
@@ -1,112 +1,112 @@
|
|
|
1
|
-
// *****************************************************************************
|
|
2
|
-
// Copyright (C) 2018 Ericsson and others.
|
|
3
|
-
//
|
|
4
|
-
// This program and the accompanying materials are made available under the
|
|
5
|
-
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
-
// http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
-
//
|
|
8
|
-
// This Source Code may also be made available under the following Secondary
|
|
9
|
-
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
-
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
-
// with the GNU Classpath Exception which is available at
|
|
12
|
-
// https://www.gnu.org/software/classpath/license.html.
|
|
13
|
-
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
-
// *****************************************************************************
|
|
16
|
-
|
|
17
|
-
import { injectable, inject, optional } from '@theia/core/shared/inversify';
|
|
18
|
-
import { QuickPickItem, LabelProvider, QuickInputService, QuickInputButton, QuickPickSeparator } from '@theia/core/lib/browser';
|
|
19
|
-
import { EnvVariablesServer } from '@theia/core/lib/common/env-variables';
|
|
20
|
-
import { WorkspaceService } from './workspace-service';
|
|
21
|
-
import { WorkspacePreferences } from './workspace-preferences';
|
|
22
|
-
import URI from '@theia/core/lib/common/uri';
|
|
23
|
-
import { FileService } from '@theia/filesystem/lib/browser/file-service';
|
|
24
|
-
import { FileStat } from '@theia/filesystem/lib/common/files';
|
|
25
|
-
import { nls, Path } from '@theia/core/lib/common';
|
|
26
|
-
import { UntitledWorkspaceService } from '../common/untitled-workspace-service';
|
|
27
|
-
|
|
28
|
-
interface RecentlyOpenedPick extends QuickPickItem {
|
|
29
|
-
resource?: URI
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
@injectable()
|
|
33
|
-
export class QuickOpenWorkspace {
|
|
34
|
-
protected items: Array<RecentlyOpenedPick | QuickPickSeparator>;
|
|
35
|
-
protected opened: boolean;
|
|
36
|
-
|
|
37
|
-
@inject(QuickInputService) @optional() protected readonly quickInputService: QuickInputService;
|
|
38
|
-
@inject(WorkspaceService) protected readonly workspaceService: WorkspaceService;
|
|
39
|
-
@inject(FileService) protected readonly fileService: FileService;
|
|
40
|
-
@inject(LabelProvider) protected readonly labelProvider: LabelProvider;
|
|
41
|
-
@inject(WorkspacePreferences) protected preferences: WorkspacePreferences;
|
|
42
|
-
@inject(EnvVariablesServer) protected readonly envServer: EnvVariablesServer;
|
|
43
|
-
@inject(UntitledWorkspaceService) protected untitledWorkspaceService: UntitledWorkspaceService;
|
|
44
|
-
|
|
45
|
-
protected readonly removeRecentWorkspaceButton: QuickInputButton = {
|
|
46
|
-
iconClass: 'codicon-remove-close',
|
|
47
|
-
tooltip: nls.localizeByDefault('Remove from Recently Opened')
|
|
48
|
-
};
|
|
49
|
-
|
|
50
|
-
async open(workspaces: string[]): Promise<void> {
|
|
51
|
-
this.items = [];
|
|
52
|
-
const [homeDirUri] = await Promise.all([
|
|
53
|
-
this.envServer.getHomeDirUri(),
|
|
54
|
-
this.workspaceService.getUntitledWorkspace()
|
|
55
|
-
]);
|
|
56
|
-
const home = new URI(homeDirUri).path.toString();
|
|
57
|
-
await this.preferences.ready;
|
|
58
|
-
this.items.push({
|
|
59
|
-
type: 'separator',
|
|
60
|
-
label: nls.localizeByDefault('folders & workspaces')
|
|
61
|
-
});
|
|
62
|
-
for (const workspace of workspaces) {
|
|
63
|
-
const uri = new URI(workspace);
|
|
64
|
-
let stat: FileStat | undefined;
|
|
65
|
-
try {
|
|
66
|
-
stat = await this.fileService.resolve(uri);
|
|
67
|
-
} catch { }
|
|
68
|
-
if (this.untitledWorkspaceService.isUntitledWorkspace(uri) || !stat) {
|
|
69
|
-
continue; // skip the temporary workspace files or an undefined stat.
|
|
70
|
-
}
|
|
71
|
-
const icon = this.labelProvider.getIcon(stat);
|
|
72
|
-
const iconClasses = icon === '' ? undefined : [icon + ' file-icon'];
|
|
73
|
-
|
|
74
|
-
this.items.push({
|
|
75
|
-
label: uri.path.base,
|
|
76
|
-
description: Path.tildify(uri.path.toString(), home),
|
|
77
|
-
iconClasses,
|
|
78
|
-
buttons: [this.removeRecentWorkspaceButton],
|
|
79
|
-
resource: uri,
|
|
80
|
-
execute: () => {
|
|
81
|
-
const current = this.workspaceService.workspace;
|
|
82
|
-
const uriToOpen = new URI(workspace);
|
|
83
|
-
if ((current && current.resource.toString() !== workspace) || !current) {
|
|
84
|
-
this.workspaceService.open(uriToOpen);
|
|
85
|
-
}
|
|
86
|
-
},
|
|
87
|
-
});
|
|
88
|
-
}
|
|
89
|
-
this.quickInputService?.showQuickPick(this.items, {
|
|
90
|
-
placeholder: nls.localize(
|
|
91
|
-
'theia/workspace/openRecentPlaceholder',
|
|
92
|
-
'Type the name of the workspace you want to open'),
|
|
93
|
-
onDidTriggerItemButton: async context => {
|
|
94
|
-
const resource = (context.item as RecentlyOpenedPick).resource;
|
|
95
|
-
if (resource) {
|
|
96
|
-
await this.workspaceService.removeRecentWorkspace(resource.toString());
|
|
97
|
-
context.removeItem();
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
});
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
select(): void {
|
|
104
|
-
this.items = [];
|
|
105
|
-
this.opened = this.workspaceService.opened;
|
|
106
|
-
this.workspaceService.recentWorkspaces().then(workspaceRoots => {
|
|
107
|
-
if (workspaceRoots) {
|
|
108
|
-
this.open(workspaceRoots);
|
|
109
|
-
}
|
|
110
|
-
});
|
|
111
|
-
}
|
|
112
|
-
}
|
|
1
|
+
// *****************************************************************************
|
|
2
|
+
// Copyright (C) 2018 Ericsson and others.
|
|
3
|
+
//
|
|
4
|
+
// This program and the accompanying materials are made available under the
|
|
5
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
+
//
|
|
8
|
+
// This Source Code may also be made available under the following Secondary
|
|
9
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
+
// with the GNU Classpath Exception which is available at
|
|
12
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
13
|
+
//
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
+
// *****************************************************************************
|
|
16
|
+
|
|
17
|
+
import { injectable, inject, optional } from '@theia/core/shared/inversify';
|
|
18
|
+
import { QuickPickItem, LabelProvider, QuickInputService, QuickInputButton, QuickPickSeparator } from '@theia/core/lib/browser';
|
|
19
|
+
import { EnvVariablesServer } from '@theia/core/lib/common/env-variables';
|
|
20
|
+
import { WorkspaceService } from './workspace-service';
|
|
21
|
+
import { WorkspacePreferences } from './workspace-preferences';
|
|
22
|
+
import URI from '@theia/core/lib/common/uri';
|
|
23
|
+
import { FileService } from '@theia/filesystem/lib/browser/file-service';
|
|
24
|
+
import { FileStat } from '@theia/filesystem/lib/common/files';
|
|
25
|
+
import { nls, Path } from '@theia/core/lib/common';
|
|
26
|
+
import { UntitledWorkspaceService } from '../common/untitled-workspace-service';
|
|
27
|
+
|
|
28
|
+
interface RecentlyOpenedPick extends QuickPickItem {
|
|
29
|
+
resource?: URI
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
@injectable()
|
|
33
|
+
export class QuickOpenWorkspace {
|
|
34
|
+
protected items: Array<RecentlyOpenedPick | QuickPickSeparator>;
|
|
35
|
+
protected opened: boolean;
|
|
36
|
+
|
|
37
|
+
@inject(QuickInputService) @optional() protected readonly quickInputService: QuickInputService;
|
|
38
|
+
@inject(WorkspaceService) protected readonly workspaceService: WorkspaceService;
|
|
39
|
+
@inject(FileService) protected readonly fileService: FileService;
|
|
40
|
+
@inject(LabelProvider) protected readonly labelProvider: LabelProvider;
|
|
41
|
+
@inject(WorkspacePreferences) protected preferences: WorkspacePreferences;
|
|
42
|
+
@inject(EnvVariablesServer) protected readonly envServer: EnvVariablesServer;
|
|
43
|
+
@inject(UntitledWorkspaceService) protected untitledWorkspaceService: UntitledWorkspaceService;
|
|
44
|
+
|
|
45
|
+
protected readonly removeRecentWorkspaceButton: QuickInputButton = {
|
|
46
|
+
iconClass: 'codicon-remove-close',
|
|
47
|
+
tooltip: nls.localizeByDefault('Remove from Recently Opened')
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
async open(workspaces: string[]): Promise<void> {
|
|
51
|
+
this.items = [];
|
|
52
|
+
const [homeDirUri] = await Promise.all([
|
|
53
|
+
this.envServer.getHomeDirUri(),
|
|
54
|
+
this.workspaceService.getUntitledWorkspace()
|
|
55
|
+
]);
|
|
56
|
+
const home = new URI(homeDirUri).path.toString();
|
|
57
|
+
await this.preferences.ready;
|
|
58
|
+
this.items.push({
|
|
59
|
+
type: 'separator',
|
|
60
|
+
label: nls.localizeByDefault('folders & workspaces')
|
|
61
|
+
});
|
|
62
|
+
for (const workspace of workspaces) {
|
|
63
|
+
const uri = new URI(workspace);
|
|
64
|
+
let stat: FileStat | undefined;
|
|
65
|
+
try {
|
|
66
|
+
stat = await this.fileService.resolve(uri);
|
|
67
|
+
} catch { }
|
|
68
|
+
if (this.untitledWorkspaceService.isUntitledWorkspace(uri) || !stat) {
|
|
69
|
+
continue; // skip the temporary workspace files or an undefined stat.
|
|
70
|
+
}
|
|
71
|
+
const icon = this.labelProvider.getIcon(stat);
|
|
72
|
+
const iconClasses = icon === '' ? undefined : [icon + ' file-icon'];
|
|
73
|
+
|
|
74
|
+
this.items.push({
|
|
75
|
+
label: uri.path.base,
|
|
76
|
+
description: Path.tildify(uri.path.toString(), home),
|
|
77
|
+
iconClasses,
|
|
78
|
+
buttons: [this.removeRecentWorkspaceButton],
|
|
79
|
+
resource: uri,
|
|
80
|
+
execute: () => {
|
|
81
|
+
const current = this.workspaceService.workspace;
|
|
82
|
+
const uriToOpen = new URI(workspace);
|
|
83
|
+
if ((current && current.resource.toString() !== workspace) || !current) {
|
|
84
|
+
this.workspaceService.open(uriToOpen);
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
});
|
|
88
|
+
}
|
|
89
|
+
this.quickInputService?.showQuickPick(this.items, {
|
|
90
|
+
placeholder: nls.localize(
|
|
91
|
+
'theia/workspace/openRecentPlaceholder',
|
|
92
|
+
'Type the name of the workspace you want to open'),
|
|
93
|
+
onDidTriggerItemButton: async context => {
|
|
94
|
+
const resource = (context.item as RecentlyOpenedPick).resource;
|
|
95
|
+
if (resource) {
|
|
96
|
+
await this.workspaceService.removeRecentWorkspace(resource.toString());
|
|
97
|
+
context.removeItem();
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
select(): void {
|
|
104
|
+
this.items = [];
|
|
105
|
+
this.opened = this.workspaceService.opened;
|
|
106
|
+
this.workspaceService.recentWorkspaces().then(workspaceRoots => {
|
|
107
|
+
if (workspaceRoots) {
|
|
108
|
+
this.open(workspaceRoots);
|
|
109
|
+
}
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
}
|
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
// *****************************************************************************
|
|
2
|
-
// Copyright (C) 2021 Ericsson and others.
|
|
3
|
-
//
|
|
4
|
-
// This program and the accompanying materials are made available under the
|
|
5
|
-
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
-
// http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
-
//
|
|
8
|
-
// This Source Code may also be made available under the following Secondary
|
|
9
|
-
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
-
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
-
// with the GNU Classpath Exception which is available at
|
|
12
|
-
// https://www.gnu.org/software/classpath/license.html.
|
|
13
|
-
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
-
// *****************************************************************************
|
|
16
|
-
|
|
17
|
-
import { nls } from '@theia/core';
|
|
18
|
-
import { inject } from '@theia/core/shared/inversify';
|
|
19
|
-
import { AbstractDialog, Dialog, DialogProps, Message } from '@theia/core/lib/browser';
|
|
20
|
-
|
|
21
|
-
export class UntitledWorkspaceExitDialog extends AbstractDialog<UntitledWorkspaceExitDialog.Options> {
|
|
22
|
-
protected readonly dontSaveButton: HTMLButtonElement;
|
|
23
|
-
protected _value: UntitledWorkspaceExitDialog.Options = 'Cancel';
|
|
24
|
-
|
|
25
|
-
get value(): UntitledWorkspaceExitDialog.Options {
|
|
26
|
-
return this._value;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
constructor(
|
|
30
|
-
@inject(DialogProps) props: DialogProps
|
|
31
|
-
) {
|
|
32
|
-
super(props);
|
|
33
|
-
const messageNode = document.createElement('div');
|
|
34
|
-
messageNode.textContent = nls.localizeByDefault('Save your workspace if you plan to open it again.');
|
|
35
|
-
this.contentNode.appendChild(messageNode);
|
|
36
|
-
this.dontSaveButton = this.createButton(nls.localizeByDefault(UntitledWorkspaceExitDialog.Values["Don't Save"]));
|
|
37
|
-
this.dontSaveButton.classList.add('secondary');
|
|
38
|
-
this.controlPanel.appendChild(this.dontSaveButton);
|
|
39
|
-
this.appendCloseButton(Dialog.CANCEL);
|
|
40
|
-
this.appendAcceptButton(nls.localizeByDefault(UntitledWorkspaceExitDialog.Values.Save));
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
protected override onAfterAttach(msg: Message): void {
|
|
44
|
-
super.onAfterAttach(msg);
|
|
45
|
-
this.addAction(this.dontSaveButton, () => this.dontSave(), 'click');
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
protected override addAcceptAction<K extends keyof HTMLElementEventMap>(element: HTMLElement, ...additionalEventTypes: K[]): void {
|
|
49
|
-
this.addAction(element, () => this.doSave(), 'click');
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
protected dontSave(): void {
|
|
53
|
-
this._value = UntitledWorkspaceExitDialog.Values["Don't Save"];
|
|
54
|
-
this.accept();
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
protected doSave(): void {
|
|
58
|
-
this._value = UntitledWorkspaceExitDialog.Values.Save;
|
|
59
|
-
this.accept();
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
export namespace UntitledWorkspaceExitDialog {
|
|
64
|
-
export const enum Values {
|
|
65
|
-
"Don't Save" = "Don't Save",
|
|
66
|
-
Cancel = 'Cancel',
|
|
67
|
-
Save = 'Save',
|
|
68
|
-
};
|
|
69
|
-
export type Options = keyof typeof Values;
|
|
70
|
-
}
|
|
1
|
+
// *****************************************************************************
|
|
2
|
+
// Copyright (C) 2021 Ericsson and others.
|
|
3
|
+
//
|
|
4
|
+
// This program and the accompanying materials are made available under the
|
|
5
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
+
//
|
|
8
|
+
// This Source Code may also be made available under the following Secondary
|
|
9
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
+
// with the GNU Classpath Exception which is available at
|
|
12
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
13
|
+
//
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
+
// *****************************************************************************
|
|
16
|
+
|
|
17
|
+
import { nls } from '@theia/core';
|
|
18
|
+
import { inject } from '@theia/core/shared/inversify';
|
|
19
|
+
import { AbstractDialog, Dialog, DialogProps, Message } from '@theia/core/lib/browser';
|
|
20
|
+
|
|
21
|
+
export class UntitledWorkspaceExitDialog extends AbstractDialog<UntitledWorkspaceExitDialog.Options> {
|
|
22
|
+
protected readonly dontSaveButton: HTMLButtonElement;
|
|
23
|
+
protected _value: UntitledWorkspaceExitDialog.Options = 'Cancel';
|
|
24
|
+
|
|
25
|
+
get value(): UntitledWorkspaceExitDialog.Options {
|
|
26
|
+
return this._value;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
constructor(
|
|
30
|
+
@inject(DialogProps) props: DialogProps
|
|
31
|
+
) {
|
|
32
|
+
super(props);
|
|
33
|
+
const messageNode = document.createElement('div');
|
|
34
|
+
messageNode.textContent = nls.localizeByDefault('Save your workspace if you plan to open it again.');
|
|
35
|
+
this.contentNode.appendChild(messageNode);
|
|
36
|
+
this.dontSaveButton = this.createButton(nls.localizeByDefault(UntitledWorkspaceExitDialog.Values["Don't Save"]));
|
|
37
|
+
this.dontSaveButton.classList.add('secondary');
|
|
38
|
+
this.controlPanel.appendChild(this.dontSaveButton);
|
|
39
|
+
this.appendCloseButton(Dialog.CANCEL);
|
|
40
|
+
this.appendAcceptButton(nls.localizeByDefault(UntitledWorkspaceExitDialog.Values.Save));
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
protected override onAfterAttach(msg: Message): void {
|
|
44
|
+
super.onAfterAttach(msg);
|
|
45
|
+
this.addAction(this.dontSaveButton, () => this.dontSave(), 'click');
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
protected override addAcceptAction<K extends keyof HTMLElementEventMap>(element: HTMLElement, ...additionalEventTypes: K[]): void {
|
|
49
|
+
this.addAction(element, () => this.doSave(), 'click');
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
protected dontSave(): void {
|
|
53
|
+
this._value = UntitledWorkspaceExitDialog.Values["Don't Save"];
|
|
54
|
+
this.accept();
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
protected doSave(): void {
|
|
58
|
+
this._value = UntitledWorkspaceExitDialog.Values.Save;
|
|
59
|
+
this.accept();
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export namespace UntitledWorkspaceExitDialog {
|
|
64
|
+
export const enum Values {
|
|
65
|
+
"Don't Save" = "Don't Save",
|
|
66
|
+
Cancel = 'Cancel',
|
|
67
|
+
Save = 'Save',
|
|
68
|
+
};
|
|
69
|
+
export type Options = keyof typeof Values;
|
|
70
|
+
}
|
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
// *****************************************************************************
|
|
2
|
-
// Copyright (C) 2019 TypeFox and others.
|
|
3
|
-
//
|
|
4
|
-
// This program and the accompanying materials are made available under the
|
|
5
|
-
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
-
// http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
-
//
|
|
8
|
-
// This Source Code may also be made available under the following Secondary
|
|
9
|
-
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
-
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
-
// with the GNU Classpath Exception which is available at
|
|
12
|
-
// https://www.gnu.org/software/classpath/license.html.
|
|
13
|
-
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
-
// *****************************************************************************
|
|
16
|
-
|
|
17
|
-
import { FilepathBreadcrumb } from '@theia/filesystem/lib/browser/breadcrumbs/filepath-breadcrumb';
|
|
18
|
-
import { FilepathBreadcrumbClassNameFactory, FilepathBreadcrumbsContribution } from '@theia/filesystem/lib/browser/breadcrumbs/filepath-breadcrumbs-contribution';
|
|
19
|
-
import { inject, injectable } from '@theia/core/shared/inversify';
|
|
20
|
-
import { WorkspaceService } from './workspace-service';
|
|
21
|
-
import URI from '@theia/core/lib/common/uri';
|
|
22
|
-
|
|
23
|
-
@injectable()
|
|
24
|
-
export class WorkspaceBreadcrumbsContribution extends FilepathBreadcrumbsContribution {
|
|
25
|
-
|
|
26
|
-
@inject(WorkspaceService)
|
|
27
|
-
protected readonly workspaceService: WorkspaceService;
|
|
28
|
-
|
|
29
|
-
override getContainerClassCreator(fileURI: URI): FilepathBreadcrumbClassNameFactory {
|
|
30
|
-
const workspaceRoot = this.workspaceService.getWorkspaceRootUri(fileURI);
|
|
31
|
-
return (location, index) => {
|
|
32
|
-
if (location.isEqual(fileURI)) {
|
|
33
|
-
return 'file';
|
|
34
|
-
} else if (workspaceRoot?.isEqual(location)) {
|
|
35
|
-
return 'root_folder';
|
|
36
|
-
}
|
|
37
|
-
return 'folder';
|
|
38
|
-
};
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
override getIconClassCreator(fileURI: URI): FilepathBreadcrumbClassNameFactory {
|
|
42
|
-
const workspaceRoot = this.workspaceService.getWorkspaceRootUri(fileURI);
|
|
43
|
-
return (location, index) => {
|
|
44
|
-
if (location.isEqual(fileURI) || workspaceRoot?.isEqual(location)) {
|
|
45
|
-
return this.labelProvider.getIcon(location) + ' file-icon';
|
|
46
|
-
}
|
|
47
|
-
return '';
|
|
48
|
-
};
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
protected override filterBreadcrumbs(uri: URI, breadcrumb: FilepathBreadcrumb): boolean {
|
|
52
|
-
const workspaceRootUri = this.workspaceService.getWorkspaceRootUri(uri);
|
|
53
|
-
const firstCrumbToHide = this.workspaceService.isMultiRootWorkspaceOpened ? workspaceRootUri?.parent : workspaceRootUri;
|
|
54
|
-
return super.filterBreadcrumbs(uri, breadcrumb) && (!firstCrumbToHide || !breadcrumb.uri.isEqualOrParent(firstCrumbToHide));
|
|
55
|
-
}
|
|
56
|
-
}
|
|
1
|
+
// *****************************************************************************
|
|
2
|
+
// Copyright (C) 2019 TypeFox and others.
|
|
3
|
+
//
|
|
4
|
+
// This program and the accompanying materials are made available under the
|
|
5
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
+
//
|
|
8
|
+
// This Source Code may also be made available under the following Secondary
|
|
9
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
+
// with the GNU Classpath Exception which is available at
|
|
12
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
13
|
+
//
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
+
// *****************************************************************************
|
|
16
|
+
|
|
17
|
+
import { FilepathBreadcrumb } from '@theia/filesystem/lib/browser/breadcrumbs/filepath-breadcrumb';
|
|
18
|
+
import { FilepathBreadcrumbClassNameFactory, FilepathBreadcrumbsContribution } from '@theia/filesystem/lib/browser/breadcrumbs/filepath-breadcrumbs-contribution';
|
|
19
|
+
import { inject, injectable } from '@theia/core/shared/inversify';
|
|
20
|
+
import { WorkspaceService } from './workspace-service';
|
|
21
|
+
import URI from '@theia/core/lib/common/uri';
|
|
22
|
+
|
|
23
|
+
@injectable()
|
|
24
|
+
export class WorkspaceBreadcrumbsContribution extends FilepathBreadcrumbsContribution {
|
|
25
|
+
|
|
26
|
+
@inject(WorkspaceService)
|
|
27
|
+
protected readonly workspaceService: WorkspaceService;
|
|
28
|
+
|
|
29
|
+
override getContainerClassCreator(fileURI: URI): FilepathBreadcrumbClassNameFactory {
|
|
30
|
+
const workspaceRoot = this.workspaceService.getWorkspaceRootUri(fileURI);
|
|
31
|
+
return (location, index) => {
|
|
32
|
+
if (location.isEqual(fileURI)) {
|
|
33
|
+
return 'file';
|
|
34
|
+
} else if (workspaceRoot?.isEqual(location)) {
|
|
35
|
+
return 'root_folder';
|
|
36
|
+
}
|
|
37
|
+
return 'folder';
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
override getIconClassCreator(fileURI: URI): FilepathBreadcrumbClassNameFactory {
|
|
42
|
+
const workspaceRoot = this.workspaceService.getWorkspaceRootUri(fileURI);
|
|
43
|
+
return (location, index) => {
|
|
44
|
+
if (location.isEqual(fileURI) || workspaceRoot?.isEqual(location)) {
|
|
45
|
+
return this.labelProvider.getIcon(location) + ' file-icon';
|
|
46
|
+
}
|
|
47
|
+
return '';
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
protected override filterBreadcrumbs(uri: URI, breadcrumb: FilepathBreadcrumb): boolean {
|
|
52
|
+
const workspaceRootUri = this.workspaceService.getWorkspaceRootUri(uri);
|
|
53
|
+
const firstCrumbToHide = this.workspaceService.isMultiRootWorkspaceOpened ? workspaceRootUri?.parent : workspaceRootUri;
|
|
54
|
+
return super.filterBreadcrumbs(uri, breadcrumb) && (!firstCrumbToHide || !breadcrumb.uri.isEqualOrParent(firstCrumbToHide));
|
|
55
|
+
}
|
|
56
|
+
}
|