aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-01-14 16:13:32 +0100
committerArthurHoaro <arthur@hoa.ro>2017-02-27 20:01:54 +0100
commit430ff0710265ff281727ef6824cf292d1dfc50f1 (patch)
treef11f6cad2fd2f2e27bffd57a066392c0caeac516 /inc
parent246d72e14344c417e37599b9ed4ce2c324e244f4 (diff)
downloadShaarli-430ff0710265ff281727ef6824cf292d1dfc50f1.tar.gz
Shaarli-430ff0710265ff281727ef6824cf292d1dfc50f1.tar.zst
Shaarli-430ff0710265ff281727ef6824cf292d1dfc50f1.zip
Upgrade awesomplete + fix multiple autocompletion fields
Diffstat (limited to 'inc')
-rw-r--r--inc/awesomplete-multiple-tags.js21
-rw-r--r--inc/awesomplete.js184
-rw-r--r--inc/awesomplete.min.js11
3 files changed, 137 insertions, 79 deletions
diff --git a/inc/awesomplete-multiple-tags.js b/inc/awesomplete-multiple-tags.js
index 4cc8429f..faecb417 100644
--- a/inc/awesomplete-multiple-tags.js
+++ b/inc/awesomplete-multiple-tags.js
@@ -1,13 +1,16 @@
1var awp = Awesomplete.$; 1var awp = Awesomplete.$;
2awesomplete = new Awesomplete(awp('input[data-multiple]'), { 2var autocompleteFields = document.querySelectorAll('input[data-multiple]');
3 filter: function(text, input) { 3[].forEach.call(autocompleteFields, function(autocompleteField) {
4 return Awesomplete.FILTER_CONTAINS(text, input.match(/[^ ]*$/)[0]); 4 awesomplete = new Awesomplete(awp(autocompleteField), {
5 }, 5 filter: function (text, input) {
6 replace: function(text) { 6 return Awesomplete.FILTER_CONTAINS(text, input.match(/[^ ]*$/)[0]);
7 var before = this.input.value.match(/^.+ \s*|/)[0]; 7 },
8 this.input.value = before + text + " "; 8 replace: function (text) {
9 }, 9 var before = this.input.value.match(/^.+ \s*|/)[0];
10 minChars: 1 10 this.input.value = before + text + " ";
11 },
12 minChars: 1
13 })
11}); 14});
12 15
13/** 16/**
diff --git a/inc/awesomplete.js b/inc/awesomplete.js
index fae550e2..32f49e5b 100644
--- a/inc/awesomplete.js
+++ b/inc/awesomplete.js
@@ -12,26 +12,23 @@
12 12
13 // Setup 13 // Setup
14 14
15 this.isOpened = false;
16
15 this.input = $(input); 17 this.input = $(input);
18 this.input.setAttribute("autocomplete", "off");
16 this.input.setAttribute("aria-autocomplete", "list"); 19 this.input.setAttribute("aria-autocomplete", "list");
17 20
18 o = o || {}; 21 o = o || {};
19 22
20 configure.call(this, { 23 configure(this, {
21 minChars: 2, 24 minChars: 2,
22 maxItems: 10, 25 maxItems: 10,
23 autoFirst: false, 26 autoFirst: false,
27 data: _.DATA,
24 filter: _.FILTER_CONTAINS, 28 filter: _.FILTER_CONTAINS,
25 sort: _.SORT_BYLENGTH, 29 sort: _.SORT_BYLENGTH,
26 item: function (text, input) { 30 item: _.ITEM,
27 return $.create("li", { 31 replace: _.REPLACE
28 innerHTML: text.replace(RegExp($.regExpEscape(input.trim()), "gi"), "<mark>$&</mark>"),
29 "aria-selected": "false"
30 });
31 },
32 replace: function (text) {
33 this.input.value = text;
34 }
35 }, o); 32 }, o);
36 33
37 this.index = -1; 34 this.index = -1;
@@ -44,7 +41,7 @@
44 }); 41 });
45 42
46 this.ul = $.create("ul", { 43 this.ul = $.create("ul", {
47 hidden: "", 44 hidden: "hidden",
48 inside: this.container 45 inside: this.container
49 }); 46 });
50 47
@@ -60,7 +57,7 @@
60 57
61 $.bind(this.input, { 58 $.bind(this.input, {
62 "input": this.evaluate.bind(this), 59 "input": this.evaluate.bind(this),
63 "blur": this.close.bind(this), 60 "blur": this.close.bind(this, { reason: "blur" }),
64 "keydown": function(evt) { 61 "keydown": function(evt) {
65 var c = evt.keyCode; 62 var c = evt.keyCode;
66 63
@@ -72,7 +69,7 @@
72 me.select(); 69 me.select();
73 } 70 }
74 else if (c === 27) { // Esc 71 else if (c === 27) { // Esc
75 me.close(); 72 me.close({ reason: "esc" });
76 } 73 }
77 else if (c === 38 || c === 40) { // Down/Up arrow 74 else if (c === 38 || c === 40) { // Down/Up arrow
78 evt.preventDefault(); 75 evt.preventDefault();
@@ -82,7 +79,7 @@
82 } 79 }
83 }); 80 });
84 81
85 $.bind(this.input.form, {"submit": this.close.bind(this)}); 82 $.bind(this.input.form, {"submit": this.close.bind(this, { reason: "submit" })});
86 83
87 $.bind(this.ul, {"mousedown": function(evt) { 84 $.bind(this.ul, {"mousedown": function(evt) {
88 var li = evt.target; 85 var li = evt.target;
@@ -93,15 +90,16 @@
93 li = li.parentNode; 90 li = li.parentNode;
94 } 91 }
95 92
96 if (li) { 93 if (li && evt.button === 0) { // Only select on left click
97 me.select(li); 94 evt.preventDefault();
95 me.select(li, evt.target);
98 } 96 }
99 } 97 }
100 }}); 98 }});
101 99
102 if (this.input.hasAttribute("list")) { 100 if (this.input.hasAttribute("list")) {
103 this.list = "#" + input.getAttribute("list"); 101 this.list = "#" + this.input.getAttribute("list");
104 input.removeAttribute("list"); 102 this.input.removeAttribute("list");
105 } 103 }
106 else { 104 else {
107 this.list = this.input.getAttribute("data-list") || o.list || []; 105 this.list = this.input.getAttribute("data-list") || o.list || [];
@@ -122,9 +120,18 @@
122 list = $(list); 120 list = $(list);
123 121
124 if (list && list.children) { 122 if (list && list.children) {
125 this._list = slice.apply(list.children).map(function (el) { 123 var items = [];
126 return el.innerHTML.trim(); 124 slice.apply(list.children).forEach(function (el) {
125 if (!el.disabled) {
126 var text = el.textContent.trim();
127 var value = el.value || text;
128 var label = el.label || text;
129 if (value !== "") {
130 items.push({ label: label, value: value });
131 }
132 }
127 }); 133 });
134 this._list = items;
128 } 135 }
129 } 136 }
130 137
@@ -138,18 +145,24 @@
138 }, 145 },
139 146
140 get opened() { 147 get opened() {
141 return this.ul && this.ul.getAttribute("hidden") == null; 148 return this.isOpened;
142 }, 149 },
143 150
144 close: function () { 151 close: function (o) {
152 if (!this.opened) {
153 return;
154 }
155
145 this.ul.setAttribute("hidden", ""); 156 this.ul.setAttribute("hidden", "");
157 this.isOpened = false;
146 this.index = -1; 158 this.index = -1;
147 159
148 $.fire(this.input, "awesomplete-close"); 160 $.fire(this.input, "awesomplete-close", o || {});
149 }, 161 },
150 162
151 open: function () { 163 open: function () {
152 this.ul.removeAttribute("hidden"); 164 this.ul.removeAttribute("hidden");
165 this.isOpened = true;
153 166
154 if (this.autoFirst && this.index === -1) { 167 if (this.autoFirst && this.index === -1) {
155 this.goto(0); 168 this.goto(0);
@@ -160,14 +173,14 @@
160 173
161 next: function () { 174 next: function () {
162 var count = this.ul.children.length; 175 var count = this.ul.children.length;
163 176 this.goto(this.index < count - 1 ? this.index + 1 : (count ? 0 : -1) );
164 this.goto(this.index < count - 1? this.index + 1 : -1);
165 }, 177 },
166 178
167 previous: function () { 179 previous: function () {
168 var count = this.ul.children.length; 180 var count = this.ul.children.length;
181 var pos = this.index - 1;
169 182
170 this.goto(this.selected? this.index - 1 : count - 1); 183 this.goto(this.selected && pos !== -1 ? pos : count - 1);
171 }, 184 },
172 185
173 // Should not be used, highlights specific item without any checks! 186 // Should not be used, highlights specific item without any checks!
@@ -183,28 +196,37 @@
183 if (i > -1 && lis.length > 0) { 196 if (i > -1 && lis.length > 0) {
184 lis[i].setAttribute("aria-selected", "true"); 197 lis[i].setAttribute("aria-selected", "true");
185 this.status.textContent = lis[i].textContent; 198 this.status.textContent = lis[i].textContent;
186 }
187 199
188 $.fire(this.input, "awesomplete-highlight"); 200 // scroll to highlighted element in case parent's height is fixed
201 this.ul.scrollTop = lis[i].offsetTop - this.ul.clientHeight + lis[i].clientHeight;
202
203 $.fire(this.input, "awesomplete-highlight", {
204 text: this.suggestions[this.index]
205 });
206 }
189 }, 207 },
190 208
191 select: function (selected) { 209 select: function (selected, origin) {
192 selected = selected || this.ul.children[this.index]; 210 if (selected) {
211 this.index = $.siblingIndex(selected);
212 } else {
213 selected = this.ul.children[this.index];
214 }
193 215
194 if (selected) { 216 if (selected) {
195 var prevented; 217 var suggestion = this.suggestions[this.index];
196 218
197 $.fire(this.input, "awesomplete-select", { 219 var allowed = $.fire(this.input, "awesomplete-select", {
198 text: selected.textContent, 220 text: suggestion,
199 preventDefault: function () { 221 origin: origin || selected
200 prevented = true;
201 }
202 }); 222 });
203 223
204 if (!prevented) { 224 if (allowed) {
205 this.replace(selected.textContent); 225 this.replace(suggestion);
206 this.close(); 226 this.close({ reason: "select" });
207 $.fire(this.input, "awesomplete-selectcomplete"); 227 $.fire(this.input, "awesomplete-selectcomplete", {
228 text: suggestion
229 });
208 } 230 }
209 } 231 }
210 }, 232 },
@@ -218,25 +240,28 @@
218 // Populate list with options that match 240 // Populate list with options that match
219 this.ul.innerHTML = ""; 241 this.ul.innerHTML = "";
220 242
221 this._list 243 this.suggestions = this._list
244 .map(function(item) {
245 return new Suggestion(me.data(item, value));
246 })
222 .filter(function(item) { 247 .filter(function(item) {
223 return me.filter(item, value); 248 return me.filter(item, value);
224 }) 249 })
225 .sort(this.sort) 250 .sort(this.sort)
226 .every(function(text, i) { 251 .slice(0, this.maxItems);
227 me.ul.appendChild(me.item(text, value));
228 252
229 return i < me.maxItems - 1; 253 this.suggestions.forEach(function(text) {
230 }); 254 me.ul.appendChild(me.item(text, value));
255 });
231 256
232 if (this.ul.children.length === 0) { 257 if (this.ul.children.length === 0) {
233 this.close(); 258 this.close({ reason: "nomatches" });
234 } else { 259 } else {
235 this.open(); 260 this.open();
236 } 261 }
237 } 262 }
238 else { 263 else {
239 this.close(); 264 this.close({ reason: "nomatches" });
240 } 265 }
241 } 266 }
242 }; 267 };
@@ -261,27 +286,58 @@
261 return a < b? -1 : 1; 286 return a < b? -1 : 1;
262 }; 287 };
263 288
289 _.ITEM = function (text, input) {
290 var html = input.trim() === '' ? text : text.replace(RegExp($.regExpEscape(input.trim()), "gi"), "<mark>$&</mark>");
291 return $.create("li", {
292 innerHTML: html,
293 "aria-selected": "false"
294 });
295 };
296
297 _.REPLACE = function (text) {
298 this.input.value = text.value;
299 };
300
301 _.DATA = function (item/*, input*/) { return item; };
302
264// Private functions 303// Private functions
265 304
266 function configure(properties, o) { 305 function Suggestion(data) {
306 var o = Array.isArray(data)
307 ? { label: data[0], value: data[1] }
308 : typeof data === "object" && "label" in data && "value" in data ? data : { label: data, value: data };
309
310 this.label = o.label || o.value;
311 this.value = o.value;
312 }
313 Object.defineProperty(Suggestion.prototype = Object.create(String.prototype), "length", {
314 get: function() { return this.label.length; }
315 });
316 Suggestion.prototype.toString = Suggestion.prototype.valueOf = function () {
317 return "" + this.label;
318 };
319
320 function configure(instance, properties, o) {
267 for (var i in properties) { 321 for (var i in properties) {
268 var initial = properties[i], 322 var initial = properties[i],
269 attrValue = this.input.getAttribute("data-" + i.toLowerCase()); 323 attrValue = instance.input.getAttribute("data-" + i.toLowerCase());
270 324
271 if (typeof initial === "number") { 325 if (typeof initial === "number") {
272 this[i] = +attrValue; 326 instance[i] = parseInt(attrValue);
273 } 327 }
274 else if (initial === false) { // Boolean options must be false by default anyway 328 else if (initial === false) { // Boolean options must be false by default anyway
275 this[i] = attrValue !== null; 329 instance[i] = attrValue !== null;
276 } 330 }
277 else if (initial instanceof Function) { 331 else if (initial instanceof Function) {
278 this[i] = null; 332 instance[i] = null;
279 } 333 }
280 else { 334 else {
281 this[i] = attrValue; 335 instance[i] = attrValue;
282 } 336 }
283 337
284 this[i] = this[i] || o[i] || initial; 338 if (!instance[i] && instance[i] !== 0) {
339 instance[i] = (i in o)? o[i] : initial;
340 }
285 } 341 }
286 } 342 }
287 343
@@ -343,23 +399,29 @@
343 evt[j] = properties[j]; 399 evt[j] = properties[j];
344 } 400 }
345 401
346 target.dispatchEvent(evt); 402 return target.dispatchEvent(evt);
347 }; 403 };
348 404
349 $.regExpEscape = function (s) { 405 $.regExpEscape = function (s) {
350 return s.replace(/[-\\^$*+?.()|[\]{}]/g, "\\$&"); 406 return s.replace(/[-\\^$*+?.()|[\]{}]/g, "\\$&");
351 } 407 };
408
409 $.siblingIndex = function (el) {
410 /* eslint-disable no-cond-assign */
411 for (var i = 0; el = el.previousElementSibling; i++);
412 return i;
413 };
352 414
353// Initialization 415// Initialization
354 416
355 function init() { 417 function init() {
356 $$("input.awesomplete").forEach(function (input) { 418 $$("input.awesomplete").forEach(function (input) {
357 new Awesomplete(input); 419 new _(input);
358 }); 420 });
359 } 421 }
360 422
361// Are we in a browser? Check for Document constructor 423// Are we in a browser? Check for Document constructor
362 if (typeof Document !== 'undefined') { 424 if (typeof Document !== "undefined") {
363 // DOM already loaded? 425 // DOM already loaded?
364 if (document.readyState !== "loading") { 426 if (document.readyState !== "loading") {
365 init(); 427 init();
@@ -374,15 +436,15 @@
374 _.$$ = $$; 436 _.$$ = $$;
375 437
376// Make sure to export Awesomplete on self when in a browser 438// Make sure to export Awesomplete on self when in a browser
377 if (typeof self !== 'undefined') { 439 if (typeof self !== "undefined") {
378 self.Awesomplete = _; 440 self.Awesomplete = _;
379 } 441 }
380 442
381// Expose Awesomplete as a CJS module 443// Expose Awesomplete as a CJS module
382 if (typeof exports === 'object') { 444 if (typeof module === "object" && module.exports) {
383 module.exports = _; 445 module.exports = _;
384 } 446 }
385 447
386 return _; 448 return _;
387 449
388}()); 450}()); \ No newline at end of file
diff --git a/inc/awesomplete.min.js b/inc/awesomplete.min.js
index 3bfb05e8..cd08c949 100644
--- a/inc/awesomplete.min.js
+++ b/inc/awesomplete.min.js
@@ -1,10 +1,3 @@
1// Awesomplete - Lea Verou - MIT license 1// Awesomplete - Lea Verou - MIT license
2(function(){function m(a,b){for(var c in a){var f=a[c],e=this.input.getAttribute("data-"+c.toLowerCase());this[c]="number"===typeof f?+e:!1===f?null!==e:f instanceof Function?null:e;this[c]=this[c]||b[c]||f}}function d(a,b){return"string"===typeof a?(b||document).querySelector(a):a||null}function h(a,b){return k.call((b||document).querySelectorAll(a))}function l(){h("input.awesomplete").forEach(function(a){new Awesomplete(a)})}var g=self.Awesomplete=function(a,b){var c=this;this.input=d(a);this.input.setAttribute("aria-autocomplete", 2!function(){function t(t){var e=Array.isArray(t)?{label:t[0],value:t[1]}:"object"==typeof t&&"label"in t&&"value"in t?t:{label:t,value:t};this.label=e.label||e.value,this.value=e.value}function e(t,e,i){for(var n in e){var s=e[n],r=t.input.getAttribute("data-"+n.toLowerCase());"number"==typeof s?t[n]=parseInt(r):s===!1?t[n]=null!==r:s instanceof Function?t[n]=null:t[n]=r,t[n]||0===t[n]||(t[n]=n in i?i[n]:s)}}function i(t,e){return"string"==typeof t?(e||document).querySelector(t):t||null}function n(t,e){return o.call((e||document).querySelectorAll(t))}function s(){n("input.awesomplete").forEach(function(t){new r(t)})}var r=function(t,n){var s=this;this.isOpened=!1,this.input=i(t),this.input.setAttribute("autocomplete","off"),this.input.setAttribute("aria-autocomplete","list"),n=n||{},e(this,{minChars:2,maxItems:10,autoFirst:!1,data:r.DATA,filter:r.FILTER_CONTAINS,sort:r.SORT_BYLENGTH,item:r.ITEM,replace:r.REPLACE},n),this.index=-1,this.container=i.create("div",{className:"awesomplete",around:t}),this.ul=i.create("ul",{hidden:"hidden",inside:this.container}),this.status=i.create("span",{className:"visually-hidden",role:"status","aria-live":"assertive","aria-relevant":"additions",inside:this.container}),i.bind(this.input,{input:this.evaluate.bind(this),blur:this.close.bind(this,{reason:"blur"}),keydown:function(t){var e=t.keyCode;s.opened&&(13===e&&s.selected?(t.preventDefault(),s.select()):27===e?s.close({reason:"esc"}):38!==e&&40!==e||(t.preventDefault(),s[38===e?"previous":"next"]()))}}),i.bind(this.input.form,{submit:this.close.bind(this,{reason:"submit"})}),i.bind(this.ul,{mousedown:function(t){var e=t.target;if(e!==this){for(;e&&!/li/i.test(e.nodeName);)e=e.parentNode;e&&0===t.button&&(t.preventDefault(),s.select(e,t.target))}}}),this.input.hasAttribute("list")?(this.list="#"+this.input.getAttribute("list"),this.input.removeAttribute("list")):this.list=this.input.getAttribute("data-list")||n.list||[],r.all.push(this)};r.prototype={set list(t){if(Array.isArray(t))this._list=t;else if("string"==typeof t&&t.indexOf(",")>-1)this._list=t.split(/\s*,\s*/);else if(t=i(t),t&&t.children){var e=[];o.apply(t.children).forEach(function(t){if(!t.disabled){var i=t.textContent.trim(),n=t.value||i,s=t.label||i;""!==n&&e.push({label:s,value:n})}}),this._list=e}document.activeElement===this.input&&this.evaluate()},get selected(){return this.index>-1},get opened(){return this.isOpened},close:function(t){this.opened&&(this.ul.setAttribute("hidden",""),this.isOpened=!1,this.index=-1,i.fire(this.input,"awesomplete-close",t||{}))},open:function(){this.ul.removeAttribute("hidden"),this.isOpened=!0,this.autoFirst&&this.index===-1&&this.goto(0),i.fire(this.input,"awesomplete-open")},next:function(){var t=this.ul.children.length;this.goto(this.index<t-1?this.index+1:t?0:-1)},previous:function(){var t=this.ul.children.length,e=this.index-1;this.goto(this.selected&&e!==-1?e:t-1)},goto:function(t){var e=this.ul.children;this.selected&&e[this.index].setAttribute("aria-selected","false"),this.index=t,t>-1&&e.length>0&&(e[t].setAttribute("aria-selected","true"),this.status.textContent=e[t].textContent,i.fire(this.input,"awesomplete-highlight",{text:this.suggestions[this.index]}))},select:function(t,e){if(t?this.index=i.siblingIndex(t):t=this.ul.children[this.index],t){var n=this.suggestions[this.index],s=i.fire(this.input,"awesomplete-select",{text:n,origin:e||t});s&&(this.replace(n),this.close({reason:"select"}),i.fire(this.input,"awesomplete-selectcomplete",{text:n}))}},evaluate:function(){var e=this,i=this.input.value;i.length>=this.minChars&&this._list.length>0?(this.index=-1,this.ul.innerHTML="",this.suggestions=this._list.map(function(n){return new t(e.data(n,i))}).filter(function(t){return e.filter(t,i)}).sort(this.sort).slice(0,this.maxItems),this.suggestions.forEach(function(t){e.ul.appendChild(e.item(t,i))}),0===this.ul.children.length?this.close({reason:"nomatches"}):this.open()):this.close({reason:"nomatches"})}},r.all=[],r.FILTER_CONTAINS=function(t,e){return RegExp(i.regExpEscape(e.trim()),"i").test(t)},r.FILTER_STARTSWITH=function(t,e){return RegExp("^"+i.regExpEscape(e.trim()),"i").test(t)},r.SORT_BYLENGTH=function(t,e){return t.length!==e.length?t.length-e.length:t<e?-1:1},r.ITEM=function(t,e){var n=""===e?t:t.replace(RegExp(i.regExpEscape(e.trim()),"gi"),"<mark>$&</mark>");return i.create("li",{innerHTML:n,"aria-selected":"false"})},r.REPLACE=function(t){this.input.value=t.value},r.DATA=function(t){return t},Object.defineProperty(t.prototype=Object.create(String.prototype),"length",{get:function(){return this.label.length}}),t.prototype.toString=t.prototype.valueOf=function(){return""+this.label};var o=Array.prototype.slice;return i.create=function(t,e){var n=document.createElement(t);for(var s in e){var r=e[s];if("inside"===s)i(r).appendChild(n);else if("around"===s){var o=i(r);o.parentNode.insertBefore(n,o),n.appendChild(o)}else s in n?n[s]=r:n.setAttribute(s,r)}return n},i.bind=function(t,e){if(t)for(var i in e){var n=e[i];i.split(/\s+/).forEach(function(e){t.addEventListener(e,n)})}},i.fire=function(t,e,i){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0);for(var s in i)n[s]=i[s];return t.dispatchEvent(n)},i.regExpEscape=function(t){return t.replace(/[-\\^$*+?.()|[\]{}]/g,"\\$&")},i.siblingIndex=function(t){for(var e=0;t=t.previousElementSibling;e++);return e},"undefined"!=typeof Document&&("loading"!==document.readyState?s():document.addEventListener("DOMContentLoaded",s)),r.$=i,r.$$=n,"undefined"!=typeof self&&(self.Awesomplete=r),"object"==typeof module&&module.exports&&(module.exports=r),r}();
3 "list");b=b||{};m.call(this,{minChars:2,maxItems:10,autoFirst:!1,filter:g.FILTER_CONTAINS,sort:g.SORT_BYLENGTH,item:function(a,b){return d.create("li",{innerHTML:a.replace(RegExp(d.regExpEscape(b.trim()),"gi"),"<mark>$&</mark>"),"aria-selected":"false"})},replace:function(a){this.input.value=a}},b);this.index=-1;this.container=d.create("div",{className:"awesomplete",around:a});this.ul=d.create("ul",{hidden:"",inside:this.container});this.status=d.create("span",{className:"visually-hidden",role:"status", 3//# sourceMappingURL=awesomplete.min.js.map \ No newline at end of file
4 "aria-live":"assertive","aria-relevant":"additions",inside:this.container});d.bind(this.input,{input:this.evaluate.bind(this),blur:this.close.bind(this),keydown:function(a){var b=a.keyCode;if(c.opened)if(13===b&&c.selected)a.preventDefault(),c.select();else if(27===b)c.close();else if(38===b||40===b)a.preventDefault(),c[38===b?"previous":"next"]()}});d.bind(this.input.form,{submit:this.close.bind(this)});d.bind(this.ul,{mousedown:function(a){a=a.target;if(a!==this){for(;a&&!/li/i.test(a.nodeName);)a=
5 a.parentNode;a&&c.select(a)}}});this.input.hasAttribute("list")?(this.list="#"+a.getAttribute("list"),a.removeAttribute("list")):this.list=this.input.getAttribute("data-list")||b.list||[];g.all.push(this)};g.prototype={set list(a){Array.isArray(a)?this._list=a:"string"===typeof a&&-1<a.indexOf(",")?this._list=a.split(/\s*,\s*/):(a=d(a))&&a.children&&(this._list=k.apply(a.children).map(function(a){return a.innerHTML.trim()}));document.activeElement===this.input&&this.evaluate()},get selected(){return-1<
6this.index},get opened(){return this.ul&&null==this.ul.getAttribute("hidden")},close:function(){this.ul.setAttribute("hidden","");this.index=-1;d.fire(this.input,"awesomplete-close")},open:function(){this.ul.removeAttribute("hidden");this.autoFirst&&-1===this.index&&this.goto(0);d.fire(this.input,"awesomplete-open")},next:function(){this.goto(this.index<this.ul.children.length-1?this.index+1:-1)},previous:function(){var a=this.ul.children.length;this.goto(this.selected?this.index-1:a-1)},goto:function(a){var b=
7 this.ul.children;this.selected&&b[this.index].setAttribute("aria-selected","false");this.index=a;-1<a&&0<b.length&&(b[a].setAttribute("aria-selected","true"),this.status.textContent=b[a].textContent)},select:function(a){if(a=a||this.ul.children[this.index]){var b;d.fire(this.input,"awesomplete-select",{text:a.textContent,preventDefault:function(){b=!0}});b||(this.replace(a.textContent),this.close(),d.fire(this.input,"awesomplete-selectcomplete"))}},evaluate:function(){var a=this,b=this.input.value;
8 b.length>=this.minChars&&0<this._list.length?(this.index=-1,this.ul.innerHTML="",this._list.filter(function(c){return a.filter(c,b)}).sort(this.sort).every(function(c,d){a.ul.appendChild(a.item(c,b));return d<a.maxItems-1}),0===this.ul.children.length?this.close():this.open()):this.close()}};g.all=[];g.FILTER_CONTAINS=function(a,b){return RegExp(d.regExpEscape(b.trim()),"i").test(a)};g.FILTER_STARTSWITH=function(a,b){return RegExp("^"+d.regExpEscape(b.trim()),"i").test(a)};g.SORT_BYLENGTH=function(a,
9 b){return a.length!==b.length?a.length-b.length:a<b?-1:1};var k=Array.prototype.slice;d.create=function(a,b){var c=document.createElement(a),f;for(f in b){var e=b[f];"inside"===f?d(e).appendChild(c):"around"===f?(e=d(e),e.parentNode.insertBefore(c,e),c.appendChild(e)):f in c?c[f]=e:c.setAttribute(f,e)}return c};d.bind=function(a,b){if(a)for(var c in b){var d=b[c];c.split(/\s+/).forEach(function(b){a.addEventListener(b,d)})}};d.fire=function(a,b,c){var d=document.createEvent("HTMLEvents");d.initEvent(b,
10 !0,!0);for(var e in c)d[e]=c[e];a.dispatchEvent(d)};d.regExpEscape=function(a){return a.replace(/[-\\^$*+?.()|[\]{}]/g,"\\$&")};"loading"!==document.readyState?l():document.addEventListener("DOMContentLoaded",l);g.$=d;g.$$=h})();