blob: 1f9d84917bbb912d1ef1cd35c854842e1dd027b0 [file] [log] [blame]
Nils Diewald2fe12e12015-03-06 16:47:06 +00001/**
Nils Diewald7148c6f2015-05-04 15:07:53 +00002 * Scrollable drop-down menus with view filter.
Nils Diewald2fe12e12015-03-06 16:47:06 +00003 *
4 * @author Nils Diewald
5 */
Nils Diewald2488d052015-04-09 21:46:02 +00006/*
Akron3c2730f2016-05-24 15:08:29 +02007 * TODO: Show the slider briefly on move (whenever screen is called).
Akron9c4d1ae2016-05-25 21:43:22 +02008 * TODO: Ignore alt+ and strg+ key strokes.
Akron0b92f692016-05-25 22:37:13 +02009 * TODO: Should scroll to a chosen value after prefixing, if the chosen value is live
Akron201b72a2016-06-03 01:46:19 +020010 * TODO: Add a "title" to a menu that is not scrollable.
11 * TODO: Make the menu responsive by showing less items on smaller screens
12 * or anytime items would be outside the screen.
Akron02360e42016-06-07 13:41:12 +020013 * TODO: Add a .match() method to items for scrolling and probably for prefixing.
14 * TODO: Add static header (for title, sortation fields, but also for menu points like "fragments" and "history".
Akrone91da782017-12-15 17:17:50 +010015 * TODO: Support space separated list of prefixes so "co no" will highlight "common noun"
Nils Diewald2488d052015-04-09 21:46:02 +000016 */
Nils Diewald0e6992a2015-04-14 20:13:52 +000017define([
18 'menu/item',
19 'menu/prefix',
Akronc7448732016-04-27 14:06:58 +020020 'menu/lengthField',
Akron9905e2a2016-05-10 16:06:44 +020021 'menu/slider',
Nils Diewald0e6992a2015-04-14 20:13:52 +000022 'util'
23], function (defaultItemClass,
Akrone4961b12017-05-10 21:04:46 +020024 defaultPrefixClass,
25 defaultLengthFieldClass,
26 sliderClass) {
Nils Diewaldfda29d92015-01-22 17:28:01 +000027
Nils Diewald0e6992a2015-04-14 20:13:52 +000028 // Default maximum number of menu items
29 var menuLimit = 8;
30
31 function _codeFromEvent (e) {
32 if (e.charCode && (e.keyCode == 0))
33 return e.charCode
34 return e.keyCode;
Nils Diewald59c02fc2015-03-07 01:29:09 +000035 };
36
Nils Diewald86dad5b2015-01-28 15:09:07 +000037
38 /**
39 * List of items for drop down menu (complete).
40 * Only a sublist of the menu is filtered (live).
41 * Only a sublist of the filtered menu is visible (shown).
42 */
Nils Diewald0e6992a2015-04-14 20:13:52 +000043 return {
Nils Diewald86dad5b2015-01-28 15:09:07 +000044 /**
45 * Create new Menu based on the action prefix
46 * and a list of menu items.
47 *
Akron7524be12016-06-01 17:31:33 +020048 *
49 * Accepts an associative array containg the elements
50 * itemClass, prefixClass, lengthFieldClass
51 *
Nils Diewald86dad5b2015-01-28 15:09:07 +000052 * @this {Menu}
53 * @constructor
54 * @param {string} Context prefix
55 * @param {Array.<Array.<string>>} List of menu items
56 */
Akron7524be12016-06-01 17:31:33 +020057 create : function (list, params) {
58 return Object.create(this)._init(list, params);
Nils Diewald86dad5b2015-01-28 15:09:07 +000059 },
60
Akron5240b8c2016-05-20 09:17:41 +020061 // Initialize list
Akron7524be12016-06-01 17:31:33 +020062 _init : function (list, params) {
Akrona92fd8d2016-05-24 21:13:41 +020063
Akron7524be12016-06-01 17:31:33 +020064 if (params === undefined)
Akrone4961b12017-05-10 21:04:46 +020065 params = {};
Akron7524be12016-06-01 17:31:33 +020066
67 this._itemClass = params["itemClass"] || defaultItemClass;
Akron5240b8c2016-05-20 09:17:41 +020068
69 // Add prefix object
Akron7524be12016-06-01 17:31:33 +020070 if (params["prefixClass"] !== undefined) {
Akrone4961b12017-05-10 21:04:46 +020071 this._prefix = params["prefixClass"].create();
Akron5240b8c2016-05-20 09:17:41 +020072 }
73 else {
Akrone4961b12017-05-10 21:04:46 +020074 this._prefix = defaultPrefixClass.create();
Akron5240b8c2016-05-20 09:17:41 +020075 };
76 this._prefix._menu = this;
77
78 // Add lengthField object
Akron7524be12016-06-01 17:31:33 +020079 if (params["lengthFieldClass"] !== undefined) {
Akrone4961b12017-05-10 21:04:46 +020080 this._lengthField = params["lengthFieldClass"].create();
Akron5240b8c2016-05-20 09:17:41 +020081 }
82 else {
Akrone4961b12017-05-10 21:04:46 +020083 this._lengthField = defaultLengthFieldClass.create();
Akron5240b8c2016-05-20 09:17:41 +020084 };
85 this._lengthField._menu = this;
86
87 // Initialize slider
88 this._slider = sliderClass.create(this);
89
90 // Create the element
Akron9c4d1ae2016-05-25 21:43:22 +020091 var el = document.createElement("ul");
92 with (el) {
Akrone4961b12017-05-10 21:04:46 +020093 style.outline = 0;
94 setAttribute('tabindex', 0);
95 classList.add('menu', 'roll');
96 appendChild(this._prefix.element());
97 appendChild(this._lengthField.element());
98 appendChild(this._slider.element());
Akron9c4d1ae2016-05-25 21:43:22 +020099 };
Akron5240b8c2016-05-20 09:17:41 +0200100
101 // This has to be cleaned up later on
Akron9c4d1ae2016-05-25 21:43:22 +0200102 el["menu"] = this;
Akron5240b8c2016-05-20 09:17:41 +0200103
104 // Arrow keys
Akron9c4d1ae2016-05-25 21:43:22 +0200105 el.addEventListener(
Akrone4961b12017-05-10 21:04:46 +0200106 'keydown',
107 this._keydown.bind(this),
108 false
Akron5240b8c2016-05-20 09:17:41 +0200109 );
110
111 // Strings
Akron9c4d1ae2016-05-25 21:43:22 +0200112 el.addEventListener(
Akrone4961b12017-05-10 21:04:46 +0200113 'keypress',
114 this._keypress.bind(this),
115 false
Akron5240b8c2016-05-20 09:17:41 +0200116 );
117
118 // Mousewheel
Akron9c4d1ae2016-05-25 21:43:22 +0200119 el.addEventListener(
Akrone4961b12017-05-10 21:04:46 +0200120 'wheel',
121 this._mousewheel.bind(this),
122 false
Akron5240b8c2016-05-20 09:17:41 +0200123 );
Akrona1159ff2018-07-22 13:28:31 +0200124
125 // Touch
126 el.addEventListener(
127 'touchstart',
128 this._touch.bind(this),
129 false
130 );
131 el.addEventListener(
132 'touchend',
133 this._touch.bind(this),
134 false
135 );
136 el.addEventListener(
137 'touchmove',
138 this._touch.bind(this),
139 false
140 );
141
142
Akron9c4d1ae2016-05-25 21:43:22 +0200143 this._element = el;
Akroneaba63e2018-01-26 19:49:30 +0100144
145 this._limit = menuLimit;
Akrone4961b12017-05-10 21:04:46 +0200146
Akron5240b8c2016-05-20 09:17:41 +0200147 this._items = new Array();
Akron5240b8c2016-05-20 09:17:41 +0200148
Akroneaba63e2018-01-26 19:49:30 +0100149 // TODO:
150 // Make this separate from _init
151 this.readItems(list);
152
153 return this;
154 },
155
156 // Read items to add to list
157 readItems : function (list) {
158
159 this._list = undefined;
160
161 // Remove circular reference to "this" in items
162 for (var i = 0; i < this._items.length; i++) {
163 delete this._items[i]["_menu"];
164 delete this._items[i];
165 };
166
167 this._items = new Array();
168 this.removeItems();
169
170
171 // Initialize items
172 this._lengthField.reset();
173
Akron9c4d1ae2016-05-25 21:43:22 +0200174 var i = 0;
Akron5240b8c2016-05-20 09:17:41 +0200175 // Initialize item list based on parameters
Akron7524be12016-06-01 17:31:33 +0200176 for (i in list) {
Akrone4961b12017-05-10 21:04:46 +0200177 var obj = this._itemClass.create(list[i]);
Akron5240b8c2016-05-20 09:17:41 +0200178
Akrone4961b12017-05-10 21:04:46 +0200179 // This may become circular
180 obj["_menu"] = this;
181 this._lengthField.add(list[i]);
182 this._items.push(obj);
Akron5240b8c2016-05-20 09:17:41 +0200183 };
184
Akron9c4d1ae2016-05-25 21:43:22 +0200185 this._slider.length(this.liveLength())
Akrone4961b12017-05-10 21:04:46 +0200186 .limit(this._limit)
187 .reInit();
188
Akroneaba63e2018-01-26 19:49:30 +0100189 this._firstActive = false;
190 // Show the first item active always?
Akron9c4d1ae2016-05-25 21:43:22 +0200191 this.offset = 0;
192 this.position = 0;
Akron5240b8c2016-05-20 09:17:41 +0200193 },
Akroneaba63e2018-01-26 19:49:30 +0100194
Akron5240b8c2016-05-20 09:17:41 +0200195 // Initialize the item list
196 _initList : function () {
197
198 // Create a new list
199 if (this._list === undefined) {
Akrone4961b12017-05-10 21:04:46 +0200200 this._list = [];
Akron5240b8c2016-05-20 09:17:41 +0200201 }
202 else if (this._list.length !== 0) {
Akrone4961b12017-05-10 21:04:46 +0200203 this._boundary(false);
204 this._list.length = 0;
Akron5240b8c2016-05-20 09:17:41 +0200205 };
206
207 // Offset is initially zero
Akron9c4d1ae2016-05-25 21:43:22 +0200208 this.offset = 0;
Akron5240b8c2016-05-20 09:17:41 +0200209
210 // There is no prefix set
211 if (this.prefix().length <= 0) {
212
Akrone4961b12017-05-10 21:04:46 +0200213 // add all items to the list and lowlight
214 var i = 0;
215 for (; i < this._items.length; i++) {
216 this._list.push(i);
217 this._items[i].lowlight();
218 };
Akron5240b8c2016-05-20 09:17:41 +0200219
Akroneaba63e2018-01-26 19:49:30 +0100220 this._slider.length(i).reInit();
Akron97752a72016-05-25 14:43:07 +0200221
Akrone4961b12017-05-10 21:04:46 +0200222 return true;
Akron5240b8c2016-05-20 09:17:41 +0200223 };
224
225 /*
226 * There is a prefix set, so filter the list!
227 */
228 var pos;
Akronacffc652017-12-18 21:21:25 +0100229 var prefixList = this.prefix().toLowerCase().split(" ");
230
231 var items = [];
232 var maxPoints = 1; // minimum 1
Akron5240b8c2016-05-20 09:17:41 +0200233
234 // Iterate over all items and choose preferred matching items
235 // i.e. the matching happens at the word start
236 for (pos = 0; pos < this._items.length; pos++) {
Akronacffc652017-12-18 21:21:25 +0100237
238 var points = 0;
239
240 for (pref = 0; pref < prefixList.length; pref++) {
241 var prefix = " " + prefixList[pref];
242
243 // Check if it matches at the beginning
Akron3b253d32018-07-15 10:16:06 +0200244 // if ((this.item(pos).lcField().indexOf(prefix)) >= 0) {
245 if ((this.item(pos).lcField().includes(prefix))) {
Akronacffc652017-12-18 21:21:25 +0100246 points += 5;
247 }
248
249 // Check if it matches anywhere
Akron3b253d32018-07-15 10:16:06 +0200250 // else if ((this.item(pos).lcField().indexOf(prefix.substring(1))) >= 0) {
251 else if ((this.item(pos).lcField().includes(prefix.substring(1)))) {
Akronacffc652017-12-18 21:21:25 +0100252 points += 1;
253 };
254 };
255
256 if (points > maxPoints) {
257 this._list = [pos];
258 maxPoints = points;
259 }
260 else if (points == maxPoints) {
Akrone4961b12017-05-10 21:04:46 +0200261 this._list.push(pos);
Akronacffc652017-12-18 21:21:25 +0100262 }
Akron5240b8c2016-05-20 09:17:41 +0200263 };
264
265 // The list is empty - so lower your expectations
266 // Iterate over all items and choose matching items
267 // i.e. the matching happens anywhere in the word
Akronacffc652017-12-18 21:21:25 +0100268 /*
Akron6ffad5d2016-05-24 17:16:58 +0200269 prefix = prefix.substring(1);
Akron5240b8c2016-05-20 09:17:41 +0200270 if (this._list.length == 0) {
Akrone4961b12017-05-10 21:04:46 +0200271 for (pos = 0; pos < this._items.length; pos++) {
272 if ((this.item(pos).lcField().indexOf(prefix)) >= 0)
273 this._list.push(pos);
274 };
Akron5240b8c2016-05-20 09:17:41 +0200275 };
Akronacffc652017-12-18 21:21:25 +0100276 */
Akron5240b8c2016-05-20 09:17:41 +0200277
Akron9c4d1ae2016-05-25 21:43:22 +0200278 this._slider.length(this._list.length).reInit();
Akron6ed13992016-05-23 18:06:05 +0200279
Akron5240b8c2016-05-20 09:17:41 +0200280 // Filter was successful - yeah!
281 return this._list.length > 0 ? true : false;
282 },
283
284
Nils Diewald6e43ffd2015-03-25 18:55:39 +0000285 /**
286 * Destroy this menu
287 * (in case you don't trust the
288 * mark and sweep GC)!
289 */
290 destroy : function () {
Akron47c086c2016-05-18 21:22:06 +0200291
Akron5240b8c2016-05-20 09:17:41 +0200292 // Remove circular reference to "this" in menu
Nils Diewald6e43ffd2015-03-25 18:55:39 +0000293 if (this._element != undefined)
Akrone4961b12017-05-10 21:04:46 +0200294 delete this._element["menu"];
Nils Diewald6e43ffd2015-03-25 18:55:39 +0000295
Akron5240b8c2016-05-20 09:17:41 +0200296 // Remove circular reference to "this" in items
Nils Diewald6e43ffd2015-03-25 18:55:39 +0000297 for (var i = 0; i < this._items.length; i++) {
Akrone4961b12017-05-10 21:04:46 +0200298 delete this._items[i]["_menu"];
Nils Diewald6e43ffd2015-03-25 18:55:39 +0000299 };
Akron5240b8c2016-05-20 09:17:41 +0200300
301 // Remove circular reference to "this" in prefix
Nils Diewald5c5a7472015-04-02 22:13:38 +0000302 delete this._prefix['_menu'];
Akron5240b8c2016-05-20 09:17:41 +0200303 delete this._lengthField['_menu'];
304 delete this._slider['_menu'];
Nils Diewald6e43ffd2015-03-25 18:55:39 +0000305 },
306
Nils Diewald7148c6f2015-05-04 15:07:53 +0000307
308 /**
309 * Focus on this menu.
310 */
Nils Diewald2fe12e12015-03-06 16:47:06 +0000311 focus : function () {
312 this._element.focus();
313 },
314
Nils Diewald7148c6f2015-05-04 15:07:53 +0000315
Nils Diewald59c02fc2015-03-07 01:29:09 +0000316 // mouse wheel treatment
317 _mousewheel : function (e) {
318 var delta = 0;
Nils Diewald5975d702015-03-09 17:45:42 +0000319 delta = e.deltaY / 120;
320 if (delta > 0)
Akrone4961b12017-05-10 21:04:46 +0200321 this.next();
Nils Diewald5975d702015-03-09 17:45:42 +0000322 else if (delta < 0)
Akrone4961b12017-05-10 21:04:46 +0200323 this.prev();
Nils Diewald59c02fc2015-03-07 01:29:09 +0000324 e.halt();
325 },
326
Akrona1159ff2018-07-22 13:28:31 +0200327 // touchmove treatment
328 _touch : function (e) {
329 var s = this.slider();
330 if (e.type === "touchstart") {
331 // s.active(true);
332 var t = e.touches[0];
333 this._lastTouch = t.clientY;
334 }
335 else if (e.type === "touchend") {
336 // s.active(false);
337 this._lastTouch = undefined;
Akrona1159ff2018-07-22 13:28:31 +0200338 }
339 else if (e.type === "touchmove") {
340 var t = e.touches[0];
341 // s.movetoRel(t.clientY - this._initTouch);
342 if ((this._lastTouch + 26) < t.clientY) {
343 this.screen(this.offset - 1);
344 this._lastTouch = t.clientY;
345 }
346 else if ((this._lastTouch - 26) > t.clientY) {
347 this.screen(this.offset + 1);
348 this._lastTouch = t.clientY;
349 }
350 e.halt();
351 };
352 },
Nils Diewald7148c6f2015-05-04 15:07:53 +0000353
Nils Diewald59c02fc2015-03-07 01:29:09 +0000354 // Arrow key and prefix treatment
Nils Diewald47f366b2015-04-15 20:06:35 +0000355 _keydown : function (e) {
Nils Diewald59c02fc2015-03-07 01:29:09 +0000356 var code = _codeFromEvent(e);
357
Nils Diewald59c02fc2015-03-07 01:29:09 +0000358 switch (code) {
359 case 27: // 'Esc'
Akrone4961b12017-05-10 21:04:46 +0200360 e.halt();
361 this.hide();
362 break;
Nils Diewald5975d702015-03-09 17:45:42 +0000363
Nils Diewald59c02fc2015-03-07 01:29:09 +0000364 case 38: // 'Up'
Akrone4961b12017-05-10 21:04:46 +0200365 e.halt();
366 this.prev();
367 break;
Nils Diewald5975d702015-03-09 17:45:42 +0000368 case 33: // 'Page up'
Akrone4961b12017-05-10 21:04:46 +0200369 e.halt();
370 this.pageUp();
371 break;
Nils Diewald5975d702015-03-09 17:45:42 +0000372 case 40: // 'Down'
Akrone4961b12017-05-10 21:04:46 +0200373 e.halt();
374 this.next();
375 break;
Nils Diewald5975d702015-03-09 17:45:42 +0000376 case 34: // 'Page down'
Akrone4961b12017-05-10 21:04:46 +0200377 e.halt();
378 this.pageDown();
379 break;
Nils Diewald5975d702015-03-09 17:45:42 +0000380 case 39: // 'Right'
Akrone4961b12017-05-10 21:04:46 +0200381 if (this._prefix.active())
382 break;
Nils Diewalde8518f82015-03-18 22:41:49 +0000383
Akrone4961b12017-05-10 21:04:46 +0200384 var item = this.liveItem(this.position);
385
386 if (item["further"] !== undefined) {
387 item["further"].bind(item).apply();
388 };
389
390 e.halt();
391 break;
Nils Diewald5975d702015-03-09 17:45:42 +0000392 case 13: // 'Enter'
393
Akrone4961b12017-05-10 21:04:46 +0200394 // Click on prefix
395 if (this._prefix.active())
396 this._prefix.onclick(e);
Nils Diewald5975d702015-03-09 17:45:42 +0000397
Akrone4961b12017-05-10 21:04:46 +0200398 // Click on item
399 else
400 this.liveItem(this.position).onclick(e);
401 e.halt();
402 break;
Nils Diewald59c02fc2015-03-07 01:29:09 +0000403 case 8: // 'Backspace'
Akrone4961b12017-05-10 21:04:46 +0200404 this._prefix.chop();
405 this.show();
406 e.halt();
407 break;
Nils Diewald47f366b2015-04-15 20:06:35 +0000408 };
409 },
Nils Diewald59c02fc2015-03-07 01:29:09 +0000410
Nils Diewald47f366b2015-04-15 20:06:35 +0000411 // Add characters to prefix
412 _keypress : function (e) {
Akron9c2f9382016-05-25 16:36:04 +0200413 if (e.charCode !== 0) {
Akrone4961b12017-05-10 21:04:46 +0200414 e.halt();
415 var c = String.fromCharCode(_codeFromEvent(e));
416
417 // Add prefix
418 this._prefix.add(c);
419 this.show();
Akron9c2f9382016-05-25 16:36:04 +0200420 };
Nils Diewald59c02fc2015-03-07 01:29:09 +0000421 },
422
Akron47c086c2016-05-18 21:22:06 +0200423 /**
Akron5240b8c2016-05-20 09:17:41 +0200424 * Show a screen with a given offset
425 * in the viewport.
Akron47c086c2016-05-18 21:22:06 +0200426 */
427 screen : function (nr) {
Akron3c2730f2016-05-24 15:08:29 +0200428 if (nr < 0) {
Akrone4961b12017-05-10 21:04:46 +0200429 nr = 0
Akron3c2730f2016-05-24 15:08:29 +0200430 }
Akron6ac58442016-05-24 16:52:29 +0200431 else if (nr > (this.liveLength() - this.limit())) {
Akrone4961b12017-05-10 21:04:46 +0200432 nr = (this.liveLength() - this.limit());
Akron3c2730f2016-05-24 15:08:29 +0200433 };
434
Akron9c4d1ae2016-05-25 21:43:22 +0200435 if (this.offset === nr)
Akrone4961b12017-05-10 21:04:46 +0200436 return;
Akron5a1f5bb2016-05-23 22:00:39 +0200437
Akron47c086c2016-05-18 21:22:06 +0200438 this._showItems(nr);
439 },
440
Nils Diewald2fe12e12015-03-06 16:47:06 +0000441 /**
Nils Diewald7148c6f2015-05-04 15:07:53 +0000442 * Get the associated dom element.
Nils Diewald2fe12e12015-03-06 16:47:06 +0000443 */
Nils Diewald86dad5b2015-01-28 15:09:07 +0000444 element : function () {
445 return this._element;
446 },
447
Nils Diewald2fe12e12015-03-06 16:47:06 +0000448 /**
Nils Diewald7148c6f2015-05-04 15:07:53 +0000449 * Get the creator class for items
Nils Diewald2fe12e12015-03-06 16:47:06 +0000450 */
Nils Diewald86dad5b2015-01-28 15:09:07 +0000451 itemClass : function () {
452 return this._itemClass;
453 },
454
455 /**
Nils Diewald7148c6f2015-05-04 15:07:53 +0000456 * Get and set the numerical value
457 * for the maximum number of items visible.
Nils Diewald86dad5b2015-01-28 15:09:07 +0000458 */
459 limit : function (limit) {
Nils Diewald5975d702015-03-09 17:45:42 +0000460 if (arguments.length === 1) {
Akrone4961b12017-05-10 21:04:46 +0200461 if (this._limit !== limit) {
462 this._limit = limit;
463 this._slider.limit(limit).reInit();
464 };
465 return this;
Nils Diewald5975d702015-03-09 17:45:42 +0000466 };
Nils Diewald86dad5b2015-01-28 15:09:07 +0000467 return this._limit;
468 },
469
Nils Diewald7148c6f2015-05-04 15:07:53 +0000470
Nils Diewald86dad5b2015-01-28 15:09:07 +0000471 /**
472 * Upgrade this object to another object,
473 * while private data stays intact.
474 *
Nils Diewald2fe12e12015-03-06 16:47:06 +0000475 * @param {Object} An object with properties.
Nils Diewald86dad5b2015-01-28 15:09:07 +0000476 */
477 upgradeTo : function (props) {
478 for (var prop in props) {
Akrone4961b12017-05-10 21:04:46 +0200479 this[prop] = props[prop];
Nils Diewald86dad5b2015-01-28 15:09:07 +0000480 };
481 return this;
482 },
483
Nils Diewald7148c6f2015-05-04 15:07:53 +0000484
Nils Diewald86dad5b2015-01-28 15:09:07 +0000485 /**
Akron97752a72016-05-25 14:43:07 +0200486 * Filter the list and make it visible.
487 * This is always called once the prefix changes.
Nils Diewald86dad5b2015-01-28 15:09:07 +0000488 *
489 * @param {string} Prefix for filtering the list
490 */
Akron6ed13992016-05-23 18:06:05 +0200491 show : function (active) {
Nils Diewald86dad5b2015-01-28 15:09:07 +0000492
Akron5240b8c2016-05-20 09:17:41 +0200493 // show menu based on initial offset
Akron6ac58442016-05-24 16:52:29 +0200494 this._unmark(); // Unmark everything that was marked before
Akrona92fd8d2016-05-24 21:13:41 +0200495 this.removeItems();
Akron6ed13992016-05-23 18:06:05 +0200496
497 // Initialize the list
498 if (!this._initList()) {
Akron6ac58442016-05-24 16:52:29 +0200499
Akrone4961b12017-05-10 21:04:46 +0200500 // The prefix is not active
501 this._prefix.active(true);
Akron6ed13992016-05-23 18:06:05 +0200502
Akrone4961b12017-05-10 21:04:46 +0200503 // finally show the element
504 this._element.classList.add('visible');
505
506 return true;
Akron6ed13992016-05-23 18:06:05 +0200507 };
508
509 var offset = 0;
Nils Diewald86dad5b2015-01-28 15:09:07 +0000510
Akron9c2f9382016-05-25 16:36:04 +0200511 // Set a chosen value to active and move the viewport
Akron6ed13992016-05-23 18:06:05 +0200512 if (arguments.length === 1) {
513
Akrone4961b12017-05-10 21:04:46 +0200514 // Normalize active value
515 if (active < 0) {
516 active = 0;
517 }
518 else if (active >= this.liveLength()) {
519 active = this.liveLength() - 1;
520 };
Akron6ed13992016-05-23 18:06:05 +0200521
Akrone4961b12017-05-10 21:04:46 +0200522 // Item is outside the first viewport
523 if (active >= this._limit) {
524 offset = active;
525 if (offset > (this.liveLength() - this._limit)) {
526 offset = this.liveLength() - this._limit;
527 };
528 };
529
530 this.position = active;
Akron6ed13992016-05-23 18:06:05 +0200531 }
532
Akron9c2f9382016-05-25 16:36:04 +0200533 // Choose the first item
Akron6ed13992016-05-23 18:06:05 +0200534 else if (this._firstActive) {
Akrone4961b12017-05-10 21:04:46 +0200535 this.position = 0;
Akron47c086c2016-05-18 21:22:06 +0200536 }
Akroncb351d62016-05-19 23:10:33 +0200537
Akron9c2f9382016-05-25 16:36:04 +0200538 // Choose no item
Akron47c086c2016-05-18 21:22:06 +0200539 else {
Akrone4961b12017-05-10 21:04:46 +0200540 this.position = -1;
Akron6ed13992016-05-23 18:06:05 +0200541 };
542
Akron9c4d1ae2016-05-25 21:43:22 +0200543 this.offset = offset;
Akron6ed13992016-05-23 18:06:05 +0200544 this._showItems(offset); // Show new item list
545
546 // Make chosen value active
547 if (this.position !== -1) {
Akrone4961b12017-05-10 21:04:46 +0200548 this.liveItem(this.position).active(true);
Akron6ed13992016-05-23 18:06:05 +0200549 };
Akron37513a62015-11-17 01:07:11 +0100550
Akron5240b8c2016-05-20 09:17:41 +0200551 // The prefix is not active
Nils Diewalde8518f82015-03-18 22:41:49 +0000552 this._prefix.active(false);
Nils Diewald86dad5b2015-01-28 15:09:07 +0000553
Akron5240b8c2016-05-20 09:17:41 +0200554 // finally show the element
Akron6bb71582016-06-10 20:41:08 +0200555 this._element.classList.add('visible');
Nils Diewald2fe12e12015-03-06 16:47:06 +0000556
Nils Diewald86dad5b2015-01-28 15:09:07 +0000557 // Add classes for rolling menus
558 this._boundary(true);
Akron6bb71582016-06-10 20:41:08 +0200559
Nils Diewald59c02fc2015-03-07 01:29:09 +0000560 return true;
Nils Diewald86dad5b2015-01-28 15:09:07 +0000561 },
562
Nils Diewald7148c6f2015-05-04 15:07:53 +0000563
564 /**
565 * Hide the menu and call the onHide callback.
566 */
Nils Diewald2fe12e12015-03-06 16:47:06 +0000567 hide : function () {
Akrona92fd8d2016-05-24 21:13:41 +0200568 this.removeItems();
Nils Diewald7148c6f2015-05-04 15:07:53 +0000569 this._prefix.clear();
Nils Diewald5c5a7472015-04-02 22:13:38 +0000570 this.onHide();
Akron6bb71582016-06-10 20:41:08 +0200571 this._element.classList.remove('visible');
572
Nils Diewald6e43ffd2015-03-25 18:55:39 +0000573 /* this._element.blur(); */
Nils Diewald86dad5b2015-01-28 15:09:07 +0000574 },
575
Nils Diewald7148c6f2015-05-04 15:07:53 +0000576 /**
577 * Function released when the menu hides.
578 * This method is expected to be overridden.
579 */
Nils Diewald5c5a7472015-04-02 22:13:38 +0000580 onHide : function () {},
581
Nils Diewald86dad5b2015-01-28 15:09:07 +0000582 /**
583 * Get the prefix for filtering,
Nils Diewald2fe12e12015-03-06 16:47:06 +0000584 * e.g. &quot;ve&quot; for &quot;verb&quot;
Nils Diewald86dad5b2015-01-28 15:09:07 +0000585 */
Nils Diewald5975d702015-03-09 17:45:42 +0000586 prefix : function (pref) {
587 if (arguments.length === 1) {
Akrone4961b12017-05-10 21:04:46 +0200588 this._prefix.value(pref);
589 return this;
Nils Diewald5975d702015-03-09 17:45:42 +0000590 };
591 return this._prefix.value();
Nils Diewald86dad5b2015-01-28 15:09:07 +0000592 },
593
Akronc7448732016-04-27 14:06:58 +0200594 /**
595 * Get the lengthField object.
596 */
597 lengthField : function () {
598 return this._lengthField;
599 },
Nils Diewald7148c6f2015-05-04 15:07:53 +0000600
Akron5240b8c2016-05-20 09:17:41 +0200601 /**
602 * Get the associated slider object.
603 */
604 slider : function () {
605 return this._slider;
Nils Diewald86dad5b2015-01-28 15:09:07 +0000606 },
607
Akron5240b8c2016-05-20 09:17:41 +0200608
Nils Diewald86dad5b2015-01-28 15:09:07 +0000609 /**
610 * Delete all visible items from the menu element
611 */
Akrona92fd8d2016-05-24 21:13:41 +0200612 removeItems : function () {
Nils Diewald86dad5b2015-01-28 15:09:07 +0000613 var child;
Nils Diewald2fe12e12015-03-06 16:47:06 +0000614
Nils Diewald2fe12e12015-03-06 16:47:06 +0000615 // Remove all children
Nils Diewald5975d702015-03-09 17:45:42 +0000616 var children = this._element.childNodes;
Akronc7448732016-04-27 14:06:58 +0200617 // Leave the prefix and lengthField
Akron9905e2a2016-05-10 16:06:44 +0200618 for (var i = children.length - 1; i >= 3; i--) {
Akrone4961b12017-05-10 21:04:46 +0200619 this._element.removeChild(
620 children[i]
621 );
Nils Diewald5975d702015-03-09 17:45:42 +0000622 };
Nils Diewald86dad5b2015-01-28 15:09:07 +0000623 },
624
Nils Diewald2fe12e12015-03-06 16:47:06 +0000625 /**
626 * Get a specific item from the complete list
627 *
628 * @param {number} index of the list item
629 */
630 item : function (index) {
631 return this._items[index]
632 },
633
634
Nils Diewald86dad5b2015-01-28 15:09:07 +0000635 /**
636 * Get a specific item from the filtered list
637 *
638 * @param {number} index of the list item
Nils Diewald2fe12e12015-03-06 16:47:06 +0000639 * in the filtered list
Nils Diewald86dad5b2015-01-28 15:09:07 +0000640 */
641 liveItem : function (index) {
642 if (this._list === undefined)
Akrone4961b12017-05-10 21:04:46 +0200643 if (!this._initList())
644 return;
Nils Diewald86dad5b2015-01-28 15:09:07 +0000645
646 return this._items[this._list[index]];
647 },
648
Nils Diewald86dad5b2015-01-28 15:09:07 +0000649
650 /**
Akron5240b8c2016-05-20 09:17:41 +0200651 * Get a specific item from the viewport list
Nils Diewald86dad5b2015-01-28 15:09:07 +0000652 *
653 * @param {number} index of the list item
Nils Diewald2fe12e12015-03-06 16:47:06 +0000654 * in the visible list
Nils Diewald86dad5b2015-01-28 15:09:07 +0000655 */
656 shownItem : function (index) {
657 if (index >= this.limit())
Akrone4961b12017-05-10 21:04:46 +0200658 return;
Akron9c4d1ae2016-05-25 21:43:22 +0200659 return this.liveItem(this.offset + index);
Nils Diewald86dad5b2015-01-28 15:09:07 +0000660 },
661
662
Nils Diewald2fe12e12015-03-06 16:47:06 +0000663 /**
Akron9c4d1ae2016-05-25 21:43:22 +0200664 * Get the length of the full item list
Nils Diewald2fe12e12015-03-06 16:47:06 +0000665 */
666 length : function () {
667 return this._items.length;
668 },
669
670
671 /**
Akron5240b8c2016-05-20 09:17:41 +0200672 * Length of the filtered item list.
673 */
674 liveLength : function () {
675 if (this._list === undefined)
Akrone4961b12017-05-10 21:04:46 +0200676 this._initList();
Akron5240b8c2016-05-20 09:17:41 +0200677 return this._list.length;
678 },
679
680
681 /**
Nils Diewald2fe12e12015-03-06 16:47:06 +0000682 * Make the next item in the filtered menu active
Nils Diewald86dad5b2015-01-28 15:09:07 +0000683 */
684 next : function () {
Nils Diewald5975d702015-03-09 17:45:42 +0000685
Akronb38afb22016-05-25 19:30:01 +0200686 // No list
687 if (this.liveLength() === 0)
Akrone4961b12017-05-10 21:04:46 +0200688 return;
Akronb38afb22016-05-25 19:30:01 +0200689
Akron9c4d1ae2016-05-25 21:43:22 +0200690 // Deactivate old item
691 if (this.position !== -1 && !this._prefix.active()) {
Akrone4961b12017-05-10 21:04:46 +0200692 this.liveItem(this.position).active(false);
Akron9c4d1ae2016-05-25 21:43:22 +0200693 };
Nils Diewalde8518f82015-03-18 22:41:49 +0000694
Akron9c4d1ae2016-05-25 21:43:22 +0200695 // Get new active item
696 this.position++;
697 var newItem = this.liveItem(this.position);
Nils Diewald86dad5b2015-01-28 15:09:07 +0000698
Nils Diewald5975d702015-03-09 17:45:42 +0000699 // The next element is undefined - roll to top or to prefix
Nils Diewald86dad5b2015-01-28 15:09:07 +0000700 if (newItem === undefined) {
Nils Diewald5975d702015-03-09 17:45:42 +0000701
Akrone4961b12017-05-10 21:04:46 +0200702 // Activate prefix
703 var prefix = this._prefix;
Nils Diewald5975d702015-03-09 17:45:42 +0000704
Akrone4961b12017-05-10 21:04:46 +0200705 // Prefix is set and not active - choose!
706 if (prefix.isSet() && !prefix.active()) {
707 this.position--;
708 prefix.active(true);
709 return;
710 }
Akron9c4d1ae2016-05-25 21:43:22 +0200711
Akrone4961b12017-05-10 21:04:46 +0200712 // Choose first item
713 else {
714 newItem = this.liveItem(0);
715 // choose first item
716 this.position = 0;
717 this._showItems(0);
718 };
Nils Diewald86dad5b2015-01-28 15:09:07 +0000719 }
720
Akron5a1f5bb2016-05-23 22:00:39 +0200721 // The next element is after the viewport - roll down
Akron9c4d1ae2016-05-25 21:43:22 +0200722 else if (this.position >= (this.limit() + this.offset)) {
Akrone4961b12017-05-10 21:04:46 +0200723 this.screen(this.position - this.limit() + 1);
Akron5a1f5bb2016-05-23 22:00:39 +0200724 }
725
726 // The next element is before the viewport - roll up
Akron9c4d1ae2016-05-25 21:43:22 +0200727 else if (this.position <= this.offset) {
Akrone4961b12017-05-10 21:04:46 +0200728 this.screen(this.position);
Nils Diewald86dad5b2015-01-28 15:09:07 +0000729 };
Nils Diewald5975d702015-03-09 17:45:42 +0000730
731 this._prefix.active(false);
Nils Diewald86dad5b2015-01-28 15:09:07 +0000732 newItem.active(true);
733 },
734
Nils Diewalde8518f82015-03-18 22:41:49 +0000735 /*
Nils Diewald86dad5b2015-01-28 15:09:07 +0000736 * Make the previous item in the menu active
737 */
Nils Diewald86dad5b2015-01-28 15:09:07 +0000738 prev : function () {
Nils Diewald2d210752015-03-09 19:01:15 +0000739
Akronb38afb22016-05-25 19:30:01 +0200740 // No list
741 if (this.liveLength() === 0)
Akrone4961b12017-05-10 21:04:46 +0200742 return;
Akronb38afb22016-05-25 19:30:01 +0200743
Akron9c4d1ae2016-05-25 21:43:22 +0200744 // Deactivate old item
Nils Diewald2d210752015-03-09 19:01:15 +0000745 if (!this._prefix.active()) {
Akron9c4d1ae2016-05-25 21:43:22 +0200746
Akrone4961b12017-05-10 21:04:46 +0200747 // No active element set
748 if (this.position === -1) {
749 this.position = this.liveLength();
750 }
Akron9c4d1ae2016-05-25 21:43:22 +0200751
Akrone4961b12017-05-10 21:04:46 +0200752 // No active element set
753 else {
754 this.liveItem(this.position--).active(false);
755 };
Nils Diewald2d210752015-03-09 19:01:15 +0000756 };
757
Akron9c4d1ae2016-05-25 21:43:22 +0200758 // Get new active item
759 var newItem = this.liveItem(this.position);
Nils Diewald86dad5b2015-01-28 15:09:07 +0000760
761 // The previous element is undefined - roll to bottom
762 if (newItem === undefined) {
Nils Diewald5975d702015-03-09 17:45:42 +0000763
Akrone4961b12017-05-10 21:04:46 +0200764 // Activate prefix
765 var prefix = this._prefix;
766 var offset = this.liveLength() - this.limit();
767
768 // Normalize offset
769 offset = offset < 0 ? 0 : offset;
Nils Diewald2d210752015-03-09 19:01:15 +0000770
Akrone4961b12017-05-10 21:04:46 +0200771 // Choose the last item
772 this.position = this.liveLength() - 1;
773
774 // Prefix is set and not active - choose!
775 if (prefix.isSet() && !prefix.active()) {
776 this.position++;
777 prefix.active(true);
778 this.offset = offset;
779 return;
780 }
Nils Diewald2d210752015-03-09 19:01:15 +0000781
Akrone4961b12017-05-10 21:04:46 +0200782 // Choose last item
783 else {
784 newItem = this.liveItem(this.position);
785 this._showItems(offset);
786 };
Nils Diewald86dad5b2015-01-28 15:09:07 +0000787 }
788
Akron5a1f5bb2016-05-23 22:00:39 +0200789 // The previous element is before the view - roll up
Akron9c4d1ae2016-05-25 21:43:22 +0200790 else if (this.position < this.offset) {
Akrone4961b12017-05-10 21:04:46 +0200791 this.screen(this.position);
Akron5a1f5bb2016-05-23 22:00:39 +0200792 }
793
794 // The previous element is after the view - roll down
Akron9c4d1ae2016-05-25 21:43:22 +0200795 else if (this.position >= (this.limit() + this.offset)) {
Akrone4961b12017-05-10 21:04:46 +0200796 this.screen(this.position - this.limit() + 2);
Nils Diewald86dad5b2015-01-28 15:09:07 +0000797 };
Nils Diewald2fe12e12015-03-06 16:47:06 +0000798
Nils Diewald5975d702015-03-09 17:45:42 +0000799 this._prefix.active(false);
Nils Diewald86dad5b2015-01-28 15:09:07 +0000800 newItem.active(true);
801 },
Nils Diewald86dad5b2015-01-28 15:09:07 +0000802
Akron3c2730f2016-05-24 15:08:29 +0200803 /**
804 * Move the page up by limit!
805 */
806 pageUp : function () {
Akron9c4d1ae2016-05-25 21:43:22 +0200807 this.screen(this.offset - this.limit());
Akron3c2730f2016-05-24 15:08:29 +0200808 },
809
810
811 /**
812 * Move the page down by limit!
813 */
814 pageDown : function () {
Akron9c4d1ae2016-05-25 21:43:22 +0200815 this.screen(this.offset + this.limit());
Akron3c2730f2016-05-24 15:08:29 +0200816 },
817
Nils Diewald86dad5b2015-01-28 15:09:07 +0000818
Akron5240b8c2016-05-20 09:17:41 +0200819 // Unmark all items
820 _unmark : function () {
821 for (var i in this._list) {
Akrone4961b12017-05-10 21:04:46 +0200822 var item = this._items[this._list[i]];
823 item.lowlight();
824 item.active(false);
Akron5240b8c2016-05-20 09:17:41 +0200825 };
826 },
827
Akron5240b8c2016-05-20 09:17:41 +0200828 // Set boundary for viewport
829 _boundary : function (bool) {
Akron55a343b2018-04-06 19:57:36 +0200830 if (this._list.length === 0)
831 return;
Akron5240b8c2016-05-20 09:17:41 +0200832 this.item(this._list[0]).noMore(bool);
833 this.item(this._list[this._list.length - 1]).noMore(bool);
834 },
835
836
837 // Append Items that should be shown
838 _showItems : function (off) {
839
Akrona92fd8d2016-05-24 21:13:41 +0200840 // optimization: scroll down one step
Akron9c4d1ae2016-05-25 21:43:22 +0200841 if (this.offset === (off - 1)) {
Akrone4961b12017-05-10 21:04:46 +0200842 this.offset = off;
Akron9c4d1ae2016-05-25 21:43:22 +0200843
Akrone4961b12017-05-10 21:04:46 +0200844 // Remove the HTML node from the first item
845 // leave lengthField/prefix/slider
846 this._element.removeChild(this._element.children[3]);
847 var pos = this.offset + this.limit() - 1;
848 this._append(this._list[pos]);
Akrona92fd8d2016-05-24 21:13:41 +0200849 }
Akron5240b8c2016-05-20 09:17:41 +0200850
Akrona92fd8d2016-05-24 21:13:41 +0200851 // optimization: scroll up one step
Akron9c4d1ae2016-05-25 21:43:22 +0200852 else if (this.offset === (off + 1)) {
Akrone4961b12017-05-10 21:04:46 +0200853 this.offset = off;
Akron9c4d1ae2016-05-25 21:43:22 +0200854
Akrone4961b12017-05-10 21:04:46 +0200855 // Remove the HTML node from the last item
856 this._element.removeChild(this._element.lastChild);
Akron9c4d1ae2016-05-25 21:43:22 +0200857
Akrone4961b12017-05-10 21:04:46 +0200858 this._prepend(this._list[this.offset]);
Akrona92fd8d2016-05-24 21:13:41 +0200859 }
860 else {
Akrone4961b12017-05-10 21:04:46 +0200861 this.offset = off;
Akron5240b8c2016-05-20 09:17:41 +0200862
Akrone4961b12017-05-10 21:04:46 +0200863 // Remove all items
864 this.removeItems();
Akron5240b8c2016-05-20 09:17:41 +0200865
Akrone4961b12017-05-10 21:04:46 +0200866 // Use list
867 var shown = 0;
868 var i;
Akron5240b8c2016-05-20 09:17:41 +0200869
Akrone4961b12017-05-10 21:04:46 +0200870 for (i in this._list) {
Akrona92fd8d2016-05-24 21:13:41 +0200871
Akrone4961b12017-05-10 21:04:46 +0200872 // Don't show - it's before offset
873 shown++;
874 if (shown <= off)
875 continue;
Akrona92fd8d2016-05-24 21:13:41 +0200876
Akrone4961b12017-05-10 21:04:46 +0200877 var itemNr = this._list[i];
878 var item = this.item(itemNr);
879 this._append(itemNr);
880
881 if (shown >= (this.limit() + off))
882 break;
883 };
Akron5240b8c2016-05-20 09:17:41 +0200884 };
885
886 // set the slider to the new offset
Akron9c4d1ae2016-05-25 21:43:22 +0200887 this._slider.offset(this.offset);
Akron5240b8c2016-05-20 09:17:41 +0200888 },
889
890
891 // Append item to the shown list based on index
892 _append : function (i) {
893 var item = this.item(i);
894
895 // Highlight based on prefix
Akrona92fd8d2016-05-24 21:13:41 +0200896 if (this.prefix().length > 0) {
Akrone4961b12017-05-10 21:04:46 +0200897 item.highlight(this.prefix().toLowerCase());
Akrona92fd8d2016-05-24 21:13:41 +0200898 };
899
Akron5240b8c2016-05-20 09:17:41 +0200900
901 // Append element
902 this.element().appendChild(item.element());
903 },
904
905
906 // Prepend item to the shown list based on index
907 _prepend : function (i) {
908 var item = this.item(i);
909
910 // Highlight based on prefix
Akrona92fd8d2016-05-24 21:13:41 +0200911 if (this.prefix().length > 0) {
Akrone4961b12017-05-10 21:04:46 +0200912 item.highlight(this.prefix().toLowerCase());
Akrona92fd8d2016-05-24 21:13:41 +0200913 };
Akron5240b8c2016-05-20 09:17:41 +0200914
915 var e = this.element();
Akron9c4d1ae2016-05-25 21:43:22 +0200916
Akron5240b8c2016-05-20 09:17:41 +0200917 // Append element after lengthField/prefix/slider
918 e.insertBefore(
Akrone4961b12017-05-10 21:04:46 +0200919 item.element(),
920 e.children[3]
Akron5240b8c2016-05-20 09:17:41 +0200921 );
Nils Diewald2fe12e12015-03-06 16:47:06 +0000922 }
Nils Diewald86dad5b2015-01-28 15:09:07 +0000923 };
Nils Diewald0e6992a2015-04-14 20:13:52 +0000924});