-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCodeSnippetEditor.tsx
618 lines (551 loc) · 20.1 KB
/
CodeSnippetEditor.tsx
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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
// Copyright (c) 2020, jupytercalpoly
// Distributed under the terms of the BSD-3 Clause License.
// Some lines of code are from Elyra Code Snippet.
/*
* Copyright 2018-2020 IBM Corporation
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions a* limitations under the License.
*/
import { CodeEditor, IEditorServices } from '@jupyterlab/codeeditor';
import {
ReactWidget,
showDialog,
Dialog,
WidgetTracker,
} from '@jupyterlab/apputils';
import { Button } from '@jupyterlab/ui-components';
import { Message } from '@lumino/messaging';
import React from 'react';
import { CodeSnippetService, ICodeSnippet } from './CodeSnippetService';
import { CodeSnippetWidget } from './CodeSnippetWidget';
import { SUPPORTED_LANGUAGES } from './CodeSnippetLanguages';
import { CodeSnippetEditorTags, ITag } from './CodeSnippetEditorTags';
import { showMessage } from './CodeSnippetMessage';
import { validateInputs, saveOverWriteFile } from './CodeSnippetUtilities';
/**
* CSS style classes
*/
const CODE_SNIPPET_EDITOR = 'jp-codeSnippet-editor';
const CODE_SNIPPET_EDITOR_TITLE = 'jp-codeSnippet-editor-title';
const CODE_SNIPPET_EDITOR_METADATA = 'jp-codeSnippet-editor-metadata';
const CODE_SNIPPET_EDITOR_INPUT_ACTIVE = 'jp-codeSnippet-editor-active';
const CODE_SNIPPET_EDITOR_NAME_INPUT = 'jp-codeSnippet-editor-name';
const CODE_SNIPPET_EDITOR_LABEL = 'jp-codeSnippet-editor-label';
const CODE_SNIPPET_EDITOR_DESC_INPUT = 'jp-codeSnippet-editor-description';
const CODE_SNIPPET_EDITOR_LANG_INPUT = 'jp-codeSnippet-editor-language';
const CODE_SNIPPET_EDITOR_MIRROR = 'jp-codeSnippetInput-editor';
const CODE_SNIPPET_EDITOR_INPUTAREA = 'jp-codeSnippetInputArea';
const CODE_SNIPPET_EDITOR_INPUTAREA_MIRROR = 'jp-codeSnippetInputArea-editor';
const EDITOR_DIRTY_CLASS = 'jp-mod-dirty';
export interface ICodeSnippetEditorMetadata extends ICodeSnippet {
allSnippetTags: string[]; // all snippet tags mean all the tags that snippets have, while tags refer to those specific to a snippet
allLangTags: string[];
fromScratch: boolean;
}
export class CodeSnippetEditor extends ReactWidget {
editorServices: IEditorServices;
private editor: CodeEditor.IEditor;
private saved: boolean;
private oldCodeSnippetName: string;
private _codeSnippetEditorMetaData: ICodeSnippetEditorMetadata;
private _hasRefreshedSinceAttach: boolean;
contentsService: CodeSnippetService;
codeSnippetWidget: CodeSnippetWidget;
tracker: WidgetTracker;
constructor(
editorServices: IEditorServices,
tracker: WidgetTracker,
codeSnippetWidget: CodeSnippetWidget,
args: ICodeSnippetEditorMetadata
) {
super();
this.addClass(CODE_SNIPPET_EDITOR);
this.contentsService = CodeSnippetService.getCodeSnippetService();
this.editorServices = editorServices;
this.tracker = tracker;
this._codeSnippetEditorMetaData = args;
this.oldCodeSnippetName = args.name;
this.saved = true;
this._hasRefreshedSinceAttach = false;
this.codeSnippetWidget = codeSnippetWidget;
this.renderCodeInput = this.renderCodeInput.bind(this);
this.handleInputFieldChange = this.handleInputFieldChange.bind(this);
this.activateCodeMirror = this.activateCodeMirror.bind(this);
this.saveChange = this.saveChange.bind(this);
this.updateSnippet = this.updateSnippet.bind(this);
this.handleChangeOnTag = this.handleChangeOnTag.bind(this);
}
get codeSnippetEditorMetadata(): ICodeSnippetEditorMetadata {
return this._codeSnippetEditorMetaData;
}
private deactivateEditor(
event: React.MouseEvent<HTMLDivElement, MouseEvent>
): void {
let target = event.target as HTMLElement;
while (target && target.parentElement) {
if (
target.classList.contains(CODE_SNIPPET_EDITOR_MIRROR) ||
target.classList.contains(CODE_SNIPPET_EDITOR_NAME_INPUT) ||
target.classList.contains(CODE_SNIPPET_EDITOR_DESC_INPUT)
) {
break;
}
target = target.parentElement;
}
const nameInput = document.querySelector(
`.${CODE_SNIPPET_EDITOR}-${this._codeSnippetEditorMetaData.id} .${CODE_SNIPPET_EDITOR_NAME_INPUT}`
);
const descriptionInput = document.querySelector(
`.${CODE_SNIPPET_EDITOR}-${this._codeSnippetEditorMetaData.id} .${CODE_SNIPPET_EDITOR_DESC_INPUT}`
);
const editor = document.querySelector(
`.${CODE_SNIPPET_EDITOR}-${this._codeSnippetEditorMetaData.id} #code-${this._codeSnippetEditorMetaData.id}`
);
if (target.classList.contains(CODE_SNIPPET_EDITOR_NAME_INPUT)) {
this.deactivateDescriptionField(descriptionInput);
this.deactivateCodeMirror(editor);
} else if (target.classList.contains(CODE_SNIPPET_EDITOR_DESC_INPUT)) {
this.deactivateNameField(nameInput);
this.deactivateCodeMirror(editor);
} else if (target.classList.contains(CODE_SNIPPET_EDITOR_MIRROR)) {
this.deactivateNameField(nameInput);
this.deactivateDescriptionField(descriptionInput);
} else {
this.deactivateNameField(nameInput);
this.deactivateDescriptionField(descriptionInput);
this.deactivateCodeMirror(editor);
}
}
private deactivateNameField(nameInput: Element): void {
if (nameInput.classList.contains(CODE_SNIPPET_EDITOR_INPUT_ACTIVE)) {
nameInput.classList.remove(CODE_SNIPPET_EDITOR_INPUT_ACTIVE);
}
}
private deactivateDescriptionField(descriptionInput: Element): void {
if (descriptionInput.classList.contains(CODE_SNIPPET_EDITOR_INPUT_ACTIVE)) {
descriptionInput.classList.remove(CODE_SNIPPET_EDITOR_INPUT_ACTIVE);
}
}
private activeFieldState(
event: React.MouseEvent<HTMLInputElement, MouseEvent>
): void {
const target = event.target as HTMLElement;
if (!target.classList.contains(CODE_SNIPPET_EDITOR_INPUT_ACTIVE)) {
target.classList.add(CODE_SNIPPET_EDITOR_INPUT_ACTIVE);
}
}
onUpdateRequest(msg: Message): void {
super.onUpdateRequest(msg);
if (
!this.editor &&
document.getElementById('code-' + this._codeSnippetEditorMetaData.id)
) {
const editorFactory = this.editorServices.factoryService.newInlineEditor;
const getMimeTypeByLanguage =
this.editorServices.mimeTypeService.getMimeTypeByLanguage;
this.editor = editorFactory({
host: document.getElementById(
'code-' + this._codeSnippetEditorMetaData.id
),
model: new CodeEditor.Model({
value: this._codeSnippetEditorMetaData.code,
mimeType: getMimeTypeByLanguage({
name: this._codeSnippetEditorMetaData.language,
codemirror_mode: this._codeSnippetEditorMetaData.language,
}),
}),
});
this.editor.model.value.changed.connect((args: any) => {
this._codeSnippetEditorMetaData.code = args.text.split('\n');
if (!this.title.className.includes(EDITOR_DIRTY_CLASS)) {
this.title.className += ` ${EDITOR_DIRTY_CLASS}`;
}
this.saved = false;
});
}
if (this.isVisible) {
this._hasRefreshedSinceAttach = true;
this.editor.refresh();
}
}
onAfterAttach(msg: Message): void {
super.onAfterAttach(msg);
this._hasRefreshedSinceAttach = false;
if (this.isVisible) {
this.update();
}
window.addEventListener('beforeunload', (e) => {
if (!this.saved) {
e.preventDefault();
e.returnValue = '';
}
});
}
onAfterShow(msg: Message): void {
if (!this._hasRefreshedSinceAttach) {
this.update();
}
}
/**
* Initial focus on the editor when it gets activated!
* @param msg
*/
onActivateRequest(msg: Message): void {
this.editor.focus();
}
onCloseRequest(msg: Message): void {
if (!this.saved) {
showDialog({
title: 'Close without saving?',
body: (
<p>
{' '}
{`"${this._codeSnippetEditorMetaData.name}" has unsaved changes, close without saving?`}{' '}
</p>
),
buttons: [
Dialog.cancelButton(),
Dialog.warnButton({ label: 'Discard' }),
Dialog.okButton({ label: 'Save' }),
],
}).then((response: any): void => {
if (response.button.accept) {
if (response.button.label === 'Discard') {
this.dispose();
super.onCloseRequest(msg);
} else if (response.button.label === 'Save') {
const name = (
document.querySelector(
`.${CODE_SNIPPET_EDITOR}-${this._codeSnippetEditorMetaData.id} .${CODE_SNIPPET_EDITOR_NAME_INPUT}`
) as HTMLInputElement
).value;
const description = (
document.querySelector(
`.${CODE_SNIPPET_EDITOR}-${this._codeSnippetEditorMetaData.id} .${CODE_SNIPPET_EDITOR_DESC_INPUT}`
) as HTMLInputElement
).value;
const language = (
document.querySelector(
`.${CODE_SNIPPET_EDITOR}-${this._codeSnippetEditorMetaData.id} .${CODE_SNIPPET_EDITOR_LANG_INPUT}`
) as HTMLSelectElement
).value;
const validity = validateInputs(name, description, language);
if (validity) {
this.updateSnippet().then((value) => {
if (value) {
this.dispose();
super.onCloseRequest(msg);
}
});
}
}
}
});
} else {
this.dispose();
super.onCloseRequest(msg);
}
}
/**
* Visualize the editor more look like an editor
* @param event
*/
activateCodeMirror(
event: React.MouseEvent<HTMLDivElement, MouseEvent>
): void {
let target = event.target as HTMLElement;
while (target && target.parentElement) {
if (target.classList.contains(CODE_SNIPPET_EDITOR_MIRROR)) {
break;
}
target = target.parentElement;
}
const editor = document.querySelector(
`.${CODE_SNIPPET_EDITOR}-${this._codeSnippetEditorMetaData.id} #code-${this._codeSnippetEditorMetaData.id}`
);
if (target.classList.contains(CODE_SNIPPET_EDITOR_MIRROR)) {
if (!editor.classList.contains('active')) {
editor.classList.add('active');
}
}
}
deactivateCodeMirror(editor: Element): void {
if (editor.classList.contains('active')) {
editor.classList.remove('active');
}
}
handleInputFieldChange(event: React.ChangeEvent<HTMLInputElement>): void {
if (!this.title.className.includes(EDITOR_DIRTY_CLASS)) {
this.title.className += ` ${EDITOR_DIRTY_CLASS}`;
}
const target = event.target as HTMLElement;
if (!target.classList.contains('FieldChanged')) {
target.classList.add('FieldChanged');
}
this.saved = false;
}
saveChange(event: React.MouseEvent<HTMLElement, MouseEvent>): void {
const name = (
document.querySelector(
`.${CODE_SNIPPET_EDITOR}-${this._codeSnippetEditorMetaData.id} .${CODE_SNIPPET_EDITOR_NAME_INPUT}`
) as HTMLInputElement
).value;
const description = (
document.querySelector(
`.${CODE_SNIPPET_EDITOR}-${this._codeSnippetEditorMetaData.id} .${CODE_SNIPPET_EDITOR_DESC_INPUT}`
) as HTMLInputElement
).value;
const language = (
document.querySelector(
`.${CODE_SNIPPET_EDITOR}-${this._codeSnippetEditorMetaData.id} .${CODE_SNIPPET_EDITOR_LANG_INPUT}`
) as HTMLSelectElement
).value;
const validity = validateInputs(name, description, language);
if (validity) {
this.updateSnippet();
}
}
async updateSnippet(): Promise<boolean> {
const name = (
document.querySelector(
`.${CODE_SNIPPET_EDITOR}-${this._codeSnippetEditorMetaData.id} .${CODE_SNIPPET_EDITOR_NAME_INPUT}`
) as HTMLInputElement
).value;
const description = (
document.querySelector(
`.${CODE_SNIPPET_EDITOR}-${this._codeSnippetEditorMetaData.id} .${CODE_SNIPPET_EDITOR_DESC_INPUT}`
) as HTMLInputElement
).value;
const language = (
document.querySelector(
`.${CODE_SNIPPET_EDITOR}-${this._codeSnippetEditorMetaData.id} .${CODE_SNIPPET_EDITOR_LANG_INPUT}`
) as HTMLSelectElement
).value;
this._codeSnippetEditorMetaData.name = name;
this._codeSnippetEditorMetaData.description = description;
this._codeSnippetEditorMetaData.language = language;
const newName = this._codeSnippetEditorMetaData.name;
const oldName = this.oldCodeSnippetName;
const newSnippet: ICodeSnippet = {
name: this._codeSnippetEditorMetaData.name,
description: this._codeSnippetEditorMetaData.description,
language: this._codeSnippetEditorMetaData.language,
code: this._codeSnippetEditorMetaData.code,
id: this._codeSnippetEditorMetaData.id,
tags: this._codeSnippetEditorMetaData.tags,
};
this._codeSnippetEditorMetaData;
const isDuplicatName = this.contentsService.duplicateNameExists(newName);
// update new name as an old name
this.oldCodeSnippetName = this._codeSnippetEditorMetaData.name;
// add new snippet
if (this._codeSnippetEditorMetaData.fromScratch) {
if (isDuplicatName) {
const oldSnippet = this.contentsService.getSnippetByName(newName)[0];
await saveOverWriteFile(this.contentsService, oldSnippet, newSnippet);
} else {
this.contentsService.addSnippet(newSnippet).then((res: boolean) => {
if (!res) {
console.log('Error in adding snippet');
return false;
}
});
showMessage('confirm');
}
}
// modify existing snippet
else {
if (newName !== oldName) {
if (isDuplicatName) {
// overwrite
const oldSnippet = this.contentsService.getSnippetByName(newName)[0];
await saveOverWriteFile(
this.contentsService,
oldSnippet,
newSnippet
).then((res: boolean) => {
if (res) {
// get the id of snippet you are editting
const removedSnippet =
this.contentsService.getSnippetByName(oldName)[0];
// delete the one you are editing
this.contentsService.deleteSnippet(removedSnippet.id);
} else {
return false;
}
});
}
}
this.contentsService
.modifyExistingSnippet(oldName, newSnippet)
.then((res: boolean) => {
if (!res) {
console.log('Error in modifying snippet');
return false;
}
});
}
this.saved = true;
// remove the dirty state
this.title.className = this.title.className.replace(
` ${EDITOR_DIRTY_CLASS}`,
''
);
// change label
this.title.label =
'[' +
this._codeSnippetEditorMetaData.language +
'] ' +
this._codeSnippetEditorMetaData.name;
if (!this._codeSnippetEditorMetaData.fromScratch) {
// update tracker
this.tracker.save(this);
}
// update the display in code snippet explorer
this.codeSnippetWidget.updateCodeSnippetWidget();
// close editor if it's from scratch
if (this._codeSnippetEditorMetaData.fromScratch) {
this.dispose();
}
return true;
}
handleChangeOnTag(tags: ITag[]): void {
if (!this.title.className.includes(EDITOR_DIRTY_CLASS)) {
this.title.className += ` ${EDITOR_DIRTY_CLASS}`;
}
this._codeSnippetEditorMetaData.tags = tags
.filter((tag: ITag) => tag.clicked)
.map((tag: ITag) => tag.name);
this._codeSnippetEditorMetaData.allSnippetTags = tags.map(
(tag: ITag) => tag.name
);
this.saved = false;
}
handleOnBlur(event: React.FocusEvent<HTMLInputElement>): void {
const target = event.target as HTMLElement;
if (!target.classList.contains('touched')) {
target.classList.add('touched');
}
}
/**
* TODO: clean CSS style class - "Use constant"
*/
renderCodeInput(): React.ReactElement {
return (
<section
className={CODE_SNIPPET_EDITOR_INPUTAREA_MIRROR}
onMouseDown={this.activateCodeMirror}
>
<div
className={CODE_SNIPPET_EDITOR_MIRROR}
id={'code-' + this._codeSnippetEditorMetaData.id.toString()}
></div>
</section>
);
}
renderLanguages(): React.ReactElement {
SUPPORTED_LANGUAGES.sort();
return (
<div>
<input
className={CODE_SNIPPET_EDITOR_LANG_INPUT}
list="languages"
name="language"
defaultValue={this._codeSnippetEditorMetaData.language}
onChange={this.handleInputFieldChange}
required
/>
<datalist id="languages">
{SUPPORTED_LANGUAGES.map((lang) => this.renderLanguageOptions(lang))}
</datalist>
</div>
);
}
renderLanguageOptions(option: string): JSX.Element {
return <option key={option} value={option} />;
}
render(): React.ReactElement {
const fromScratch = this._codeSnippetEditorMetaData.fromScratch;
return (
<div
className={CODE_SNIPPET_EDITOR_INPUTAREA}
onMouseDown={(
event: React.MouseEvent<HTMLDivElement, MouseEvent>
): void => {
this.deactivateEditor(event);
}}
>
<span className={CODE_SNIPPET_EDITOR_TITLE}>
{fromScratch ? 'New Code Snippet' : 'Edit Code Snippet'}
</span>
<section className={CODE_SNIPPET_EDITOR_METADATA}>
<label className={CODE_SNIPPET_EDITOR_LABEL}>Name (required)</label>
<input
className={CODE_SNIPPET_EDITOR_NAME_INPUT}
defaultValue={this._codeSnippetEditorMetaData.name}
placeholder={'Ex. starter code'}
type="text"
required
onMouseDown={(
event: React.MouseEvent<HTMLInputElement, MouseEvent>
): void => this.activeFieldState(event)}
onChange={(event: React.ChangeEvent<HTMLInputElement>): void => {
this.handleInputFieldChange(event);
}}
onBlur={this.handleOnBlur}
></input>
<label className={CODE_SNIPPET_EDITOR_LABEL}>
Description (optional)
</label>
<input
className={CODE_SNIPPET_EDITOR_DESC_INPUT}
defaultValue={this._codeSnippetEditorMetaData.description}
placeholder={'Description'}
type="text"
onMouseDown={(
event: React.MouseEvent<HTMLInputElement, MouseEvent>
): void => this.activeFieldState(event)}
onChange={(event: React.ChangeEvent<HTMLInputElement>): void => {
this.handleInputFieldChange(event);
}}
onBlur={this.handleOnBlur}
></input>
<label className={CODE_SNIPPET_EDITOR_LABEL}>
Language (required)
</label>
{this.renderLanguages()}
<label className={CODE_SNIPPET_EDITOR_LABEL}>Tags</label>
<CodeSnippetEditorTags
allSnippetTags={
this._codeSnippetEditorMetaData.allSnippetTags
? this._codeSnippetEditorMetaData.allSnippetTags.map(
(tag: string): ITag => ({
name: tag,
clicked:
this._codeSnippetEditorMetaData.tags &&
this._codeSnippetEditorMetaData.tags.includes(tag)
? true
: false,
})
)
: []
}
langTags={this._codeSnippetEditorMetaData.allLangTags}
handleChange={this.handleChangeOnTag}
/>
</section>
<span className={CODE_SNIPPET_EDITOR_LABEL}>Code</span>
{this.renderCodeInput()}
<Button className="saveBtn" onClick={this.saveChange}>
{fromScratch ? 'Create & Close' : 'Save'}
</Button>
</div>
);
}
}