-
Notifications
You must be signed in to change notification settings - Fork 5.3k
/
Copy pathautocomplete.js
1138 lines (1003 loc) · 42.3 KB
/
autocomplete.js
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
"use strict";
/**
* @typedef {import("./editor").Editor} Editor
* @typedef {import("../ace-internal").Ace.CompletionProviderOptions} CompletionProviderOptions
* @typedef {import("../ace-internal").Ace.CompletionOptions} CompletionOptions
* @typedef {import("../ace-internal").Ace.Position} Position
*/
var HashHandler = require("./keyboard/hash_handler").HashHandler;
var AcePopup = require("./autocomplete/popup").AcePopup;
var AceInline = require("./autocomplete/inline").AceInline;
var getAriaId = require("./autocomplete/popup").getAriaId;
var util = require("./autocomplete/util");
var lang = require("./lib/lang");
var dom = require("./lib/dom");
var snippetManager = require("./snippets").snippetManager;
var config = require("./config");
var event = require("./lib/event");
var preventParentScroll = require("./lib/scroll").preventParentScroll;
/**
* @typedef BaseCompletion
* @property {number} [score] - a numerical value that determines the order in which completions would be displayed.
* A lower score means that the completion would be displayed further from the start
* @property {string} [meta] - a short description of the completion
* @property {string} [caption] - the text that would be displayed in the completion list. If omitted, value or snippet
* would be shown instead.
* @property {string} [docHTML] - an HTML string that would be displayed as an additional popup
* @property {string} [docText] - a plain text that would be displayed as an additional popup. If `docHTML` exists,
* it would be used instead of `docText`.
* @property {string} [completerId] - the identifier of the completer
* @property {boolean} [skipFilter] - a boolean value to decide if the popup item is going to skip the filtering process done using prefix text.
* @property {import("../ace-internal").Ace.IRange} [range] - An object specifying the range of text to be replaced with the new completion value (experimental)
* @property {any} [command] - A command to be executed after the completion is inserted (experimental)
* @property {string} [snippet] - a text snippet that would be inserted when the completion is selected
* @property {string} [value] - The text that would be inserted when selecting this completion.
* @property {import("../ace-internal").Ace.Completer} [completer]
* @property {boolean} [hideInlinePreview]
* @export
*/
/**
* @typedef {BaseCompletion & {snippet: string}} SnippetCompletion
* @property {string} snippet
* @property {string} [value]
* @export
*/
/**
* @typedef {BaseCompletion & {value: string}} ValueCompletion
* @property {string} value
* @property {string} [snippet]
* @export
*/
/**
* Represents a suggested text snippet intended to complete a user's input
* @typedef Completion
* @type {SnippetCompletion|ValueCompletion}
* @export
*/
var destroyCompleter = function(e, editor) {
editor.completer && editor.completer.destroy();
};
/**
* This object controls the autocompletion components and their lifecycle.
* There is an autocompletion popup, an optional inline ghost text renderer and a docuent tooltip popup inside.
*/
class Autocomplete {
constructor() {
this.autoInsert = false;
this.autoSelect = true;
this.autoShown = false;
this.exactMatch = false;
this.inlineEnabled = false;
this.keyboardHandler = new HashHandler();
this.keyboardHandler.bindKeys(this.commands);
this.parentNode = null;
this.setSelectOnHover = false;
/**@private*/
this.hasSeen = new Set();
/**
* @property {Boolean} showLoadingState - A boolean indicating whether the loading states of the Autocompletion should be shown to the end-user. If enabled
* it shows a loading indicator on the popup while autocomplete is loading.
*
* Experimental: This visualisation is not yet considered stable and might change in the future.
*/
this.showLoadingState = false;
/**
* @property {number} stickySelectionDelay - a numerical value that determines after how many ms the popup selection will become 'sticky'.
* Normally, when new elements are added to an open popup, the selection is reset to the first row of the popup. If sticky, the focus will remain
* on the currently selected item when new items are added to the popup. Set to a negative value to disable this feature and never set selection to sticky.
*/
this.stickySelectionDelay = 500;
this.blurListener = this.blurListener.bind(this);
this.changeListener = this.changeListener.bind(this);
this.mousedownListener = this.mousedownListener.bind(this);
this.mousewheelListener = this.mousewheelListener.bind(this);
this.onLayoutChange = this.onLayoutChange.bind(this);
this.changeTimer = lang.delayedCall(function() {
this.updateCompletions(true);
}.bind(this));
this.tooltipTimer = lang.delayedCall(this.updateDocTooltip.bind(this), 50);
this.popupTimer = lang.delayedCall(this.$updatePopupPosition.bind(this), 50);
this.stickySelectionTimer = lang.delayedCall(function() {
this.stickySelection = true;
}.bind(this), this.stickySelectionDelay);
this.$firstOpenTimer = lang.delayedCall(/**@this{Autocomplete}*/function() {
var initialPosition = this.completionProvider && this.completionProvider.initialPosition;
if (this.autoShown || (this.popup && this.popup.isOpen) || !initialPosition || this.editor.completers.length === 0) return;
this.completions = new FilteredList(Autocomplete.completionsForLoading);
this.openPopup(this.editor, initialPosition.prefix, false);
this.popup.renderer.setStyle("ace_loading", true);
}.bind(this), this.stickySelectionDelay);
}
static get completionsForLoading() { return [{
caption: config.nls("autocomplete.loading", "Loading..."),
value: ""
}];
}
$init() {
/**@type {AcePopup}**/
this.popup = new AcePopup(this.parentNode || document.body || document.documentElement);
this.popup.on("click", function(e) {
this.insertMatch();
e.stop();
}.bind(this));
this.popup.focus = this.editor.focus.bind(this.editor);
this.popup.on("show", this.$onPopupShow.bind(this));
this.popup.on("hide", this.$onHidePopup.bind(this));
this.popup.on("select", this.$onPopupChange.bind(this));
event.addListener(this.popup.container, "mouseout", this.mouseOutListener.bind(this));
this.popup.on("changeHoverMarker", this.tooltipTimer.bind(null, null));
this.popup.renderer.on("afterRender", this.$onPopupRender.bind(this));
return this.popup;
}
$initInline() {
if (!this.inlineEnabled || this.inlineRenderer)
return;
this.inlineRenderer = new AceInline();
return this.inlineRenderer;
}
/**
* @return {AcePopup}
*/
getPopup() {
return this.popup || this.$init();
}
$onHidePopup() {
if (this.inlineRenderer) {
this.inlineRenderer.hide();
}
this.hideDocTooltip();
this.stickySelectionTimer.cancel();
this.popupTimer.cancel();
this.stickySelection = false;
}
$seen(completion) {
if (!this.hasSeen.has(completion) && completion && completion.completer && completion.completer.onSeen && typeof completion.completer.onSeen === "function") {
completion.completer.onSeen(this.editor, completion);
this.hasSeen.add(completion);
}
}
$onPopupChange(hide) {
if (this.inlineRenderer && this.inlineEnabled) {
var completion = hide ? null : this.popup.getData(this.popup.getRow());
this.$updateGhostText(completion);
// If the mouse is over the tooltip, and we're changing selection on hover don't
// move the tooltip while hovering over the popup.
if (this.popup.isMouseOver && this.setSelectOnHover) {
// @ts-expect-error TODO: potential wrong arguments
this.tooltipTimer.call(null, null);
return;
}
// Update the popup position after a short wait to account for potential scrolling
this.popupTimer.schedule();
this.tooltipTimer.schedule();
} else {
// @ts-expect-error TODO: potential wrong arguments
this.popupTimer.call(null, null);
// @ts-expect-error TODO: potential wrong arguments
this.tooltipTimer.call(null, null);
}
}
$updateGhostText(completion) {
// Ghost text can include characters normally not part of the prefix (e.g. whitespace).
// When typing ahead with ghost text however, we want to simply prefix with respect to the
// base of the completion.
var row = this.base.row;
var column = this.base.column;
var cursorColumn = this.editor.getCursorPosition().column;
var prefix = this.editor.session.getLine(row).slice(column, cursorColumn);
if (!this.inlineRenderer.show(this.editor, completion, prefix)) {
this.inlineRenderer.hide();
} else {
this.$seen(completion);
}
}
$onPopupRender() {
const inlineEnabled = this.inlineRenderer && this.inlineEnabled;
if (this.completions && this.completions.filtered && this.completions.filtered.length > 0) {
for (var i = this.popup.getFirstVisibleRow(); i <= this.popup.getLastVisibleRow(); i++) {
var completion = this.popup.getData(i);
if (completion && (!inlineEnabled || completion.hideInlinePreview)) {
this.$seen(completion);
}
}
}
}
$onPopupShow(hide) {
this.$onPopupChange(hide);
this.stickySelection = false;
if (this.stickySelectionDelay >= 0)
this.stickySelectionTimer.schedule(this.stickySelectionDelay);
}
observeLayoutChanges() {
if (this.$elements || !this.editor) return;
window.addEventListener("resize", this.onLayoutChange, {passive: true});
window.addEventListener("wheel", this.mousewheelListener);
var el = this.editor.container.parentNode;
var elements = [];
while (el) {
elements.push(el);
el.addEventListener("scroll", this.onLayoutChange, {passive: true});
el = el.parentNode;
}
this.$elements = elements;
}
unObserveLayoutChanges() {
// @ts-expect-error This is expected for some browsers
window.removeEventListener("resize", this.onLayoutChange, {passive: true});
window.removeEventListener("wheel", this.mousewheelListener);
this.$elements && this.$elements.forEach((el) => {
// @ts-expect-error This is expected for some browsers
el.removeEventListener("scroll", this.onLayoutChange, {passive: true});
});
this.$elements = null;
}
/**
* @internal
*/
onLayoutChange() {
if (!this.popup.isOpen) return this.unObserveLayoutChanges();
this.$updatePopupPosition();
this.updateDocTooltip();
}
$updatePopupPosition() {
var editor = this.editor;
var renderer = editor.renderer;
var lineHeight = renderer.layerConfig.lineHeight;
var pos = renderer.$cursorLayer.getPixelPosition(this.base, true);
pos.left -= this.popup.getTextLeftOffset();
var rect = editor.container.getBoundingClientRect();
pos.top += rect.top - renderer.layerConfig.offset;
pos.left += rect.left - editor.renderer.scrollLeft;
pos.left += renderer.gutterWidth;
var posGhostText = {
top: pos.top,
left: pos.left
};
if (renderer.$ghostText && renderer.$ghostTextWidget) {
if (this.base.row === renderer.$ghostText.position.row) {
posGhostText.top += renderer.$ghostTextWidget.el.offsetHeight;
}
}
// posGhostText can be below the editor rendering the popup away from the editor.
// In this case, we want to render the popup such that the top aligns with the bottom of the editor.
var editorContainerBottom = editor.container.getBoundingClientRect().bottom - lineHeight;
var lowestPosition = editorContainerBottom < posGhostText.top ?
{top: editorContainerBottom, left: posGhostText.left} :
posGhostText;
// Try to render below ghost text, then above ghost text, then over ghost text
if (this.popup.tryShow(lowestPosition, lineHeight, "bottom")) {
return;
}
if (this.popup.tryShow(pos, lineHeight, "top")) {
return;
}
this.popup.show(pos, lineHeight);
}
/**
* @param {Editor} editor
* @param {string} prefix
* @param {boolean} [keepPopupPosition]
*/
openPopup(editor, prefix, keepPopupPosition) {
this.$firstOpenTimer.cancel();
if (!this.popup)
this.$init();
if (this.inlineEnabled && !this.inlineRenderer)
this.$initInline();
this.popup.autoSelect = this.autoSelect;
this.popup.setSelectOnHover(this.setSelectOnHover);
var oldRow = this.popup.getRow();
var previousSelectedItem = this.popup.data[oldRow];
this.popup.setData(this.completions.filtered, this.completions.filterText);
if (this.editor.textInput.setAriaOptions) {
this.editor.textInput.setAriaOptions({
activeDescendant: getAriaId(this.popup.getRow()),
inline: this.inlineEnabled
});
}
editor.keyBinding.addKeyboardHandler(this.keyboardHandler);
var newRow;
if (this.stickySelection)
newRow = this.popup.data.indexOf(previousSelectedItem);
if (!newRow || newRow === -1)
newRow = 0;
this.popup.setRow(this.autoSelect ? newRow : -1);
// If we stay on the same row, but the content is different, we want to update the popup.
if (newRow === oldRow && previousSelectedItem !== this.completions.filtered[newRow])
this.$onPopupChange();
// If we stay on the same line and have inlinePreview enabled, we want to make sure the
// ghost text remains up-to-date.
const inlineEnabled = this.inlineRenderer && this.inlineEnabled;
if (newRow === oldRow && inlineEnabled) {
var completion = this.popup.getData(this.popup.getRow());
this.$updateGhostText(completion);
}
if (!keepPopupPosition) {
this.popup.setTheme(editor.getTheme());
this.popup.setFontSize(editor.getFontSize());
this.$updatePopupPosition();
if (this.tooltipNode) {
this.updateDocTooltip();
}
}
this.changeTimer.cancel();
this.observeLayoutChanges();
}
/**
* Detaches all elements from the editor, and cleans up the data for the session
*/
detach() {
if (this.editor) {
this.editor.keyBinding.removeKeyboardHandler(this.keyboardHandler);
this.editor.off("changeSelection", this.changeListener);
this.editor.off("blur", this.blurListener);
this.editor.off("mousedown", this.mousedownListener);
this.editor.off("mousewheel", this.mousewheelListener);
}
this.$firstOpenTimer.cancel();
this.changeTimer.cancel();
this.hideDocTooltip();
if (this.completionProvider) {
this.completionProvider.detach();
}
if (this.popup && this.popup.isOpen)
this.popup.hide();
if (this.popup && this.popup.renderer) {
this.popup.renderer.off("afterRender", this.$onPopupRender);
}
if (this.base)
this.base.detach();
this.activated = false;
this.completionProvider = this.completions = this.base = null;
this.unObserveLayoutChanges();
}
changeListener(e) {
var cursor = this.editor.selection.lead;
if (cursor.row != this.base.row || cursor.column < this.base.column) {
this.detach();
}
if (this.activated)
this.changeTimer.schedule();
else
this.detach();
}
blurListener(e) {
// we have to check if activeElement is a child of popup because
// on IE preventDefault doesn't stop scrollbar from being focussed
var el = document.activeElement;
var text = this.editor.textInput.getElement();
var fromTooltip = e.relatedTarget && this.tooltipNode && this.tooltipNode.contains(e.relatedTarget);
var container = this.popup && this.popup.container;
if (el != text && el.parentNode != container && !fromTooltip
&& el != this.tooltipNode && e.relatedTarget != text
) {
this.detach();
}
}
mousedownListener(e) {
this.detach();
}
mousewheelListener(e) {
if (this.popup && !this.popup.isMouseOver)
this.detach();
}
mouseOutListener(e) {
// Check whether the popup is still open after the mouseout event,
// if so, attempt to move it to its desired position.
if (this.popup.isOpen)
this.$updatePopupPosition();
}
goTo(where) {
this.popup.goTo(where);
}
/**
* @param {Completion} data
* @param {undefined} [options]
* @return {boolean | void}
*/
insertMatch(data, options) {
if (!data)
data = this.popup.getData(this.popup.getRow());
if (!data)
return false;
if (data.value === "") // Explicitly given nothing to insert, e.g. "No suggestion state"
return this.detach();
var completions = this.completions;
// @ts-expect-error TODO: potential wrong arguments
var result = this.getCompletionProvider().insertMatch(this.editor, data, completions.filterText, options);
// detach only if new popup was not opened while inserting match
if (this.completions == completions)
this.detach();
return result;
}
/**
* This is the entry point for the autocompletion class, triggers the actions which collect and display suggestions
* @param {Editor} editor
* @param {CompletionOptions} [options]
*/
showPopup(editor, options) {
if (this.editor)
this.detach();
this.activated = true;
this.editor = editor;
if (editor.completer != this) {
if (editor.completer)
editor.completer.detach();
editor.completer = this;
}
editor.on("changeSelection", this.changeListener);
editor.on("blur", this.blurListener);
editor.on("mousedown", this.mousedownListener);
editor.on("mousewheel", this.mousewheelListener);
this.updateCompletions(false, options);
}
/**
*
* @param {{pos: Position, prefix: string}} [initialPosition]
* @return {CompletionProvider}
*/
getCompletionProvider(initialPosition) {
if (!this.completionProvider)
this.completionProvider = new CompletionProvider(initialPosition);
return this.completionProvider;
}
/**
* This method is deprecated, it is only kept for backwards compatibility.
* Use the same method include CompletionProvider instead for the same functionality.
* @deprecated
*/
gatherCompletions(editor, callback) {
return this.getCompletionProvider().gatherCompletions(editor, callback);
}
/**
* @param {boolean} keepPopupPosition
* @param {CompletionOptions} [options]
*/
updateCompletions(keepPopupPosition, options) {
if (keepPopupPosition && this.base && this.completions) {
var pos = this.editor.getCursorPosition();
var prefix = this.editor.session.getTextRange({start: this.base, end: pos});
if (prefix == this.completions.filterText)
return;
this.completions.setFilter(prefix);
if (!this.completions.filtered.length)
return this.detach();
if (this.completions.filtered.length == 1
&& this.completions.filtered[0].value == prefix
&& !this.completions.filtered[0].snippet)
return this.detach();
this.openPopup(this.editor, prefix, keepPopupPosition);
return;
}
if (options && options.matches) {
var pos = this.editor.getSelectionRange().start;
this.base = this.editor.session.doc.createAnchor(pos.row, pos.column);
this.base.$insertRight = true;
this.completions = new FilteredList(options.matches);
this.getCompletionProvider().completions = this.completions;
return this.openPopup(this.editor, "", keepPopupPosition);
}
var session = this.editor.getSession();
var pos = this.editor.getCursorPosition();
var prefix = util.getCompletionPrefix(this.editor);
this.base = session.doc.createAnchor(pos.row, pos.column - prefix.length);
this.base.$insertRight = true;
var completionOptions = {
exactMatch: this.exactMatch,
// @ts-expect-error TODO: couldn't find initializer
ignoreCaption: this.ignoreCaption
};
this.getCompletionProvider({
prefix,
pos
}).provideCompletions(this.editor, completionOptions,
/**
* @type {(err: any, completions: FilteredList, finished: boolean) => void | boolean}
* @this {Autocomplete}
*/
function (err, completions, finished) {
var filtered = completions.filtered;
var prefix = util.getCompletionPrefix(this.editor);
this.$firstOpenTimer.cancel();
if (finished) {
// No results
if (!filtered.length) {
var emptyMessage = !this.autoShown && this.emptyMessage;
if (typeof emptyMessage == "function") emptyMessage = this.emptyMessage(prefix);
if (emptyMessage) {
var completionsForEmpty = [{
caption: emptyMessage,
value: ""
}
];
this.completions = new FilteredList(completionsForEmpty);
this.openPopup(this.editor, prefix, keepPopupPosition);
this.popup.renderer.setStyle("ace_loading", false);
this.popup.renderer.setStyle("ace_empty-message", true);
return;
}
return this.detach();
}
// One result equals to the prefix
if (filtered.length == 1 && filtered[0].value == prefix
&& !filtered[0].snippet) return this.detach();
// Autoinsert if one result
if (this.autoInsert && !this.autoShown && filtered.length == 1) return this.insertMatch(
filtered[0]);
}
// If showLoadingState is true and there is still a completer loading, show 'Loading...'
// in the top row of the completer popup.
this.completions = !finished && this.showLoadingState ?
new FilteredList(
Autocomplete.completionsForLoading.concat(filtered), completions.filterText
) :
completions;
this.openPopup(this.editor, prefix, keepPopupPosition);
this.popup.renderer.setStyle("ace_empty-message", false);
this.popup.renderer.setStyle("ace_loading", !finished);
}.bind(this));
if (this.showLoadingState && !this.autoShown && !(this.popup && this.popup.isOpen)) {
this.$firstOpenTimer.delay(this.stickySelectionDelay/2);
}
}
cancelContextMenu() {
this.editor.$mouseHandler.cancelContextMenu();
}
updateDocTooltip() {
var popup = this.popup;
var all = this.completions && this.completions.filtered;
var selected = all && (all[popup.getHoveredRow()] || all[popup.getRow()]);
var doc = null;
if (!selected || !this.editor || !this.popup.isOpen)
return this.hideDocTooltip();
var completersLength = this.editor.completers.length;
for (var i = 0; i < completersLength; i++) {
var completer = this.editor.completers[i];
if (completer.getDocTooltip && selected.completerId === completer.id) {
doc = completer.getDocTooltip(selected);
break;
}
}
if (!doc && typeof selected != "string")
doc = selected;
if (typeof doc == "string")
doc = {docText: doc};
if (!doc || !(doc.docHTML || doc.docText))
return this.hideDocTooltip();
this.showDocTooltip(doc);
}
showDocTooltip(item) {
if (!this.tooltipNode) {
this.tooltipNode = dom.createElement("div");
this.tooltipNode.style.margin = "0";
this.tooltipNode.style.pointerEvents = "auto";
this.tooltipNode.style.overscrollBehavior = "contain";
this.tooltipNode.tabIndex = -1;
this.tooltipNode.onblur = this.blurListener.bind(this);
this.tooltipNode.onclick = this.onTooltipClick.bind(this);
this.tooltipNode.id = "doc-tooltip";
this.tooltipNode.setAttribute("role", "tooltip");
// prevent editor scroll if tooltip is inside an editor
this.tooltipNode.addEventListener("wheel", preventParentScroll);
}
var theme = this.editor.renderer.theme;
this.tooltipNode.className = "ace_tooltip ace_doc-tooltip " +
(theme.isDark? "ace_dark " : "") + (theme.cssClass || "");
var tooltipNode = this.tooltipNode;
if (item.docHTML) {
tooltipNode.innerHTML = item.docHTML;
} else if (item.docText) {
tooltipNode.textContent = item.docText;
}
if (!tooltipNode.parentNode)
this.popup.container.appendChild(this.tooltipNode);
var popup = this.popup;
var rect = popup.container.getBoundingClientRect();
var targetWidth = 400;
var targetHeight = 300;
var scrollBarSize = popup.renderer.scrollBar.width || 10;
var leftSize = rect.left;
var rightSize = window.innerWidth - rect.right - scrollBarSize;
var topSize = popup.isTopdown ? rect.top : window.innerHeight - scrollBarSize - rect.bottom;
var scores = [
Math.min(rightSize / targetWidth, 1),
Math.min(leftSize / targetWidth, 1),
Math.min(topSize / targetHeight * 0.9),
];
var max = Math.max.apply(Math, scores);
var tooltipStyle = tooltipNode.style;
tooltipStyle.display = "block";
if (max == scores[0]) {
tooltipStyle.left = (rect.right + 1) + "px";
tooltipStyle.right = "";
tooltipStyle.maxWidth = targetWidth * max + "px";
tooltipStyle.top = rect.top + "px";
tooltipStyle.bottom = "";
tooltipStyle.maxHeight = Math.min(window.innerHeight - scrollBarSize - rect.top, targetHeight) + "px";
} else if (max == scores[1]) {
tooltipStyle.right = window.innerWidth - rect.left + "px";
tooltipStyle.left = "";
tooltipStyle.maxWidth = targetWidth * max + "px";
tooltipStyle.top = rect.top + "px";
tooltipStyle.bottom = "";
tooltipStyle.maxHeight = Math.min(window.innerHeight - scrollBarSize - rect.top, targetHeight) + "px";
} else if (max == scores[2]) {
tooltipStyle.left = window.innerWidth - rect.left + "px";
tooltipStyle.maxWidth = Math.min(targetWidth, window.innerWidth) + "px";
if (popup.isTopdown) {
tooltipStyle.top = rect.bottom + "px";
tooltipStyle.left = rect.left + "px";
tooltipStyle.right = "";
tooltipStyle.bottom = "";
tooltipStyle.maxHeight = Math.min(window.innerHeight - scrollBarSize - rect.bottom, targetHeight) + "px";
} else {
tooltipStyle.top = popup.container.offsetTop - tooltipNode.offsetHeight + "px";
tooltipStyle.left = rect.left + "px";
tooltipStyle.right = "";
tooltipStyle.bottom = "";
tooltipStyle.maxHeight = Math.min(popup.container.offsetTop, targetHeight) + "px";
}
}
}
hideDocTooltip() {
this.tooltipTimer.cancel();
if (!this.tooltipNode) return;
var el = this.tooltipNode;
if (!this.editor.isFocused() && document.activeElement == el)
this.editor.focus();
this.tooltipNode = null;
if (el.parentNode)
el.parentNode.removeChild(el);
}
/**
* @param e
* @internal
*/
onTooltipClick(e) {
var a = e.target;
while (a && a != this.tooltipNode) {
if (a.nodeName == "A" && a.href) {
a.rel = "noreferrer";
a.target = "_blank";
break;
}
a = a.parentNode;
}
}
destroy() {
this.detach();
if (this.popup) {
this.popup.destroy();
var el = this.popup.container;
if (el && el.parentNode)
el.parentNode.removeChild(el);
}
if (this.editor && this.editor.completer == this) {
this.editor.off("destroy", destroyCompleter);
this.editor.completer = null;
}
this.inlineRenderer = this.popup = this.editor = null;
}
/**
* @param {Editor} editor
* @return {Autocomplete}
*/
static for(editor) {
if (editor.completer instanceof Autocomplete) {
return editor.completer;
}
if (editor.completer) {
editor.completer.destroy();
editor.completer = null;
}
if (config.get("sharedPopups")) {
if (!Autocomplete["$sharedInstance"])
Autocomplete["$sharedInstance"] = new Autocomplete();
editor.completer = Autocomplete["$sharedInstance"];
} else {
editor.completer = new Autocomplete();
editor.once("destroy", destroyCompleter);
}
// @ts-expect-error
return editor.completer;
}
}
Autocomplete.prototype.commands = {
"Up": function(editor) { editor.completer.goTo("up"); },
"Down": function(editor) { editor.completer.goTo("down"); },
"Ctrl-Up|Ctrl-Home": function(editor) { editor.completer.goTo("start"); },
"Ctrl-Down|Ctrl-End": function(editor) { editor.completer.goTo("end"); },
"Esc": function(editor) { editor.completer.detach(); },
"Return": function(editor) { return editor.completer.insertMatch(); },
"Shift-Return": function(editor) { editor.completer.insertMatch(null, {deleteSuffix: true}); },
"Tab": function(editor) {
var result = editor.completer.insertMatch();
if (!result && !editor.tabstopManager)
editor.completer.goTo("down");
else
return result;
},
"Backspace": function(editor) {
editor.execCommand("backspace");
var prefix = util.getCompletionPrefix(editor);
if (!prefix && editor.completer)
editor.completer.detach();
},
"PageUp": function(editor) { editor.completer.popup.gotoPageUp(); },
"PageDown": function(editor) { editor.completer.popup.gotoPageDown(); }
};
Autocomplete.startCommand = {
name: "startAutocomplete",
exec: function(editor, options) {
var completer = Autocomplete.for(editor);
completer.autoInsert = false;
completer.autoSelect = true;
completer.autoShown = false;
completer.showPopup(editor, options);
// prevent ctrl-space opening context menu on firefox on mac
completer.cancelContextMenu();
},
bindKey: "Ctrl-Space|Ctrl-Shift-Space|Alt-Space"
};
/**
* This class is responsible for providing completions and inserting them to the editor
*/
class CompletionProvider {
/**
* @param {{pos: Position, prefix: string}} [initialPosition]
*/
constructor(initialPosition) {
this.initialPosition = initialPosition;
this.active = true;
}
/**
* @param {Editor} editor
* @param {number} index
* @param {CompletionProviderOptions} [options]
* @returns {boolean}
*/
insertByIndex(editor, index, options) {
if (!this.completions || !this.completions.filtered) {
return false;
}
return this.insertMatch(editor, this.completions.filtered[index], options);
}
/**
* @param {Editor} editor
* @param {Completion} data
* @param {CompletionProviderOptions} [options]
* @returns {boolean}
*/
insertMatch(editor, data, options) {
if (!data)
return false;
editor.startOperation({command: {name: "insertMatch"}});
if (data.completer && data.completer.insertMatch) {
data.completer.insertMatch(editor, data);
} else {
// TODO add support for options.deleteSuffix
if (!this.completions)
return false;
var replaceBefore = this.completions.filterText.length;
var replaceAfter = 0;
if (data.range && data.range.start.row === data.range.end.row) {
replaceBefore -= this.initialPosition.prefix.length;
replaceBefore += this.initialPosition.pos.column - data.range.start.column;
replaceAfter += data.range.end.column - this.initialPosition.pos.column;
}
if (replaceBefore || replaceAfter) {
var ranges;
if (editor.selection.getAllRanges) {
ranges = editor.selection.getAllRanges();
}
else {
ranges = [editor.getSelectionRange()];
}
for (var i = 0, range; range = ranges[i]; i++) {
range.start.column -= replaceBefore;
range.end.column += replaceAfter;
editor.session.remove(range);
}
}
if (data.snippet) {
snippetManager.insertSnippet(editor, data.snippet);
}
else {
this.$insertString(editor, data);
}
if (data.completer && data.completer.onInsert && typeof data.completer.onInsert == "function") {
data.completer.onInsert(editor, data);
}
if (data.command && data.command === "startAutocomplete") {
editor.execCommand(data.command);
}
}
editor.endOperation();
return true;
}
/**
* @param {Editor} editor
* @param {Completion} data
*/
$insertString(editor, data) {
var text = data.value || data;
editor.execCommand("insertstring", text);
}
/**
* @param {Editor} editor
* @param {import("../ace-internal").Ace.CompletionCallbackFunction} callback
*/
gatherCompletions(editor, callback) {
var session = editor.getSession();
var pos = editor.getCursorPosition();
var prefix = util.getCompletionPrefix(editor);
var matches = [];
this.completers = editor.completers;
var total = editor.completers.length;
editor.completers.forEach(function(completer, i) {
completer.getCompletions(editor, session, pos, prefix, function(err, results) {
if (completer.hideInlinePreview)
results = results.map((result) => {
return Object.assign(result, {hideInlinePreview: completer.hideInlinePreview});
});
if (!err && results)
matches = matches.concat(results);
// Fetch prefix again, because they may have changed by now
callback(null, {
prefix: util.getCompletionPrefix(editor),
matches: matches,
finished: (--total === 0)
});
});
});
return true;
}
/**
* This is the entry point to the class, it gathers, then provides the completions asynchronously via callback.
* The callback function may be called multiple times, the last invokation is marked with a `finished` flag
* @param {Editor} editor
* @param {CompletionProviderOptions} options
* @param {(err: Error | undefined, completions: FilteredList | [], finished: boolean) => void} callback
*/
provideCompletions(editor, options, callback) {
var processResults = function(results) {
var prefix = results.prefix;
var matches = results.matches;
this.completions = new FilteredList(matches);
if (options.exactMatch)
this.completions.exactMatch = true;
if (options.ignoreCaption)
this.completions.ignoreCaption = true;
this.completions.setFilter(prefix);
if (results.finished || this.completions.filtered.length)
callback(null, this.completions, results.finished);
}.bind(this);
var isImmediate = true;
var immediateResults = null;
this.gatherCompletions(editor, function(err, results) {
if (!this.active) {