forked from denis-taran/autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautocomplete.ts
501 lines (431 loc) · 15.6 KB
/
autocomplete.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
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
/*
* https://github.com/kraaden/autocomplete
* Copyright (c) 2016 Denys Krasnoshchok
* MIT License
*/
export const enum EventTrigger {
Keyboard = 0,
Focus = 1
}
export interface AutocompleteItem {
label?: string;
group?: string;
}
export interface AutocompleteSettings<T extends AutocompleteItem> {
input: HTMLInputElement;
render?: (item: T, currentValue: string) => HTMLDivElement | undefined;
renderGroup?: (name: string, currentValue: string) => HTMLDivElement | undefined;
className?: string;
minLength?: number;
emptyMsg?: string;
onSelect: (item: T, input: HTMLInputElement) => void;
/**
* Show autocomplete on focus event. Focus event will ignore the `minLength` property and will always call `fetch`.
*/
showOnFocus?: boolean;
fetch: (text: string, update: (items: T[] | false) => void, trigger: EventTrigger) => void;
debounceWaitMs?: number;
/**
* Callback for additional autocomplete customization
* @param {HTMLInputElement} input - input box associated with autocomplete
* @param {ClientRect | DOMRect} inputRect - size of the input box and its position relative to the viewport
* @param {HTMLDivElement} container - container with suggestions
* @param {number} maxHeight - max height that can be used by autocomplete
*/
customize?: (input: HTMLInputElement, inputRect: ClientRect | DOMRect, container: HTMLDivElement, maxHeight: number) => void;
/**
* Prevents automatic form submit when ENTER is pressed
*/
preventSubmit?: boolean;
allowSubmitOnTab?: boolean;
}
export interface AutocompleteResult {
destroy: () => void;
}
const enum Keys {
Enter = 13,
Esc = 27,
Up = 38,
Down = 40,
Left = 37,
Right = 39,
Shift = 16,
Ctrl = 17,
Alt = 18,
CapsLock = 20,
WindowsKey = 91,
Tab = 9,
F1 = 112,
F12 = 123
}
export default function autocomplete<T extends AutocompleteItem>(settings: AutocompleteSettings<T>): AutocompleteResult {
// just an alias to minimize JS file size
const doc = document;
const container: HTMLDivElement = doc.createElement("div");
const containerStyle = container.style;
const userAgent = navigator.userAgent;
const mobileFirefox = userAgent.indexOf("Firefox") !== -1 && userAgent.indexOf("Mobile") !== -1;
const debounceWaitMs = settings.debounceWaitMs || 0;
const preventSubmit = settings.preventSubmit || false;
const allowSubmitOnTab = settings.allowSubmitOnTab || false;
// 'keyup' event will not be fired on Mobile Firefox, so we have to use 'input' event instead
const keyUpEventName = mobileFirefox ? "input" : "keyup";
let items: T[] = [];
let inputValue = "";
let minLen = 2;
const showOnFocus = settings.showOnFocus;
let selected: T | undefined;
let keypressCounter = 0;
let debounceTimer : number | undefined;
if (settings.minLength !== undefined) {
minLen = settings.minLength;
}
if (!settings.input) {
throw new Error("input undefined");
}
const input: HTMLInputElement = settings.input;
container.className = "autocomplete " + (settings.className || "");
// IOS implementation for fixed positioning has many bugs, so we will use absolute positioning
containerStyle.position = "absolute";
/**
* Detach the container from DOM
*/
function detach(): void {
const parent = container.parentNode;
if (parent) {
parent.removeChild(container);
}
}
/**
* Clear debouncing timer if assigned
*/
function clearDebounceTimer(): void {
if (debounceTimer) {
window.clearTimeout(debounceTimer);
}
}
/**
* Attach the container to DOM
*/
function attach(): void {
if (!container.parentNode) {
doc.body.appendChild(container);
}
}
/**
* Check if container for autocomplete is displayed
*/
function containerDisplayed(): boolean {
return !!container.parentNode;
}
/**
* Clear autocomplete state and hide container
*/
function clear(): void {
// prevent the update call if there are pending AJAX requests
keypressCounter++;
items = [];
inputValue = "";
selected = undefined;
detach();
}
/**
* Update autocomplete position
*/
function updatePosition(): void {
if (!containerDisplayed()) {
return;
}
containerStyle.height = "auto";
containerStyle.width = input.offsetWidth + "px";
let maxHeight = 0;
let inputRect: ClientRect | DOMRect | undefined;
function calc() {
const docEl = doc.documentElement as HTMLElement;
const clientTop = docEl.clientTop || doc.body.clientTop || 0;
const clientLeft = docEl.clientLeft || doc.body.clientLeft || 0;
const scrollTop = window.pageYOffset || docEl.scrollTop;
const scrollLeft = window.pageXOffset || docEl.scrollLeft;
inputRect = input.getBoundingClientRect();
const top = inputRect.top + input.offsetHeight + scrollTop - clientTop;
const left = inputRect.left + scrollLeft - clientLeft;
containerStyle.top = top + "px";
containerStyle.left = left + "px";
maxHeight = window.innerHeight - (inputRect.top + input.offsetHeight);
if (maxHeight < 0) {
maxHeight = 0;
}
containerStyle.top = top + "px";
containerStyle.bottom = "";
containerStyle.left = left + "px";
containerStyle.maxHeight = maxHeight + "px";
}
// the calc method must be called twice, otherwise the calculation may be wrong on resize event (chrome browser)
calc();
calc();
if (settings.customize && inputRect) {
settings.customize(input, inputRect, container, maxHeight);
}
}
/**
* Redraw the autocomplete div element with suggestions
*/
function update(): void {
// delete all children from autocomplete DOM container
while (container.firstChild) {
container.removeChild(container.firstChild);
}
// function for rendering autocomplete suggestions
let render = function(item: T, currentValue: string): HTMLDivElement | undefined {
const itemElement = doc.createElement("div");
itemElement.textContent = item.label || "";
return itemElement;
};
if (settings.render) {
render = settings.render;
}
// function to render autocomplete groups
let renderGroup = function(groupName: string, currentValue: string): HTMLDivElement | undefined {
const groupDiv = doc.createElement("div");
groupDiv.textContent = groupName;
return groupDiv;
};
if (settings.renderGroup) {
renderGroup = settings.renderGroup;
}
const fragment = doc.createDocumentFragment();
let prevGroup = "#9?$";
items.forEach(function(item: T): void {
if (item.group && item.group !== prevGroup) {
prevGroup = item.group;
const groupDiv = renderGroup(item.group, inputValue);
if (groupDiv) {
groupDiv.className += " group";
fragment.appendChild(groupDiv);
}
}
const div = render(item, inputValue);
if (div) {
div.addEventListener("click", function(ev: MouseEvent): void {
settings.onSelect(item, input);
clear();
ev.preventDefault();
ev.stopPropagation();
});
if (item === selected) {
div.className += " selected";
}
fragment.appendChild(div);
}
});
container.appendChild(fragment);
if (items.length < 1) {
if (settings.emptyMsg) {
const empty = doc.createElement("div");
empty.className = "empty";
empty.textContent = settings.emptyMsg;
container.appendChild(empty);
} else {
clear();
return;
}
}
attach();
updatePosition();
updateScroll();
}
function updateIfDisplayed(): void {
if (containerDisplayed()) {
update();
}
}
function resizeEventHandler(): void {
updateIfDisplayed();
}
function scrollEventHandler(e: Event): void {
if (e.target !== container) {
updateIfDisplayed();
} else {
e.preventDefault();
}
}
function keyupEventHandler(ev: KeyboardEvent): void {
const keyCode = ev.which || ev.keyCode || 0;
const ignore = [Keys.Up, Keys.Enter, Keys.Esc, Keys.Right, Keys.Left, Keys.Shift, Keys.Ctrl, Keys.Alt, Keys.CapsLock, Keys.WindowsKey, Keys.Tab];
for (const key of ignore) {
if (keyCode === key) {
return;
}
}
if (keyCode >= Keys.F1 && keyCode <= Keys.F12) {
return;
}
// the down key is used to open autocomplete
if (keyCode === Keys.Down && containerDisplayed()) {
return;
}
startFetch(EventTrigger.Keyboard);
}
/**
* Automatically move scroll bar if selected item is not visible
*/
function updateScroll(): void {
const elements = container.getElementsByClassName("selected");
if (elements.length > 0) {
let element = elements[0] as HTMLDivElement;
// make group visible
const previous = element.previousElementSibling as HTMLDivElement;
if (previous && previous.className.indexOf("group") !== -1 && !previous.previousElementSibling) {
element = previous;
}
if (element.offsetTop < container.scrollTop) {
container.scrollTop = element.offsetTop;
} else {
const selectBottom = element.offsetTop + element.offsetHeight;
const containerBottom = container.scrollTop + container.offsetHeight;
if (selectBottom > containerBottom) {
container.scrollTop += selectBottom - containerBottom;
}
}
}
}
/**
* Select the previous item in suggestions
*/
function selectPrev(): void {
if (items.length < 1) {
selected = undefined;
} else {
if (selected === items[0]) {
selected = items[items.length - 1];
} else {
for (let i = items.length - 1; i > 0; i--) {
if (selected === items[i] || i === 1) {
selected = items[i - 1];
break;
}
}
}
}
}
/**
* Select the next item in suggestions
*/
function selectNext(): void {
if (items.length < 1) {
selected = undefined;
}
if (!selected || selected === items[items.length - 1]) {
selected = items[0];
return;
}
for (let i = 0; i < (items.length - 1); i++) {
if (selected === items[i]) {
selected = items[i + 1];
break;
}
}
}
function keydownEventHandler(ev: KeyboardEvent): void {
const keyCode = ev.which || ev.keyCode || 0;
if (keyCode === Keys.Up || keyCode === Keys.Down || keyCode === Keys.Esc) {
const containerIsDisplayed = containerDisplayed();
if (keyCode === Keys.Esc) {
clear();
} else {
if (!containerDisplayed || items.length < 1) {
return;
}
keyCode === Keys.Up
? selectPrev()
: selectNext();
update();
}
ev.preventDefault();
if (containerIsDisplayed) {
ev.stopPropagation();
}
return;
}
if (keyCode === Keys.Enter || (keyCode === Keys.Tab && allowSubmitOnTab)) {
if (selected) {
settings.onSelect(selected, input);
clear();
}
if (preventSubmit) {
ev.preventDefault();
}
}
}
function focusEventHandler(): void {
if (showOnFocus) {
startFetch(EventTrigger.Focus);
}
}
function startFetch(trigger: EventTrigger) {
// if multiple keys were pressed, before we get update from server,
// this may cause redrawing our autocomplete multiple times after the last key press.
// to avoid this, the number of times keyboard was pressed will be
// saved and checked before redraw our autocomplete box.
const savedKeypressCounter = ++keypressCounter;
const val = input.value;
if (val.length >= minLen || trigger === EventTrigger.Focus) {
clearDebounceTimer();
debounceTimer = window.setTimeout(function(): void {
settings.fetch(val, function(elements: T[] | false): void {
if (keypressCounter === savedKeypressCounter && elements) {
items = elements;
inputValue = val;
selected = items.length > 0 ? items[0] : undefined;
update();
}
}, EventTrigger.Keyboard);
}, trigger === EventTrigger.Keyboard ? debounceWaitMs : 0);
} else {
clear();
}
}
function blurEventHandler(): void {
// we need to delay clear, because when we click on an item, blur will be called before click and remove items from DOM
setTimeout(() => {
if (doc.activeElement !== input) {
clear();
}
}, 200);
}
/**
* Fixes #26: on long clicks focus will be lost and onSelect method will not be called
*/
container.addEventListener("mousedown", function(evt: Event) {
evt.stopPropagation();
evt.preventDefault();
});
/**
* Fixes #30: autocomplete closes when scrollbar is clicked in IE
* See: https://stackoverflow.com/a/9210267/13172349
*/
container.addEventListener("focus", () => input.focus());
/**
* This function will remove DOM elements and clear event handlers
*/
function destroy(): void {
input.removeEventListener("focus", focusEventHandler);
input.removeEventListener("keydown", keydownEventHandler);
input.removeEventListener(keyUpEventName, keyupEventHandler as EventListenerOrEventListenerObject);
input.removeEventListener("blur", blurEventHandler);
window.removeEventListener("resize", resizeEventHandler);
doc.removeEventListener("scroll", scrollEventHandler, true);
clearDebounceTimer();
clear();
}
// setup event handlers
input.addEventListener("keydown", keydownEventHandler);
input.addEventListener(keyUpEventName, keyupEventHandler as EventListenerOrEventListenerObject);
input.addEventListener("blur", blurEventHandler);
input.addEventListener("focus", focusEventHandler);
window.addEventListener("resize", resizeEventHandler);
doc.addEventListener("scroll", scrollEventHandler, true);
return {
destroy
};
}