@codingame/monaco-vscode-dialogs-service-override 31.0.1 → 32.0.0
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/package.json +2 -2
- package/vscode/src/vs/workbench/browser/parts/dialogs/dialogHandler.js +1 -1
- package/vscode/src/vs/workbench/services/dialogs/browser/abstractFileDialogService.js +14 -14
- package/vscode/src/vs/workbench/services/dialogs/browser/fileDialogService.js +8 -8
- package/vscode/src/vs/workbench/services/dialogs/browser/simpleFileDialog.d.ts +0 -1
- package/vscode/src/vs/workbench/services/dialogs/browser/simpleFileDialog.js +21 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-dialogs-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "32.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - dialogs service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-api": "
|
|
18
|
+
"@codingame/monaco-vscode-api": "32.0.0"
|
|
19
19
|
},
|
|
20
20
|
"main": "index.js",
|
|
21
21
|
"module": "index.js",
|
|
@@ -118,7 +118,7 @@ let BrowserDialogHandler = class BrowserDialogHandler extends AbstractDialogHand
|
|
|
118
118
|
async about(title, details, detailsToCopy) {
|
|
119
119
|
const {
|
|
120
120
|
button
|
|
121
|
-
} = await this.doShow(Severity.Info, title, [( localize(
|
|
121
|
+
} = await this.doShow(Severity.Info, title, [( localize(3146, "&&Copy")), ( localize(3147, "OK"))], details, 1);
|
|
122
122
|
if (button === 0) {
|
|
123
123
|
this.clipboardService.writeText(detailsToCopy);
|
|
124
124
|
}
|
|
@@ -202,16 +202,16 @@ let AbstractFileDialogService = class AbstractFileDialogService {
|
|
|
202
202
|
return ConfirmResult.DONT_SAVE;
|
|
203
203
|
}
|
|
204
204
|
let message;
|
|
205
|
-
let detail = ( localize(
|
|
205
|
+
let detail = ( localize(16450, "Your changes will be lost if you don't save them."));
|
|
206
206
|
if (fileNamesOrResources.length === 1) {
|
|
207
207
|
message = ( localize(
|
|
208
|
-
|
|
208
|
+
16451,
|
|
209
209
|
"Do you want to save the changes you made to {0}?",
|
|
210
210
|
typeof fileNamesOrResources[0] === "string" ? fileNamesOrResources[0] : basename(fileNamesOrResources[0])
|
|
211
211
|
));
|
|
212
212
|
} else {
|
|
213
213
|
message = ( localize(
|
|
214
|
-
|
|
214
|
+
16452,
|
|
215
215
|
"Do you want to save the changes to the following {0} files?",
|
|
216
216
|
fileNamesOrResources.length
|
|
217
217
|
));
|
|
@@ -224,10 +224,10 @@ let AbstractFileDialogService = class AbstractFileDialogService {
|
|
|
224
224
|
message,
|
|
225
225
|
detail,
|
|
226
226
|
buttons: [{
|
|
227
|
-
label: fileNamesOrResources.length > 1 ? ( localize(
|
|
227
|
+
label: fileNamesOrResources.length > 1 ? ( localize(16453, "&&Save All")) : ( localize(16454, "&&Save")),
|
|
228
228
|
run: () => ConfirmResult.SAVE
|
|
229
229
|
}, {
|
|
230
|
-
label: ( localize(
|
|
230
|
+
label: ( localize(16455, "Do&&n't Save")),
|
|
231
231
|
run: () => ConfirmResult.DONT_SAVE
|
|
232
232
|
}],
|
|
233
233
|
cancelButton: {
|
|
@@ -240,7 +240,7 @@ let AbstractFileDialogService = class AbstractFileDialogService {
|
|
|
240
240
|
return schema === Schemas.untitled ? [Schemas.file] : (schema !== Schemas.file ? [schema, Schemas.file] : [schema]);
|
|
241
241
|
}
|
|
242
242
|
async pickFileFolderAndOpenSimplified(schema, options, preferNewWindow) {
|
|
243
|
-
const title = ( localize(
|
|
243
|
+
const title = ( localize(16456, "Open File or Folder"));
|
|
244
244
|
const availableFileSystems = this.addFileSchemaIfNeeded(schema);
|
|
245
245
|
const uris = await this.pickResource({
|
|
246
246
|
canSelectFiles: true,
|
|
@@ -280,7 +280,7 @@ let AbstractFileDialogService = class AbstractFileDialogService {
|
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
282
|
async pickFileAndOpenSimplified(schema, options, preferNewWindow) {
|
|
283
|
-
const title = ( localize(
|
|
283
|
+
const title = ( localize(16457, "Open File"));
|
|
284
284
|
const availableFileSystems = this.addFileSchemaIfNeeded(schema);
|
|
285
285
|
const uris = await this.pickResource({
|
|
286
286
|
canSelectFiles: true,
|
|
@@ -322,7 +322,7 @@ let AbstractFileDialogService = class AbstractFileDialogService {
|
|
|
322
322
|
}]);
|
|
323
323
|
}
|
|
324
324
|
async pickFolderAndOpenSimplified(schema, options) {
|
|
325
|
-
const title = ( localize(
|
|
325
|
+
const title = ( localize(16458, "Open Folder"));
|
|
326
326
|
const availableFileSystems = this.addFileSchemaIfNeeded(schema, true);
|
|
327
327
|
const uris = await this.pickResource({
|
|
328
328
|
canSelectFiles: false,
|
|
@@ -343,9 +343,9 @@ let AbstractFileDialogService = class AbstractFileDialogService {
|
|
|
343
343
|
}
|
|
344
344
|
}
|
|
345
345
|
async pickWorkspaceAndOpenSimplified(schema, options) {
|
|
346
|
-
const title = ( localize(
|
|
346
|
+
const title = ( localize(16459, "Open Workspace from File"));
|
|
347
347
|
const filters = [{
|
|
348
|
-
name: ( localize(
|
|
348
|
+
name: ( localize(16460, "Workspace")),
|
|
349
349
|
extensions: [WORKSPACE_EXTENSION]
|
|
350
350
|
}];
|
|
351
351
|
const availableFileSystems = this.addFileSchemaIfNeeded(schema, true);
|
|
@@ -372,7 +372,7 @@ let AbstractFileDialogService = class AbstractFileDialogService {
|
|
|
372
372
|
if (!options.availableFileSystems) {
|
|
373
373
|
options.availableFileSystems = this.addFileSchemaIfNeeded(schema);
|
|
374
374
|
}
|
|
375
|
-
options.title = ( localize(
|
|
375
|
+
options.title = ( localize(16461, "Save As"));
|
|
376
376
|
const uri = await this.saveRemoteResource(options);
|
|
377
377
|
if (uri) {
|
|
378
378
|
this.addFileToRecentlyOpened(uri);
|
|
@@ -437,7 +437,7 @@ let AbstractFileDialogService = class AbstractFileDialogService {
|
|
|
437
437
|
getPickFileToSaveDialogOptions(defaultUri, availableFileSystems) {
|
|
438
438
|
const options = {
|
|
439
439
|
defaultUri,
|
|
440
|
-
title: ( localize(
|
|
440
|
+
title: ( localize(16462, "Save As")),
|
|
441
441
|
availableFileSystems
|
|
442
442
|
};
|
|
443
443
|
const ext = defaultUri ? extname(defaultUri) : undefined;
|
|
@@ -475,10 +475,10 @@ let AbstractFileDialogService = class AbstractFileDialogService {
|
|
|
475
475
|
};
|
|
476
476
|
}
|
|
477
477
|
options.filters = coalesce([{
|
|
478
|
-
name: ( localize(
|
|
478
|
+
name: ( localize(16463, "All Files")),
|
|
479
479
|
extensions: ["*"]
|
|
480
480
|
}, matchingFilter, ...registeredLanguageFilters, {
|
|
481
|
-
name: ( localize(
|
|
481
|
+
name: ( localize(16464, "No Extension")),
|
|
482
482
|
extensions: [""]
|
|
483
483
|
}]);
|
|
484
484
|
return options;
|
|
@@ -28,7 +28,7 @@ class FileDialogService extends AbstractFileDialogService {
|
|
|
28
28
|
if (this.shouldUseSimplified(schema)) {
|
|
29
29
|
return super.pickFileFolderAndOpenSimplified(schema, options, false);
|
|
30
30
|
}
|
|
31
|
-
throw ( new Error(( localize(
|
|
31
|
+
throw ( new Error(( localize(16465, "Can't open folders, try adding a folder to the workspace instead."))));
|
|
32
32
|
}
|
|
33
33
|
addFileSchemaIfNeeded(schema, isFolder) {
|
|
34
34
|
return (schema === Schemas.untitled) ? [Schemas.file] : (((schema !== Schemas.file) && (!isFolder || (schema !== Schemas.vscodeRemote))) ? [schema, Schemas.file] : [schema]);
|
|
@@ -73,7 +73,7 @@ class FileDialogService extends AbstractFileDialogService {
|
|
|
73
73
|
if (this.shouldUseSimplified(schema)) {
|
|
74
74
|
return super.pickFolderAndOpenSimplified(schema, options);
|
|
75
75
|
}
|
|
76
|
-
throw ( new Error(( localize(
|
|
76
|
+
throw ( new Error(( localize(16465, "Can't open folders, try adding a folder to the workspace instead."))));
|
|
77
77
|
}
|
|
78
78
|
async pickWorkspaceAndOpen(options) {
|
|
79
79
|
options.availableFileSystems = this.getWorkspaceAvailableFileSystems(options);
|
|
@@ -85,7 +85,7 @@ class FileDialogService extends AbstractFileDialogService {
|
|
|
85
85
|
return super.pickWorkspaceAndOpenSimplified(schema, options);
|
|
86
86
|
}
|
|
87
87
|
throw ( new Error(( localize(
|
|
88
|
-
|
|
88
|
+
16466,
|
|
89
89
|
"Can't open workspaces, try adding a folder to the workspace instead."
|
|
90
90
|
))));
|
|
91
91
|
}
|
|
@@ -213,19 +213,19 @@ class FileDialogService extends AbstractFileDialogService {
|
|
|
213
213
|
}
|
|
214
214
|
}
|
|
215
215
|
const buttons = [{
|
|
216
|
-
label: ( localize(
|
|
216
|
+
label: ( localize(16467, "&&Open Remote...")),
|
|
217
217
|
run: async () => {
|
|
218
218
|
await this.commandService.executeCommand("workbench.action.remote.showMenu");
|
|
219
219
|
}
|
|
220
220
|
}, {
|
|
221
|
-
label: ( localize(
|
|
221
|
+
label: ( localize(16468, "&&Learn More")),
|
|
222
222
|
run: async () => {
|
|
223
223
|
await this.openerService.open("https://aka.ms/VSCodeWebLocalFileSystemAccess");
|
|
224
224
|
}
|
|
225
225
|
}];
|
|
226
226
|
if (context === "open") {
|
|
227
227
|
buttons.push({
|
|
228
|
-
label: ( localize(
|
|
228
|
+
label: ( localize(16469, "Open &&Files...")),
|
|
229
229
|
run: async () => {
|
|
230
230
|
const files = await triggerUpload();
|
|
231
231
|
if (files) {
|
|
@@ -247,9 +247,9 @@ class FileDialogService extends AbstractFileDialogService {
|
|
|
247
247
|
}
|
|
248
248
|
await this.dialogService.prompt({
|
|
249
249
|
type: Severity.Warning,
|
|
250
|
-
message: ( localize(
|
|
250
|
+
message: ( localize(16470, "Opening Local Folders is Unsupported")),
|
|
251
251
|
detail: ( localize(
|
|
252
|
-
|
|
252
|
+
16471,
|
|
253
253
|
"Your browser doesn't support opening local folders.\nYou can either open single files or open a remote repository."
|
|
254
254
|
)),
|
|
255
255
|
buttons
|
|
@@ -129,7 +129,6 @@ export declare class SimpleFileDialog extends Disposable implements ISimpleFileD
|
|
|
129
129
|
protected getUserHome(trueHome?: boolean): Promise<URI>;
|
|
130
130
|
private normalizeUri;
|
|
131
131
|
private pickResource;
|
|
132
|
-
dispose(): void;
|
|
133
132
|
private handleValueChange;
|
|
134
133
|
private setButtons;
|
|
135
134
|
private isBadSubpath;
|
|
@@ -41,7 +41,7 @@ import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform
|
|
|
41
41
|
var OpenLocalFileCommand;
|
|
42
42
|
(function(OpenLocalFileCommand) {
|
|
43
43
|
OpenLocalFileCommand.ID = "workbench.action.files.openLocalFile";
|
|
44
|
-
OpenLocalFileCommand.LABEL = ( localize(
|
|
44
|
+
OpenLocalFileCommand.LABEL = ( localize(16472, "Open Local File..."));
|
|
45
45
|
function handler() {
|
|
46
46
|
return accessor => {
|
|
47
47
|
const dialogService = accessor.get(IFileDialogService);
|
|
@@ -56,7 +56,7 @@ var OpenLocalFileCommand;
|
|
|
56
56
|
var SaveLocalFileCommand;
|
|
57
57
|
(function(SaveLocalFileCommand) {
|
|
58
58
|
SaveLocalFileCommand.ID = "workbench.action.files.saveLocalFile";
|
|
59
|
-
SaveLocalFileCommand.LABEL = ( localize(
|
|
59
|
+
SaveLocalFileCommand.LABEL = ( localize(16473, "Save Local File..."));
|
|
60
60
|
function handler() {
|
|
61
61
|
return accessor => {
|
|
62
62
|
const editorService = accessor.get(IEditorService);
|
|
@@ -79,7 +79,7 @@ var SaveLocalFileCommand;
|
|
|
79
79
|
var OpenLocalFolderCommand;
|
|
80
80
|
(function(OpenLocalFolderCommand) {
|
|
81
81
|
OpenLocalFolderCommand.ID = "workbench.action.files.openLocalFolder";
|
|
82
|
-
OpenLocalFolderCommand.LABEL = ( localize(
|
|
82
|
+
OpenLocalFolderCommand.LABEL = ( localize(16474, "Open Local Folder..."));
|
|
83
83
|
function handler() {
|
|
84
84
|
return accessor => {
|
|
85
85
|
const dialogService = accessor.get(IFileDialogService);
|
|
@@ -94,7 +94,7 @@ var OpenLocalFolderCommand;
|
|
|
94
94
|
var OpenLocalFileFolderCommand;
|
|
95
95
|
(function(OpenLocalFileFolderCommand) {
|
|
96
96
|
OpenLocalFileFolderCommand.ID = "workbench.action.files.openLocalFileFolder";
|
|
97
|
-
OpenLocalFileFolderCommand.LABEL = ( localize(
|
|
97
|
+
OpenLocalFileFolderCommand.LABEL = ( localize(16475, "Open Local..."));
|
|
98
98
|
function handler() {
|
|
99
99
|
return accessor => {
|
|
100
100
|
const dialogService = accessor.get(IFileDialogService);
|
|
@@ -248,7 +248,7 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
|
|
|
248
248
|
}
|
|
249
249
|
if ((this.scheme !== Schemas.file) && !this.fileService.hasProvider(defaultUri)) {
|
|
250
250
|
this.notificationService.info(( localize(
|
|
251
|
-
|
|
251
|
+
16476,
|
|
252
252
|
"File system provider for {0} is not available.",
|
|
253
253
|
(defaultUri.toString())
|
|
254
254
|
)));
|
|
@@ -356,12 +356,12 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
|
|
|
356
356
|
this.filePickBox.matchOnLabel = false;
|
|
357
357
|
this.filePickBox.sortByLabel = false;
|
|
358
358
|
this.filePickBox.ignoreFocusOut = true;
|
|
359
|
-
this.filePickBox.placeholder = ( localize(
|
|
359
|
+
this.filePickBox.placeholder = ( localize(16477, "Folder path"));
|
|
360
360
|
this.filePickBox.ok = true;
|
|
361
361
|
this.filePickBox.okLabel = typeof this.options.openLabel === "string" ? this.options.openLabel : this.options.openLabel?.withoutMnemonic;
|
|
362
362
|
if ((this.scheme !== Schemas.file) && this.options && this.options.availableFileSystems && (this.options.availableFileSystems.length > 1) && (this.options.availableFileSystems.indexOf(Schemas.file) > -1)) {
|
|
363
363
|
this.filePickBox.customButton = true;
|
|
364
|
-
this.filePickBox.customLabel = ( localize(
|
|
364
|
+
this.filePickBox.customLabel = ( localize(16478, "Show Local"));
|
|
365
365
|
this.filePickBox.customButtonSecondary = true;
|
|
366
366
|
let action;
|
|
367
367
|
if (isSave) {
|
|
@@ -486,9 +486,6 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
|
|
|
486
486
|
});
|
|
487
487
|
}));
|
|
488
488
|
}
|
|
489
|
-
dispose() {
|
|
490
|
-
super.dispose();
|
|
491
|
-
}
|
|
492
489
|
async handleValueChange(value) {
|
|
493
490
|
try {
|
|
494
491
|
if (this.isValueChangeFromUser()) {
|
|
@@ -512,7 +509,7 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
|
|
|
512
509
|
setButtons() {
|
|
513
510
|
this.filePickBox.buttons = [{
|
|
514
511
|
iconClass: this._showDotFiles ? ThemeIcon.asClassName(Codicon.eye) : ThemeIcon.asClassName(Codicon.eyeClosed),
|
|
515
|
-
tooltip: this._showDotFiles ? ( localize(
|
|
512
|
+
tooltip: this._showDotFiles ? ( localize(16479, "Hide dot files")) : ( localize(16480, "Show dot files")),
|
|
516
513
|
alwaysVisible: true
|
|
517
514
|
}];
|
|
518
515
|
}
|
|
@@ -667,7 +664,7 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
|
|
|
667
664
|
valueUri = this.tryAddTrailingSeparatorToDirectory(valueUri, stat);
|
|
668
665
|
return (await this.updateItems(valueUri)) ? UpdateResult.UpdatedWithTrailing : UpdateResult.Updated;
|
|
669
666
|
} else if (this.endsWithSlash(value)) {
|
|
670
|
-
this.filePickBox.validationMessage = ( localize(
|
|
667
|
+
this.filePickBox.validationMessage = ( localize(16481, "The path does not exist. Use ~ to go to your home directory."));
|
|
671
668
|
this.badPath = value;
|
|
672
669
|
return UpdateResult.InvalidPath;
|
|
673
670
|
} else {
|
|
@@ -831,7 +828,7 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
|
|
|
831
828
|
prompt.ignoreFocusOut = true;
|
|
832
829
|
prompt.ok = true;
|
|
833
830
|
prompt.customButton = true;
|
|
834
|
-
prompt.customLabel = ( localize(
|
|
831
|
+
prompt.customLabel = ( localize(16482, "Cancel"));
|
|
835
832
|
prompt.customButtonSecondary = true;
|
|
836
833
|
prompt.value = this.pathFromUri(uri);
|
|
837
834
|
let isResolving = false;
|
|
@@ -860,7 +857,7 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
|
|
|
860
857
|
}
|
|
861
858
|
async validate(uri) {
|
|
862
859
|
if (uri === undefined) {
|
|
863
|
-
this.filePickBox.validationMessage = ( localize(
|
|
860
|
+
this.filePickBox.validationMessage = ( localize(16483, "Please enter a valid path."));
|
|
864
861
|
return Promise.resolve(false);
|
|
865
862
|
}
|
|
866
863
|
let stat;
|
|
@@ -871,47 +868,47 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
|
|
|
871
868
|
} catch (e) {}
|
|
872
869
|
if (this.requiresTrailing) {
|
|
873
870
|
if (stat?.isDirectory) {
|
|
874
|
-
this.filePickBox.validationMessage = ( localize(
|
|
871
|
+
this.filePickBox.validationMessage = ( localize(16484, "The folder already exists. Please use a new file name."));
|
|
875
872
|
return Promise.resolve(false);
|
|
876
873
|
} else if (stat) {
|
|
877
874
|
const message = ( localize(
|
|
878
|
-
|
|
875
|
+
16485,
|
|
879
876
|
"{0} already exists. Are you sure you want to overwrite it?",
|
|
880
877
|
basename(uri)
|
|
881
878
|
));
|
|
882
879
|
return this.yesNoPrompt(uri, message);
|
|
883
880
|
} else if (!(isValidBasename(basename(uri), this.isWindows))) {
|
|
884
|
-
this.filePickBox.validationMessage = ( localize(
|
|
881
|
+
this.filePickBox.validationMessage = ( localize(16486, "Please enter a valid file name."));
|
|
885
882
|
return Promise.resolve(false);
|
|
886
883
|
} else if (!statDirname) {
|
|
887
884
|
const message = ( localize(
|
|
888
|
-
|
|
885
|
+
16487,
|
|
889
886
|
"The folder {0} does not exist. Would you like to create it?",
|
|
890
887
|
basename(dirname(uri))
|
|
891
888
|
));
|
|
892
889
|
return this.yesNoPrompt(uri, message);
|
|
893
890
|
} else if (!statDirname.isDirectory) {
|
|
894
|
-
this.filePickBox.validationMessage = ( localize(
|
|
891
|
+
this.filePickBox.validationMessage = ( localize(16488, "Please enter a path that exists."));
|
|
895
892
|
return Promise.resolve(false);
|
|
896
893
|
} else if (statDirname.readonly) {
|
|
897
894
|
this.filePickBox.validationMessage = ( localize(
|
|
898
|
-
|
|
895
|
+
16489,
|
|
899
896
|
"This folder cannot be used as a save destination. Please choose another folder"
|
|
900
897
|
));
|
|
901
898
|
return Promise.resolve(false);
|
|
902
899
|
}
|
|
903
900
|
} else {
|
|
904
901
|
if (!stat) {
|
|
905
|
-
this.filePickBox.validationMessage = ( localize(
|
|
902
|
+
this.filePickBox.validationMessage = ( localize(16488, "Please enter a path that exists."));
|
|
906
903
|
return Promise.resolve(false);
|
|
907
904
|
} else if (uri.path === "/" && this.isWindows) {
|
|
908
|
-
this.filePickBox.validationMessage = ( localize(
|
|
905
|
+
this.filePickBox.validationMessage = ( localize(16490, "Please start the path with a drive letter."));
|
|
909
906
|
return Promise.resolve(false);
|
|
910
907
|
} else if (stat.isDirectory && !this.allowFolderSelection) {
|
|
911
|
-
this.filePickBox.validationMessage = ( localize(
|
|
908
|
+
this.filePickBox.validationMessage = ( localize(16491, "Please select a file."));
|
|
912
909
|
return Promise.resolve(false);
|
|
913
910
|
} else if (!stat.isDirectory && !this.allowFileSelection) {
|
|
914
|
-
this.filePickBox.validationMessage = ( localize(
|
|
911
|
+
this.filePickBox.validationMessage = ( localize(16492, "Please select a folder."));
|
|
915
912
|
return Promise.resolve(false);
|
|
916
913
|
}
|
|
917
914
|
}
|