-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCodeSnippetService.ts
251 lines (212 loc) · 6.66 KB
/
CodeSnippetService.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
import { JupyterFrontEnd } from '@jupyterlab/application';
import { Settings } from '@jupyterlab/settingregistry';
import { JSONArray, JSONExt, PartialJSONValue } from '@lumino/coreutils';
import { CodeSnippetWidget } from './CodeSnippetWidget';
export interface ICodeSnippet {
name: string;
description?: string;
language: string;
// code separated by a new line
code: string;
id: number;
tags?: string[];
}
export class CodeSnippetService {
private settingManager: Settings;
private static codeSnippetService: CodeSnippetService;
private codeSnippetList: ICodeSnippet[];
private constructor(settings: Settings, app: JupyterFrontEnd) {
this.settingManager = settings;
// when user changes the snippets using settingsEditor
this.settingManager.changed.connect(async (plugin) => {
const newCodeSnippetList = plugin.get('snippets').user;
if (
!JSONExt.deepEqual(
newCodeSnippetList,
this.codeSnippetList as unknown as PartialJSONValue
)
) {
this.codeSnippetList = this.convertToICodeSnippetList(
newCodeSnippetList as JSONArray
);
const leftWidgets = app.shell.widgets('left').iter();
let current = leftWidgets.next();
while (current) {
if (current instanceof CodeSnippetWidget) {
current.updateCodeSnippetWidget();
break;
}
current = leftWidgets.next();
}
// order code snippet and sync it with setting
this.orderSnippets();
await plugin
.set('snippets', this.codeSnippetList as unknown as PartialJSONValue)
.catch((e) => {
console.log(
'Error in syncing orders of snippets with those in settings'
);
console.log(e);
});
}
});
// load user's saved snippets
if (this.settingManager.get('snippets').user) {
const userSnippets = this.convertToICodeSnippetList(
this.settingManager.get('snippets').user as JSONArray
);
this.codeSnippetList = userSnippets;
}
// set default preview font size
if (this.settingManager.get('snippetPreviewFontSize').user === undefined) {
this.settingManager.set(
'snippetPreviewFontSize',
this.settingManager.default('snippetPreviewFontSize')
);
}
}
private convertToICodeSnippetList(snippets: JSONArray): ICodeSnippet[] {
const snippetList: ICodeSnippet[] = [];
snippets.forEach((snippet) => {
const newSnippet = snippet as unknown as ICodeSnippet;
snippetList.push(newSnippet);
});
return snippetList;
}
static init(settings: Settings, app: JupyterFrontEnd): void {
if (!this.codeSnippetService) {
this.codeSnippetService = new CodeSnippetService(settings, app);
}
}
static getCodeSnippetService(): CodeSnippetService {
return this.codeSnippetService;
}
get settings(): Settings {
return this.settingManager;
}
get snippets(): ICodeSnippet[] {
return this.codeSnippetList;
}
getSnippetByName(snippetName: string): ICodeSnippet[] {
return this.codeSnippetList.filter(
(snippet) => snippet.name.toLowerCase() === snippetName.toLowerCase()
);
}
async addSnippet(snippet: ICodeSnippet): Promise<boolean> {
const id = snippet.id;
this.codeSnippetList.splice(id, 0, snippet);
const numSnippets = this.codeSnippetList.length;
// update id's of snippets.
let i = id + 1;
for (; i < numSnippets; i++) {
this.codeSnippetList[i].id += 1;
}
await this.settingManager
.set('snippets', this.codeSnippetList as unknown as PartialJSONValue)
.catch((_) => {
return false;
});
return true;
}
async deleteSnippet(id: number): Promise<boolean> {
let numSnippets = this.codeSnippetList.length;
// should never satisfy this condition
if (id >= numSnippets) {
console.log('error in codeSnippetService');
}
if (id === numSnippets - 1) {
this.codeSnippetList.pop();
} else {
this.codeSnippetList.splice(id, 1);
numSnippets = this.codeSnippetList.length;
let i = id;
for (; i < numSnippets; i++) {
this.codeSnippetList[i].id -= 1;
}
}
await this.settingManager
.set('snippets', this.codeSnippetList as unknown as PartialJSONValue)
.catch((_) => {
return false;
});
return true;
}
async renameSnippet(oldName: string, newName: string): Promise<boolean> {
for (const snippet of this.codeSnippetList) {
if (snippet.name === oldName) {
snippet.name = newName;
break;
}
}
await this.settingManager
.set('snippets', this.codeSnippetList as unknown as PartialJSONValue)
.catch((_) => {
return false;
});
return true;
}
duplicateNameExists(newName: string): boolean {
for (const snippet of this.codeSnippetList) {
if (snippet.name.toLowerCase() === newName.toLowerCase()) {
return true;
}
}
return false;
}
async modifyExistingSnippet(
oldName: string,
newSnippet: ICodeSnippet
): Promise<boolean> {
for (const snippet of this.codeSnippetList) {
if (snippet.name.toLowerCase() === oldName.toLowerCase()) {
this.codeSnippetList.splice(snippet.id, 1, newSnippet);
break;
}
}
await this.settingManager
.set('snippets', this.codeSnippetList as unknown as PartialJSONValue)
.catch((_) => {
return false;
});
return true;
}
async moveSnippet(fromIdx: number, toIdx: number): Promise<boolean> {
if (toIdx > fromIdx) {
toIdx = toIdx - 1;
}
if (toIdx === fromIdx) {
return;
}
const snippetToMove = this.codeSnippetList[fromIdx];
this.deleteSnippet(fromIdx).then((res: boolean) => {
if (!res) {
console.log('Error in moving snippet(delete)');
return false;
}
});
snippetToMove.id = toIdx;
this.addSnippet(snippetToMove).then((res: boolean) => {
if (!res) {
console.log('Error in moving snippet(add)');
return false;
}
});
await this.settingManager
.set('snippets', this.codeSnippetList as unknown as PartialJSONValue)
.catch((_) => {
return false;
});
return true;
}
// order snippets just in case when it gets shared between users
async orderSnippets(): Promise<boolean> {
this.codeSnippetList.sort((a, b) => a.id - b.id);
this.codeSnippetList.forEach((snippet, i) => (snippet.id = i));
await this.settingManager
.set('snippets', this.codeSnippetList as unknown as PartialJSONValue)
.catch((_) => {
return false;
});
return true;
}
}