-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCodeSnippetUtilities.ts
77 lines (71 loc) · 1.95 KB
/
CodeSnippetUtilities.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
import { showDialog, Dialog } from '@jupyterlab/apputils';
import { SUPPORTED_LANGUAGES } from './CodeSnippetLanguages';
import { CodeSnippetService, ICodeSnippet } from './CodeSnippetService';
/**
* Test whether user typed in all required inputs.
*/
export function validateInputs(
name: string,
description: string,
language: string
): boolean {
let status = true;
let message = '';
if (name === '') {
message += 'Name must be filled out\n';
status = false;
}
if (language === '') {
message += 'Language must be filled out';
status = false;
}
if (!SUPPORTED_LANGUAGES.includes(language)) {
message += 'Language must be one of the options';
status = false;
}
if (status === false) {
alert(message);
}
return status;
}
/**
* Rename a file, warning for overwriting another.
*/
export async function saveOverWriteFile(
codeSnippetManager: CodeSnippetService,
oldSnippet: ICodeSnippet,
newSnippet: ICodeSnippet
): Promise<boolean> {
const newName = newSnippet.name;
return await shouldOverwrite(newName).then((res) => {
if (res) {
newSnippet.id = oldSnippet.id;
codeSnippetManager.deleteSnippet(oldSnippet.id).then((res: boolean) => {
if (!res) {
console.log('Error in overwriting a snippet (delete)');
return false;
}
});
codeSnippetManager.addSnippet(newSnippet).then((res: boolean) => {
if (!res) {
console.log('Error in overwriting a snippet (add)');
return false;
}
});
return true;
}
});
}
/**
* Ask the user whether to overwrite a file.
*/
async function shouldOverwrite(newName: string): Promise<boolean> {
const options = {
title: 'Overwrite code snippet?',
body: `"${newName}" already exists, overwrite?`,
buttons: [Dialog.cancelButton(), Dialog.warnButton({ label: 'Overwrite' })],
};
return showDialog(options).then((result) => {
return result.button.accept;
});
}