-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCodeSnippetDisplay.tsx
1698 lines (1599 loc) · 46.5 KB
/
CodeSnippetDisplay.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
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// 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 {
Clipboard,
Dialog,
InputDialog,
showDialog,
} from '@jupyterlab/apputils';
import { PathExt } from '@jupyterlab/coreutils';
import { DocumentWidget } from '@jupyterlab/docregistry';
import { FileEditor } from '@jupyterlab/fileeditor';
import { Notebook, NotebookPanel } from '@jupyterlab/notebook';
import {
LabIcon,
addIcon,
pythonIcon,
fileIcon,
rKernelIcon,
markdownIcon,
} from '@jupyterlab/ui-components';
import { CodeEditor, IEditorServices } from '@jupyterlab/codeeditor';
import * as nbformat from '@jupyterlab/nbformat';
import { JupyterFrontEnd } from '@jupyterlab/application';
import { CodeCellModel, MarkdownCell, CodeCell } from '@jupyterlab/cells';
import { Widget } from '@lumino/widgets';
import { find, StringExt } from '@lumino/algorithm';
import { Drag } from '@lumino/dragdrop';
import { MimeData, ReadonlyPartialJSONObject } from '@lumino/coreutils';
import React from 'react';
import { CodeSnippetService, ICodeSnippet } from './CodeSnippetService';
import { FilterTools } from './CodeSnippetFilterTools';
import { showPreview } from './CodeSnippetPreview';
import { showMoreOptions } from './CodeSnippetMenu';
import { CodeSnippetContentsService } from './CodeSnippetContentsService';
import moreSVGstr from '../style/icon/jupyter_moreicon.svg';
import {
babelIcon,
javaIcon,
juliaIcon,
matlabIcon,
schemeIcon,
processingIcon,
scalaIcon,
groovyIcon,
forthIcon,
haskellIcon,
rubyIcon,
typescriptIcon,
javascriptIcon,
coffeescriptIcon,
livescriptIcon,
csharpIcon,
fsharpIcon,
goIcon,
erlangIcon,
ocamlIcon,
fortranIcon,
perlIcon,
phpIcon,
clojureIcon,
luaIcon,
purescriptIcon,
cppIcon,
prologIcon,
lispIcon,
cIcon,
kotlinIcon,
nodejsIcon,
coconutIcon,
sbtIcon,
rustIcon,
qsharpIcon,
sasIcon,
powershellIcon,
} from './CodeSnippetLanguages';
import { showMessage } from './CodeSnippetMessage';
/**
* The CSS class added to code snippet widget.
*/
const CODE_SNIPPETS_HEADER_CLASS = 'jp-codeSnippetsHeader';
const CODE_SNIPPET_TITLE = 'jp-codeSnippet-title';
const CODE_SNIPPETS_CONTAINER = 'jp-codeSnippetsContainer';
const DISPLAY_NAME_CLASS = 'jp-codeSnippetsContainer-name';
const BUTTON_CLASS = 'jp-codeSnippetsContainer-button';
const TITLE_CLASS = 'jp-codeSnippetsContainer-title';
const ACTION_BUTTONS_WRAPPER_CLASS = 'jp-codeSnippetsContainer-action-buttons';
const ACTION_BUTTON_CLASS = 'jp-codeSnippetsContainer-actionButton';
const SEARCH_BOLD = 'jp-codeSnippet-search-bolding';
const SNIPPET_DRAG_IMAGE = 'jp-codeSnippet-drag-image';
const CODE_SNIPPET_DRAG_HOVER = 'jp-codeSnippet-drag-hover';
const CODE_SNIPPET_DRAG_HOVER_SELECTED = 'jp-codeSnippet-drag-hover-selected';
const CODE_SNIPPET_METADATA = 'jp-codeSnippet-metadata';
const CODE_SNIPPET_DESC = 'jp-codeSnippet-description';
const CODE_SNIPPET_EDITOR = 'jp-codeSnippet-editor';
const CODE_SNIPPET_MORE_OPTIONS = 'jp-codeSnippet-options';
const CODE_SNIPPET_MORE_OTPIONS_CONTENT = 'jp-codeSnippet-more-options-content';
const CODE_SNIPPET_MORE_OTPIONS_COPY = 'jp-codeSnippet-more-options-copy';
const CODE_SNIPPET_MORE_OTPIONS_INSERT = 'jp-codeSnippet-more-options-insert';
const CODE_SNIPPET_MORE_OTPIONS_EDIT = 'jp-codeSnippet-more-options-edit';
const CODE_SNIPPET_MORE_OTPIONS_DELETE = 'jp-codeSnippet-more-options-delete';
const CODE_SNIPPET_MORE_OTPIONS_EXPORT = 'jp-codeSnippet-more-options-export';
const CODE_SNIPPET_CREATE_NEW_BTN = 'jp-createSnippetBtn';
const CODE_SNIPPET_NAME = 'jp-codeSnippet-name';
const OPTIONS_BODY = 'jp-codeSnippet-options-body';
/**
* The threshold in pixels to start a drag event.
*/
const DRAG_THRESHOLD = 3;
/**
* A class used to indicate a snippet item.
*/
const CODE_SNIPPET_ITEM = 'jp-codeSnippet-item';
/**
* The mimetype used for Jupyter cell data.
*/
const JUPYTER_CELL_MIME = 'application/vnd.jupyter.cells';
/**
* Icon for more options
*/
const moreOptionsIcon = new LabIcon({
name: 'custom-ui-components:moreOptions',
svgstr: moreSVGstr,
});
/**
* CodeSnippetDisplay props.
*/
interface ICodeSnippetDisplayProps {
codeSnippets: ICodeSnippet[];
codeSnippetManager: CodeSnippetService;
app: JupyterFrontEnd;
getCurrentWidget: () => Widget;
openCodeSnippetEditor: (args: ReadonlyPartialJSONObject) => void;
editorServices: IEditorServices;
updateCodeSnippetWidget: () => void;
}
/**
* CodeSnippetDisplay state.
*/
interface ICodeSnippetDisplayState {
searchValue: string;
filterTags: string[];
selectedLangTags: string[];
searchOptions: string[];
}
/**
* A React Component for code-snippets display list.
*/
export class CodeSnippetDisplay extends React.Component<
ICodeSnippetDisplayProps,
ICodeSnippetDisplayState
> {
_drag: Drag;
_dragData: { pressX: number; pressY: number; dragImage: HTMLElement };
constructor(props: ICodeSnippetDisplayProps) {
super(props);
this.state = {
searchValue: '',
filterTags: [],
selectedLangTags: [],
searchOptions: [],
};
this._drag = null;
this._dragData = null;
this.handleDragMove = this.handleDragMove.bind(this);
this._evtMouseUp = this._evtMouseUp.bind(this);
this.handleRenameSnippet = this.handleRenameSnippet.bind(this);
this.setSearchOptions = this.setSearchOptions.bind(this);
}
filterSnippets = (
codeSnippets: ICodeSnippet[],
searchValue: string,
filterTags: string[],
selectedLangTags: string[]
): {
filteredCodeSnippets: ICodeSnippet[];
matchedIndices: { [id: number]: number[] };
} => {
// filter with search
let filteredSnippets = codeSnippets.slice();
const matchedIndices: { [id: number]: number[] } = {};
if (searchValue !== '') {
const matchResults: StringExt.IMatchResult[] = [];
const filteredSnippetsScore: {
score: number;
snippet: ICodeSnippet;
}[] = [];
// language, title, code
filteredSnippets.forEach((snippet) => {
const matchResult = StringExt.matchSumOfSquares(
(snippet.language + snippet.name + snippet.code).toLowerCase(),
searchValue.replace(' ', '').toLowerCase()
);
if (matchResult) {
matchResults.push(matchResult);
filteredSnippetsScore.push({
score: matchResult.score,
snippet: snippet,
});
}
});
// sort snippets by its score
filteredSnippetsScore.sort((a, b) => a.score - b.score);
const newFilteredSnippets: ICodeSnippet[] = [];
filteredSnippetsScore.forEach((snippetScore) =>
newFilteredSnippets.push(snippetScore.snippet)
);
filteredSnippets = newFilteredSnippets;
// sort the matchResults by its score
matchResults.sort((a, b) => a.score - b.score);
matchResults.forEach((res, id) => {
matchedIndices[filteredSnippets[id].id] = res.indices;
});
}
// filter with tags
if (filterTags.length !== 0) {
filteredSnippets = filteredSnippets.filter((codeSnippet) => {
return filterTags.some((filterTag) => {
if (codeSnippet.tags) {
if (selectedLangTags.length !== 0) {
// lang tags selected
if (
codeSnippet.tags.includes(filterTag) &&
selectedLangTags.includes(codeSnippet.language)
) {
return true;
}
//if only language tags are selected
else if (
filterTags.length === selectedLangTags.length &&
filterTags.every((value) => selectedLangTags.includes(value))
) {
if (selectedLangTags.includes(codeSnippet.language)) {
return true;
}
}
} else {
// no lang tags selected
if (codeSnippet.tags.includes(filterTag)) {
return true;
}
}
}
return false;
});
});
}
// find id's that are not in filteredSnippets
const willBeRemovedIds = [];
for (const key in matchedIndices) {
let hasKey = false;
for (const codeSnippet of filteredSnippets) {
if (codeSnippet.id === parseInt(key)) {
hasKey = true;
}
}
if (hasKey === false) {
willBeRemovedIds.push(parseInt(key));
}
}
// if the snippet does not have the tag, remove its mathed index
willBeRemovedIds.forEach((id: number) => delete matchedIndices[id]);
return {
filteredCodeSnippets: filteredSnippets,
matchedIndices: matchedIndices,
};
};
// Handle code snippet insert into a notebook or document
private insertCodeSnippet = async (snippet: ICodeSnippet): Promise<void> => {
const widget: Widget = this.props.getCurrentWidget();
if (
widget instanceof DocumentWidget &&
(widget as DocumentWidget).content instanceof FileEditor
) {
const documentWidget = widget as DocumentWidget;
// code editor
const fileEditor = (documentWidget.content as FileEditor).editor;
const markdownRegex = /^\.(md|mkdn?|mdown|markdown)$/;
if (
PathExt.extname(documentWidget.context.path).match(markdownRegex) !==
null
) {
// Wrap snippet into a code block when inserting it into a markdown file
fileEditor.replaceSelection(
'```' + snippet.language + '\n' + snippet.code + '\n```'
);
} else if (documentWidget.constructor.name === 'PythonFileEditor') {
this.verifyLanguageAndInsert(snippet, 'python', fileEditor);
} else {
fileEditor.replaceSelection(snippet.code);
}
} else if (widget instanceof NotebookPanel) {
const notebookWidget = widget as NotebookPanel;
const notebookCell = (notebookWidget.content as Notebook).activeCell;
// editor
const notebookCellEditor = notebookCell.editor;
if (notebookCell instanceof CodeCell) {
const kernelInfo = await notebookWidget.sessionContext.session?.kernel
?.info;
const kernelLanguage: string = kernelInfo?.language_info.name || '';
this.verifyLanguageAndInsert(
snippet,
kernelLanguage,
notebookCellEditor
);
} else if (notebookCell instanceof MarkdownCell) {
// Wrap snippet into a code block when inserting it into a markdown cell
notebookCellEditor.replaceSelection(
'```' + snippet.language + '\n' + snippet.code + '\n```'
);
} else {
notebookCellEditor.replaceSelection(snippet.code);
}
} else {
this.showErrDialog('Code snippet insert failed: Unsupported widget');
}
};
// Handle language compatibility between code snippet and editor
private verifyLanguageAndInsert = async (
snippet: ICodeSnippet,
editorLanguage: string,
editor: CodeEditor.IEditor
): Promise<void> => {
if (
editorLanguage &&
snippet.language.toLowerCase() !== editorLanguage.toLowerCase()
) {
const result = await this.showWarnDialog(editorLanguage, snippet.name);
if (result.button.accept) {
editor.replaceSelection(snippet.code);
}
} else {
// Language match or editorLanguage is unavailable
editor.replaceSelection(snippet.code);
}
};
// Display warning dialog when inserting a code snippet incompatible with editor's language
private showWarnDialog = async (
editorLanguage: string,
snippetName: string
): Promise<Dialog.IResult<string>> => {
return showDialog({
title: 'Warning',
body:
'Code snippet "' +
snippetName +
'" is incompatible with ' +
editorLanguage +
'. Continue?',
buttons: [Dialog.cancelButton(), Dialog.okButton()],
});
};
// Display error dialog when inserting a code snippet into unsupported widget (i.e. not an editor)
private showErrDialog = (errMsg: string): Promise<Dialog.IResult<string>> => {
return showDialog({
title: 'Error',
body: errMsg,
buttons: [Dialog.okButton()],
});
};
// Create 6 dots drag/drop image on hover
private dragHoverStyle = (id: number): void => {
document
.querySelector(`#${CODE_SNIPPET_DRAG_HOVER}${id}`)
.classList // .getElementsByClassName(CODE_SNIPPET_DRAG_HOVER)
// [id].classList.
.add(CODE_SNIPPET_DRAG_HOVER_SELECTED);
};
// Remove 6 dots off hover
private dragHoverStyleRemove = (id: number): void => {
if (document.getElementsByClassName(CODE_SNIPPET_DRAG_HOVER_SELECTED)) {
document
.querySelector(`#${CODE_SNIPPET_DRAG_HOVER}${id}`)
.classList.remove(CODE_SNIPPET_DRAG_HOVER_SELECTED);
}
};
// Bold text in snippet name based on search
private boldNameOnSearch = (
id: number,
language: string,
name: string,
matchedIndices: number[]
): JSX.Element => {
const displayName = language + name;
// check if the searchValue is not ''
if (this.state.searchValue !== '') {
const elements = [];
if (matchedIndices) {
// get first match index in the name
let i = 0;
while (i < matchedIndices.length) {
if (matchedIndices[i] >= language.length) {
elements.push(
displayName.substring(language.length, matchedIndices[i])
);
break;
}
i++;
}
// when there is no match in name but language
if (i >= matchedIndices.length) {
return <span>{name}</span>;
} else {
// current and next indices are bold indices
let currIndex = matchedIndices[i];
let nextIndex;
// check if the match is the end of the name
if (i < matchedIndices.length - 1) {
i++;
nextIndex = matchedIndices[i];
} else {
nextIndex = null;
}
while (nextIndex !== null) {
// make the current index bold
elements.push(
<mark key={id + '_' + currIndex} className={SEARCH_BOLD}>
{displayName.substring(currIndex, currIndex + 1)}
</mark>
);
// add the regular string until we reach the next bold index
elements.push(displayName.substring(currIndex + 1, nextIndex));
currIndex = nextIndex;
if (i < matchedIndices.length - 1) {
i++;
nextIndex = matchedIndices[i];
} else {
nextIndex = null;
}
}
if (nextIndex === null) {
elements.push(
<mark key={id + '_' + currIndex} className={SEARCH_BOLD}>
{displayName.substring(currIndex, currIndex + 1)}
</mark>
);
elements.push(
displayName.substring(currIndex + 1, displayName.length)
);
}
return <span>{elements}</span>;
}
}
}
return (
<span
title={'Double click to rename'}
className={CODE_SNIPPET_NAME}
onDoubleClick={this.handleRenameSnippet}
>
{name}
</span>
);
};
// rename snippet on double click
private async handleRenameSnippet(
event: React.MouseEvent<HTMLSpanElement, MouseEvent>
): Promise<void> {
const target = event.target as HTMLElement;
const oldName = target.innerHTML;
const new_element = document.createElement('input');
new_element.setAttribute('type', 'text');
new_element.id = 'jp-codeSnippet-rename';
new_element.innerHTML = target.innerHTML;
target.replaceWith(new_element);
new_element.value = target.innerHTML;
new_element.focus();
new_element.setSelectionRange(0, new_element.value.length);
new_element.onblur = async (): Promise<void> => {
if (target.innerHTML !== new_element.value) {
const newName = new_element.value;
const isDuplicateName =
this.props.codeSnippetManager.duplicateNameExists(newName);
if (isDuplicateName) {
await showDialog({
title: 'Duplicate Name of Code Snippet',
body: <p> {`"${newName}" already exists.`} </p>,
buttons: [Dialog.okButton({ label: 'Dismiss' })],
});
} else {
this.props.codeSnippetManager
.renameSnippet(oldName, newName)
.then(async (res: boolean) => {
if (res) {
target.innerHTML = new_element.value;
} else {
console.log('Error in renaming snippet!');
}
});
}
}
new_element.replaceWith(target);
};
new_element.onkeydown = (event: KeyboardEvent): void => {
switch (event.code) {
case 'Enter': // Enter
event.stopPropagation();
event.preventDefault();
new_element.blur();
break;
case 'NumpadEnter': // Enter
event.stopPropagation();
event.preventDefault();
new_element.blur();
break;
case 'Escape': // Escape
event.stopPropagation();
event.preventDefault();
new_element.blur();
break;
case 'ArrowUp': // Up arrow
event.stopPropagation();
event.preventDefault();
new_element.selectionStart = new_element.selectionEnd = 0;
break;
case 'ArrowDown': // Down arrow
event.stopPropagation();
event.preventDefault();
new_element.selectionStart = new_element.selectionEnd =
new_element.value.length;
break;
default:
break;
}
};
}
private handleDragSnippet(
event: React.MouseEvent<HTMLDivElement, MouseEvent>
): void {
const { button } = event;
// if button is not the left click
if (!(button === 0)) {
return;
}
const target = event.target as HTMLElement;
this._dragData = {
pressX: event.clientX,
pressY: event.clientY,
dragImage: target.nextSibling.firstChild.cloneNode(true) as HTMLElement,
};
const dragImageTextColor = getComputedStyle(document.body).getPropertyValue(
'--jp-content-font-color3'
);
(this._dragData.dragImage.children[0] as HTMLElement).style.color =
dragImageTextColor;
// add CSS style
this._dragData.dragImage.classList.add(SNIPPET_DRAG_IMAGE);
target.addEventListener('mouseup', this._evtMouseUp, true);
target.addEventListener('mousemove', this.handleDragMove, true);
// since a browser has its own drag'n'drop support for images and some other elements.
target.ondragstart = (): boolean => false;
event.preventDefault();
}
private _evtMouseUp(event: MouseEvent): void {
event.preventDefault();
event.stopPropagation();
const target = event.target as HTMLElement;
target.removeEventListener('mousemove', this.handleDragMove, true);
target.removeEventListener('mouseup', this._evtMouseUp, true);
}
private handleDragMove(event: MouseEvent): void {
event.preventDefault();
event.stopPropagation();
const data = this._dragData;
if (
data &&
this.shouldStartDrag(
data.pressX,
data.pressY,
event.clientX,
event.clientY
)
) {
const idx = (event.target as HTMLElement).id.slice(
CODE_SNIPPET_DRAG_HOVER.length
);
const codeSnippet = this.props.codeSnippets.filter(
(codeSnippet) => codeSnippet.id === parseInt(idx)
)[0];
void this.startDrag(
data.dragImage,
codeSnippet,
event.clientX,
event.clientY
);
}
}
/**
* Detect if a drag event should be started. This is down if the
* mouse is moved beyond a certain distance (DRAG_THRESHOLD).
*
* @param prevX - X Coordinate of the mouse pointer during the mousedown event
* @param prevY - Y Coordinate of the mouse pointer during the mousedown event
* @param nextX - Current X Coordinate of the mouse pointer
* @param nextY - Current Y Coordinate of the mouse pointer
*/
private shouldStartDrag(
prevX: number,
prevY: number,
nextX: number,
nextY: number
): boolean {
const dx = Math.abs(nextX - prevX);
const dy = Math.abs(nextY - prevY);
return dx >= 0 || dy >= DRAG_THRESHOLD;
}
private async startDrag(
dragImage: HTMLElement,
codeSnippet: ICodeSnippet,
clientX: number,
clientY: number
): Promise<void> {
const target = event.target as HTMLElement;
const model = new CodeCellModel({});
model.value.text = codeSnippet.code;
model.metadata;
const selected: nbformat.ICell[] = [model.toJSON()];
this._drag = new Drag({
mimeData: new MimeData(),
dragImage: dragImage,
supportedActions: 'copy-move',
proposedAction: 'copy',
source: this,
});
this._drag.mimeData.setData(JUPYTER_CELL_MIME, selected);
const textContent = codeSnippet.code;
this._drag.mimeData.setData('text/plain', textContent);
// Remove mousemove and mouseup listeners and start the drag.
target.removeEventListener('mousemove', this.handleDragMove, true);
target.removeEventListener('mouseup', this._evtMouseUp, true);
return this._drag.start(clientX, clientY).then(() => {
this.dragHoverStyleRemove(codeSnippet.id);
this._drag = null;
this._dragData = null;
});
}
private _evtMouseLeave(): void {
const preview = document.querySelector('.jp-codeSnippet-preview');
if (preview) {
if (!preview.classList.contains('inactive')) {
preview.classList.add('inactive');
}
}
}
//Set the position of the preview to be next to the snippet title.
private _setPreviewPosition(id: number): void {
const realTarget = document.querySelector(`#${TITLE_CLASS}${id}`);
const newTarget = document.querySelector(`#${CODE_SNIPPET_ITEM}${id}`);
// (CODE_SNIPPET_ITEM)[id];
// distDown is the number of pixels to shift the preview down
const distDown: number = realTarget.getBoundingClientRect().top - 43; //this is bumping it up
const elementSnippet = newTarget as HTMLElement;
const heightSnippet = elementSnippet.clientHeight;
const heightPreview = heightSnippet.toString(10) + 'px';
document.documentElement.style.setProperty(
'--preview-max-height',
heightPreview
);
const final = distDown.toString(10) + 'px';
document.documentElement.style.setProperty('--preview-distance', final);
}
//Set the position of the option to be under to the three dots on snippet.
private _setOptionsPosition(
event: React.MouseEvent<HTMLElement, MouseEvent>
): void {
const target = event.target as HTMLElement;
let top: number;
if (target.tagName === 'path') {
top = target.getBoundingClientRect().top + 10;
} else {
top = target.getBoundingClientRect().top + 18;
}
if (top > 0.7 * window.screen.height) {
top -= 120;
}
const leftAsString =
(target.parentElement.style.left + event.pageX).toString() + 'px';
const topAsString = top.toString(10) + 'px';
document.documentElement.style.setProperty(
'--more-options-top',
topAsString
);
document.documentElement.style.setProperty(
'--more-options-left',
leftAsString
);
}
private renderLanguageIcon(language: string): JSX.Element {
switch (language) {
case 'Python': {
return (
<pythonIcon.react
tag="span"
height="16px"
width="16px"
right="7px"
top="5px"
margin-right="3px"
/>
);
}
case 'Gfm': {
return (
<markdownIcon.react
tag="span"
height="16px"
width="16px"
right="7px"
top="5px"
margin-right="3px"
/>
);
}
case 'Java': {
return (
<javaIcon.react
tag="span"
height="16px"
width="16px"
right="7px"
top="5px"
margin-right="3px"
/>
);
}
case 'R': {
return (
<rKernelIcon.react
tag="span"
height="16px"
width="16px"
right="7px"
top="5px"
margin-right="3px"
/>
);
}
case 'Julia': {
return (
<juliaIcon.react
tag="span"
height="16px"
width="16px"
right="7px"
top="5px"
margin-right="3px"
/>
);
}
case 'Matlab': {
return (
<matlabIcon.react
tag="span"
height="16px"
width="16px"
right="7px"
top="5px"
margin-right="3px"
/>
);
}
case 'Scheme': {
return (
<schemeIcon.react
tag="span"
height="16px"
width="16px"
right="7px"
top="5px"
margin-right="3px"
/>
);
}
case 'Processing': {
return (
<processingIcon.react
tag="span"
height="16px"
width="16px"
right="7px"
top="5px"
margin-right="3px"
/>
);
}
case 'Scala': {
return (
<scalaIcon.react
tag="span"
height="16px"
width="16px"
right="7px"
top="5px"
margin-right="3px"
/>
);
}
case 'Groovy': {
return (
<groovyIcon.react
tag="span"
height="16px"
width="16px"
right="7px"
top="5px"
margin-right="3px"
/>
);
}
case 'Fortran': {
return (
<fortranIcon.react
tag="span"
height="16px"
width="16px"
right="7px"
top="5px"
margin-right="3px"
/>
);
}
case 'Haskell': {
return (
<haskellIcon.react
tag="span"
height="16px"
width="16px"
right="7px"
top="5px"
margin-right="3px"
/>
);
}
case 'Ruby': {
return (
<rubyIcon.react
tag="span"
height="16px"
width="16px"
right="7px"
top="5px"
margin-right="3px"
/>
);
}
case 'TypeScript': {
return (
<typescriptIcon.react
tag="span"
height="16px"
width="16px"
right="7px"
top="5px"
margin-right="3px"
/>
);
}
case 'JavaScript': {
return (
<javascriptIcon.react
tag="span"
height="16px"
width="16px"
right="7px"
top="5px"
margin-right="3px"
/>
);
}
case 'CoffeeScript': {
return (
<coffeescriptIcon.react
tag="span"
height="16px"
width="16px"
right="7px"
top="5px"
margin-right="3px"
/>
);
}
case 'LiveScript': {
return (
<livescriptIcon.react
tag="span"
height="16px"
width="16px"
right="7px"
top="5px"
margin-right="3px"
/>
);
}
case 'C#': {
return (
<csharpIcon.react
tag="span"
height="16px"
width="16px"
right="7px"
top="5px"
margin-right="3px"
/>
);
}
case 'F#': {
return (
<fsharpIcon.react
tag="span"
height="16px"
width="16px"
right="7px"
top="5px"
margin-right="3px"