blob: 4d9df49e5fb7f98da745099238e98cae67af9179 [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/*
Nils Diewald0e6992a2015-04-14 20:13:52 +00007 * TODO: space is not a valid prefix!
Akron3c2730f2016-05-24 15:08:29 +02008 * TODO: Show the slider briefly on move (whenever screen is called).
Akron9c4d1ae2016-05-25 21:43:22 +02009 * TODO: Ignore alt+ and strg+ key strokes.
Akron0b92f692016-05-25 22:37:13 +020010 * TODO: Should scroll to a chosen value after prefixing, if the chosen value is live
Nils Diewald2488d052015-04-09 21:46:02 +000011 */
Nils Diewald0e6992a2015-04-14 20:13:52 +000012define([
13 'menu/item',
14 'menu/prefix',
Akronc7448732016-04-27 14:06:58 +020015 'menu/lengthField',
Akron9905e2a2016-05-10 16:06:44 +020016 'menu/slider',
Nils Diewald0e6992a2015-04-14 20:13:52 +000017 'util'
18], function (defaultItemClass,
Akronc7448732016-04-27 14:06:58 +020019 defaultPrefixClass,
Akron9905e2a2016-05-10 16:06:44 +020020 defaultLengthFieldClass,
21 sliderClass) {
Nils Diewaldfda29d92015-01-22 17:28:01 +000022
Nils Diewald0e6992a2015-04-14 20:13:52 +000023 // Default maximum number of menu items
24 var menuLimit = 8;
25
26 function _codeFromEvent (e) {
27 if (e.charCode && (e.keyCode == 0))
28 return e.charCode
29 return e.keyCode;
Nils Diewald59c02fc2015-03-07 01:29:09 +000030 };
31
Nils Diewald86dad5b2015-01-28 15:09:07 +000032
33 /**
34 * List of items for drop down menu (complete).
35 * Only a sublist of the menu is filtered (live).
36 * Only a sublist of the filtered menu is visible (shown).
37 */
Nils Diewald0e6992a2015-04-14 20:13:52 +000038 return {
Nils Diewald86dad5b2015-01-28 15:09:07 +000039 /**
40 * Create new Menu based on the action prefix
41 * and a list of menu items.
42 *
43 * @this {Menu}
44 * @constructor
45 * @param {string} Context prefix
46 * @param {Array.<Array.<string>>} List of menu items
47 */
48 create : function (params) {
Nils Diewald0e6992a2015-04-14 20:13:52 +000049 return Object.create(this)._init(params);
Nils Diewald86dad5b2015-01-28 15:09:07 +000050 },
51
Akron5240b8c2016-05-20 09:17:41 +020052 // Initialize list
53 _init : function (itemClass, prefixClass, lengthFieldClass, params) {
Akrona92fd8d2016-05-24 21:13:41 +020054
Akron5240b8c2016-05-20 09:17:41 +020055 this._itemClass = itemClass || defaultItemClass;
56
57 // Add prefix object
58 if (prefixClass !== undefined) {
59 this._prefix = prefixClass.create();
60 }
61 else {
62 this._prefix = defaultPrefixClass.create();
63 };
64 this._prefix._menu = this;
65
66 // Add lengthField object
67 if (lengthFieldClass !== undefined) {
68 this._lengthField = lengthFieldClass.create();
69 }
70 else {
71 this._lengthField = defaultLengthFieldClass.create();
72 };
73 this._lengthField._menu = this;
74
75 // Initialize slider
76 this._slider = sliderClass.create(this);
77
78 // Create the element
Akron9c4d1ae2016-05-25 21:43:22 +020079 var el = document.createElement("ul");
80 with (el) {
Akron9c4d1ae2016-05-25 21:43:22 +020081 style.outline = 0;
82 setAttribute('tabindex', 0);
83 classList.add('menu', 'roll');
84 appendChild(this._prefix.element());
85 appendChild(this._lengthField.element());
86 appendChild(this._slider.element());
87 };
Akron5240b8c2016-05-20 09:17:41 +020088
89 // This has to be cleaned up later on
Akron9c4d1ae2016-05-25 21:43:22 +020090 el["menu"] = this;
Akron5240b8c2016-05-20 09:17:41 +020091
92 // Arrow keys
Akron9c4d1ae2016-05-25 21:43:22 +020093 el.addEventListener(
Akron5240b8c2016-05-20 09:17:41 +020094 'keydown',
Akrona92fd8d2016-05-24 21:13:41 +020095 this._keydown.bind(this),
Akron5240b8c2016-05-20 09:17:41 +020096 false
97 );
98
99 // Strings
Akron9c4d1ae2016-05-25 21:43:22 +0200100 el.addEventListener(
Akron5240b8c2016-05-20 09:17:41 +0200101 'keypress',
Akrona92fd8d2016-05-24 21:13:41 +0200102 this._keypress.bind(this),
Akron5240b8c2016-05-20 09:17:41 +0200103 false
104 );
105
106 // Mousewheel
Akron9c4d1ae2016-05-25 21:43:22 +0200107 el.addEventListener(
Akron5240b8c2016-05-20 09:17:41 +0200108 'wheel',
Akrona92fd8d2016-05-24 21:13:41 +0200109 this._mousewheel.bind(this),
Akron5240b8c2016-05-20 09:17:41 +0200110 false
111 );
Akron9c4d1ae2016-05-25 21:43:22 +0200112 this._element = el;
Akron5240b8c2016-05-20 09:17:41 +0200113
Akron5240b8c2016-05-20 09:17:41 +0200114 this._items = new Array();
Akron5240b8c2016-05-20 09:17:41 +0200115
Akron9c4d1ae2016-05-25 21:43:22 +0200116 var i = 0;
Akron5240b8c2016-05-20 09:17:41 +0200117 // Initialize item list based on parameters
118 for (i in params) {
119 var obj = this._itemClass.create(params[i]);
120
121 // This may become circular
122 obj["_menu"] = this;
123 this._lengthField.add(params[i]);
124 this._items.push(obj);
125 };
126
Akron9c4d1ae2016-05-25 21:43:22 +0200127 this._limit = menuLimit;
128 this._slider.length(this.liveLength())
129 .limit(this._limit)
130 .reInit();
Akron5240b8c2016-05-20 09:17:41 +0200131
Akron5240b8c2016-05-20 09:17:41 +0200132 this._firstActive = false; // Show the first item active always?
Akron9c4d1ae2016-05-25 21:43:22 +0200133 this.offset = 0;
134 this.position = 0;
Akron5240b8c2016-05-20 09:17:41 +0200135 return this;
136 },
137
138 // Initialize the item list
139 _initList : function () {
140
141 // Create a new list
142 if (this._list === undefined) {
143 this._list = [];
144 }
145 else if (this._list.length !== 0) {
146 this._boundary(false);
147 this._list.length = 0;
148 };
149
150 // Offset is initially zero
Akron9c4d1ae2016-05-25 21:43:22 +0200151 this.offset = 0;
Akron5240b8c2016-05-20 09:17:41 +0200152
153 // There is no prefix set
154 if (this.prefix().length <= 0) {
155
156 // add all items to the list and lowlight
Akron97752a72016-05-25 14:43:07 +0200157 var i = 0;
158 for (; i < this._items.length; i++) {
Akron5240b8c2016-05-20 09:17:41 +0200159 this._list.push(i);
160 this._items[i].lowlight();
161 };
162
Akron9c4d1ae2016-05-25 21:43:22 +0200163 this._slider.length(i).reInit();;
Akron97752a72016-05-25 14:43:07 +0200164
Akron5240b8c2016-05-20 09:17:41 +0200165 return true;
166 };
167
168 /*
169 * There is a prefix set, so filter the list!
170 */
171 var pos;
Akron6ffad5d2016-05-24 17:16:58 +0200172 var prefix = " " + this.prefix().toLowerCase();
Akron5240b8c2016-05-20 09:17:41 +0200173
174 // Iterate over all items and choose preferred matching items
175 // i.e. the matching happens at the word start
176 for (pos = 0; pos < this._items.length; pos++) {
Akron6ffad5d2016-05-24 17:16:58 +0200177 if ((this.item(pos).lcField().indexOf(prefix)) >= 0)
Akron5240b8c2016-05-20 09:17:41 +0200178 this._list.push(pos);
179 };
180
181 // The list is empty - so lower your expectations
182 // Iterate over all items and choose matching items
183 // i.e. the matching happens anywhere in the word
Akron6ffad5d2016-05-24 17:16:58 +0200184 prefix = prefix.substring(1);
Akron5240b8c2016-05-20 09:17:41 +0200185 if (this._list.length == 0) {
186 for (pos = 0; pos < this._items.length; pos++) {
Akron6ffad5d2016-05-24 17:16:58 +0200187 if ((this.item(pos).lcField().indexOf(prefix)) >= 0)
Akron5240b8c2016-05-20 09:17:41 +0200188 this._list.push(pos);
189 };
190 };
191
Akron9c4d1ae2016-05-25 21:43:22 +0200192 this._slider.length(this._list.length).reInit();
Akron6ed13992016-05-23 18:06:05 +0200193
Akron5240b8c2016-05-20 09:17:41 +0200194 // Filter was successful - yeah!
195 return this._list.length > 0 ? true : false;
196 },
197
198
Nils Diewald6e43ffd2015-03-25 18:55:39 +0000199 /**
200 * Destroy this menu
201 * (in case you don't trust the
202 * mark and sweep GC)!
203 */
204 destroy : function () {
Akron47c086c2016-05-18 21:22:06 +0200205
Akron5240b8c2016-05-20 09:17:41 +0200206 // Remove circular reference to "this" in menu
Nils Diewald6e43ffd2015-03-25 18:55:39 +0000207 if (this._element != undefined)
208 delete this._element["menu"];
209
Akron5240b8c2016-05-20 09:17:41 +0200210 // Remove circular reference to "this" in items
Nils Diewald6e43ffd2015-03-25 18:55:39 +0000211 for (var i = 0; i < this._items.length; i++) {
212 delete this._items[i]["_menu"];
213 };
Akron5240b8c2016-05-20 09:17:41 +0200214
215 // Remove circular reference to "this" in prefix
Nils Diewald5c5a7472015-04-02 22:13:38 +0000216 delete this._prefix['_menu'];
Akron5240b8c2016-05-20 09:17:41 +0200217 delete this._lengthField['_menu'];
218 delete this._slider['_menu'];
Nils Diewald6e43ffd2015-03-25 18:55:39 +0000219 },
220
Nils Diewald7148c6f2015-05-04 15:07:53 +0000221
222 /**
223 * Focus on this menu.
224 */
Nils Diewald2fe12e12015-03-06 16:47:06 +0000225 focus : function () {
226 this._element.focus();
227 },
228
Nils Diewald7148c6f2015-05-04 15:07:53 +0000229
Nils Diewald59c02fc2015-03-07 01:29:09 +0000230 // mouse wheel treatment
231 _mousewheel : function (e) {
232 var delta = 0;
Nils Diewald5975d702015-03-09 17:45:42 +0000233
234 delta = e.deltaY / 120;
235 if (delta > 0)
Nils Diewald59c02fc2015-03-07 01:29:09 +0000236 this.next();
Nils Diewald5975d702015-03-09 17:45:42 +0000237 else if (delta < 0)
Nils Diewald59c02fc2015-03-07 01:29:09 +0000238 this.prev();
Nils Diewald59c02fc2015-03-07 01:29:09 +0000239 e.halt();
240 },
241
Nils Diewald7148c6f2015-05-04 15:07:53 +0000242
Nils Diewald59c02fc2015-03-07 01:29:09 +0000243 // Arrow key and prefix treatment
Nils Diewald47f366b2015-04-15 20:06:35 +0000244 _keydown : function (e) {
Nils Diewald59c02fc2015-03-07 01:29:09 +0000245 var code = _codeFromEvent(e);
246
Nils Diewald59c02fc2015-03-07 01:29:09 +0000247 switch (code) {
248 case 27: // 'Esc'
249 e.halt();
250 this.hide();
251 break;
Nils Diewald5975d702015-03-09 17:45:42 +0000252
Nils Diewald59c02fc2015-03-07 01:29:09 +0000253 case 38: // 'Up'
254 e.halt();
255 this.prev();
256 break;
Nils Diewald5975d702015-03-09 17:45:42 +0000257 case 33: // 'Page up'
Nils Diewald59c02fc2015-03-07 01:29:09 +0000258 e.halt();
Akron3c2730f2016-05-24 15:08:29 +0200259 this.pageUp();
Nils Diewald5975d702015-03-09 17:45:42 +0000260 break;
261 case 40: // 'Down'
262 e.halt();
263 this.next();
264 break;
265 case 34: // 'Page down'
266 e.halt();
Akron3c2730f2016-05-24 15:08:29 +0200267 this.pageDown();
Nils Diewald5975d702015-03-09 17:45:42 +0000268 break;
269 case 39: // 'Right'
Nils Diewalde8518f82015-03-18 22:41:49 +0000270 if (this._prefix.active())
271 break;
272
Akronf86eaea2016-05-13 18:02:27 +0200273 var item = this.liveItem(this.position);
Akron5ef4fa02015-06-02 16:25:14 +0200274
Nils Diewald5975d702015-03-09 17:45:42 +0000275 if (item["further"] !== undefined) {
276 item["further"].bind(item).apply();
Nils Diewald5975d702015-03-09 17:45:42 +0000277 };
Akron5ef4fa02015-06-02 16:25:14 +0200278
279 e.halt();
Nils Diewald5975d702015-03-09 17:45:42 +0000280 break;
281 case 13: // 'Enter'
282
283 // Click on prefix
284 if (this._prefix.active())
Nils Diewald6e43ffd2015-03-25 18:55:39 +0000285 this._prefix.onclick(e);
Nils Diewald5975d702015-03-09 17:45:42 +0000286
287 // Click on item
288 else
Akronf86eaea2016-05-13 18:02:27 +0200289 this.liveItem(this.position).onclick(e);
Nils Diewald5975d702015-03-09 17:45:42 +0000290 e.halt();
Nils Diewald59c02fc2015-03-07 01:29:09 +0000291 break;
292 case 8: // 'Backspace'
Nils Diewald7148c6f2015-05-04 15:07:53 +0000293 this._prefix.chop();
Nils Diewald5975d702015-03-09 17:45:42 +0000294 this.show();
Nils Diewald59c02fc2015-03-07 01:29:09 +0000295 e.halt();
296 break;
Nils Diewald47f366b2015-04-15 20:06:35 +0000297 };
298 },
Nils Diewald59c02fc2015-03-07 01:29:09 +0000299
Nils Diewald47f366b2015-04-15 20:06:35 +0000300 // Add characters to prefix
301 _keypress : function (e) {
Akron9c2f9382016-05-25 16:36:04 +0200302 if (e.charCode !== 0) {
303 e.halt();
304 var c = String.fromCharCode(_codeFromEvent(e));
Nils Diewald5975d702015-03-09 17:45:42 +0000305
Akron9c2f9382016-05-25 16:36:04 +0200306 // Add prefix
307 this._prefix.add(c);
308 this.show();
309 };
Nils Diewald59c02fc2015-03-07 01:29:09 +0000310 },
311
Akron47c086c2016-05-18 21:22:06 +0200312 /**
Akron5240b8c2016-05-20 09:17:41 +0200313 * Show a screen with a given offset
314 * in the viewport.
Akron47c086c2016-05-18 21:22:06 +0200315 */
316 screen : function (nr) {
Akron3c2730f2016-05-24 15:08:29 +0200317 if (nr < 0) {
318 nr = 0
319 }
Akron6ac58442016-05-24 16:52:29 +0200320 else if (nr > (this.liveLength() - this.limit())) {
321 nr = (this.liveLength() - this.limit());
Akron3c2730f2016-05-24 15:08:29 +0200322 };
323
Akron9c4d1ae2016-05-25 21:43:22 +0200324 if (this.offset === nr)
Akron47c086c2016-05-18 21:22:06 +0200325 return;
Akron5a1f5bb2016-05-23 22:00:39 +0200326
Akron47c086c2016-05-18 21:22:06 +0200327 this._showItems(nr);
328 },
329
Nils Diewald2fe12e12015-03-06 16:47:06 +0000330 /**
Nils Diewald7148c6f2015-05-04 15:07:53 +0000331 * Get the associated dom element.
Nils Diewald2fe12e12015-03-06 16:47:06 +0000332 */
Nils Diewald86dad5b2015-01-28 15:09:07 +0000333 element : function () {
334 return this._element;
335 },
336
Nils Diewald2fe12e12015-03-06 16:47:06 +0000337 /**
Nils Diewald7148c6f2015-05-04 15:07:53 +0000338 * Get the creator class for items
Nils Diewald2fe12e12015-03-06 16:47:06 +0000339 */
Nils Diewald86dad5b2015-01-28 15:09:07 +0000340 itemClass : function () {
341 return this._itemClass;
342 },
343
344 /**
Nils Diewald7148c6f2015-05-04 15:07:53 +0000345 * Get and set the numerical value
346 * for the maximum number of items visible.
Nils Diewald86dad5b2015-01-28 15:09:07 +0000347 */
348 limit : function (limit) {
Nils Diewald5975d702015-03-09 17:45:42 +0000349 if (arguments.length === 1) {
Akron5240b8c2016-05-20 09:17:41 +0200350 if (this._limit !== limit) {
351 this._limit = limit;
Akron9c4d1ae2016-05-25 21:43:22 +0200352 this._slider.limit(limit).reInit();
Akron5240b8c2016-05-20 09:17:41 +0200353 };
Nils Diewald5975d702015-03-09 17:45:42 +0000354 return this;
355 };
Nils Diewald86dad5b2015-01-28 15:09:07 +0000356 return this._limit;
357 },
358
Nils Diewald7148c6f2015-05-04 15:07:53 +0000359
Nils Diewald86dad5b2015-01-28 15:09:07 +0000360 /**
361 * Upgrade this object to another object,
362 * while private data stays intact.
363 *
Nils Diewald2fe12e12015-03-06 16:47:06 +0000364 * @param {Object} An object with properties.
Nils Diewald86dad5b2015-01-28 15:09:07 +0000365 */
366 upgradeTo : function (props) {
367 for (var prop in props) {
368 this[prop] = props[prop];
369 };
370 return this;
371 },
372
Nils Diewald7148c6f2015-05-04 15:07:53 +0000373
Nils Diewald86dad5b2015-01-28 15:09:07 +0000374 /**
Akron97752a72016-05-25 14:43:07 +0200375 * Filter the list and make it visible.
376 * This is always called once the prefix changes.
Nils Diewald86dad5b2015-01-28 15:09:07 +0000377 *
378 * @param {string} Prefix for filtering the list
379 */
Akron6ed13992016-05-23 18:06:05 +0200380 show : function (active) {
Nils Diewald86dad5b2015-01-28 15:09:07 +0000381
Akron5240b8c2016-05-20 09:17:41 +0200382 // show menu based on initial offset
Akron6ac58442016-05-24 16:52:29 +0200383 this._unmark(); // Unmark everything that was marked before
Akrona92fd8d2016-05-24 21:13:41 +0200384 this.removeItems();
Akron6ed13992016-05-23 18:06:05 +0200385
386 // Initialize the list
387 if (!this._initList()) {
Akron6ac58442016-05-24 16:52:29 +0200388
Akron6ed13992016-05-23 18:06:05 +0200389 // The prefix is not active
390 this._prefix.active(true);
391
392 // finally show the element
Akron6bb71582016-06-10 20:41:08 +0200393 this._element.classList.add('visible');
Akron6ed13992016-05-23 18:06:05 +0200394
395 return true;
396 };
397
398 var offset = 0;
Nils Diewald86dad5b2015-01-28 15:09:07 +0000399
Akron9c2f9382016-05-25 16:36:04 +0200400 // Set a chosen value to active and move the viewport
Akron6ed13992016-05-23 18:06:05 +0200401 if (arguments.length === 1) {
402
403 // Normalize active value
Akron3c2730f2016-05-24 15:08:29 +0200404 if (active < 0) {
Akron6ed13992016-05-23 18:06:05 +0200405 active = 0;
Akron3c2730f2016-05-24 15:08:29 +0200406 }
Akron6ac58442016-05-24 16:52:29 +0200407 else if (active > this.liveLength()) {
408 active = this.liveLength() - 1;
Akron3c2730f2016-05-24 15:08:29 +0200409 };
Akron6ed13992016-05-23 18:06:05 +0200410
Akron0b92f692016-05-25 22:37:13 +0200411 // Item is outside the first viewport
412 if (active >= this._limit) {
Akron6ed13992016-05-23 18:06:05 +0200413 offset = active;
Akron6ac58442016-05-24 16:52:29 +0200414 if (offset > (this.liveLength() - this._limit)) {
415 offset = this.liveLength() - this._limit;
Akron6ed13992016-05-23 18:06:05 +0200416 };
417 };
418
419 this.position = active;
Akron6ed13992016-05-23 18:06:05 +0200420 }
421
Akron9c2f9382016-05-25 16:36:04 +0200422 // Choose the first item
Akron6ed13992016-05-23 18:06:05 +0200423 else if (this._firstActive) {
Akron47c086c2016-05-18 21:22:06 +0200424 this.position = 0;
Akron47c086c2016-05-18 21:22:06 +0200425 }
Akroncb351d62016-05-19 23:10:33 +0200426
Akron9c2f9382016-05-25 16:36:04 +0200427 // Choose no item
Akron47c086c2016-05-18 21:22:06 +0200428 else {
429 this.position = -1;
Akron6ed13992016-05-23 18:06:05 +0200430 };
431
Akron9c4d1ae2016-05-25 21:43:22 +0200432 this.offset = offset;
Akron6ed13992016-05-23 18:06:05 +0200433 this._showItems(offset); // Show new item list
434
435 // Make chosen value active
436 if (this.position !== -1) {
Akron3c2730f2016-05-24 15:08:29 +0200437 this.liveItem(this.position).active(true);
Akron6ed13992016-05-23 18:06:05 +0200438 };
Akron37513a62015-11-17 01:07:11 +0100439
Akron5240b8c2016-05-20 09:17:41 +0200440 // The prefix is not active
Nils Diewalde8518f82015-03-18 22:41:49 +0000441 this._prefix.active(false);
Nils Diewald86dad5b2015-01-28 15:09:07 +0000442
Akron5240b8c2016-05-20 09:17:41 +0200443 // finally show the element
Akron6bb71582016-06-10 20:41:08 +0200444 this._element.classList.add('visible');
Nils Diewald2fe12e12015-03-06 16:47:06 +0000445
Nils Diewald86dad5b2015-01-28 15:09:07 +0000446 // Add classes for rolling menus
447 this._boundary(true);
Akron6bb71582016-06-10 20:41:08 +0200448
Nils Diewald59c02fc2015-03-07 01:29:09 +0000449 return true;
Nils Diewald86dad5b2015-01-28 15:09:07 +0000450 },
451
Nils Diewald7148c6f2015-05-04 15:07:53 +0000452
453 /**
454 * Hide the menu and call the onHide callback.
455 */
Nils Diewald2fe12e12015-03-06 16:47:06 +0000456 hide : function () {
Akrona92fd8d2016-05-24 21:13:41 +0200457 this.removeItems();
Nils Diewald7148c6f2015-05-04 15:07:53 +0000458 this._prefix.clear();
Nils Diewald5c5a7472015-04-02 22:13:38 +0000459 this.onHide();
Akron6bb71582016-06-10 20:41:08 +0200460 this._element.classList.remove('visible');
461
Nils Diewald6e43ffd2015-03-25 18:55:39 +0000462 /* this._element.blur(); */
Nils Diewald86dad5b2015-01-28 15:09:07 +0000463 },
464
Nils Diewald7148c6f2015-05-04 15:07:53 +0000465 /**
466 * Function released when the menu hides.
467 * This method is expected to be overridden.
468 */
Nils Diewald5c5a7472015-04-02 22:13:38 +0000469 onHide : function () {},
470
Nils Diewald7148c6f2015-05-04 15:07:53 +0000471
Nils Diewald86dad5b2015-01-28 15:09:07 +0000472 /**
473 * Get the prefix for filtering,
Nils Diewald2fe12e12015-03-06 16:47:06 +0000474 * e.g. &quot;ve&quot; for &quot;verb&quot;
Nils Diewald86dad5b2015-01-28 15:09:07 +0000475 */
Nils Diewald5975d702015-03-09 17:45:42 +0000476 prefix : function (pref) {
477 if (arguments.length === 1) {
478 this._prefix.value(pref);
479 return this;
480 };
481 return this._prefix.value();
Nils Diewald86dad5b2015-01-28 15:09:07 +0000482 },
483
Akronc7448732016-04-27 14:06:58 +0200484 /**
485 * Get the lengthField object.
486 */
487 lengthField : function () {
488 return this._lengthField;
489 },
Nils Diewald7148c6f2015-05-04 15:07:53 +0000490
Akron5240b8c2016-05-20 09:17:41 +0200491 /**
492 * Get the associated slider object.
493 */
494 slider : function () {
495 return this._slider;
Nils Diewald86dad5b2015-01-28 15:09:07 +0000496 },
497
Akron5240b8c2016-05-20 09:17:41 +0200498
Nils Diewald86dad5b2015-01-28 15:09:07 +0000499 /**
500 * Delete all visible items from the menu element
501 */
Akrona92fd8d2016-05-24 21:13:41 +0200502 removeItems : function () {
Nils Diewald86dad5b2015-01-28 15:09:07 +0000503 var child;
Nils Diewald2fe12e12015-03-06 16:47:06 +0000504
Nils Diewald2fe12e12015-03-06 16:47:06 +0000505 // Remove all children
Nils Diewald5975d702015-03-09 17:45:42 +0000506 var children = this._element.childNodes;
Akronc7448732016-04-27 14:06:58 +0200507 // Leave the prefix and lengthField
Akron9905e2a2016-05-10 16:06:44 +0200508 for (var i = children.length - 1; i >= 3; i--) {
Nils Diewald5975d702015-03-09 17:45:42 +0000509 this._element.removeChild(
510 children[i]
511 );
512 };
Nils Diewald86dad5b2015-01-28 15:09:07 +0000513 },
514
Nils Diewald2fe12e12015-03-06 16:47:06 +0000515 /**
516 * Get a specific item from the complete list
517 *
518 * @param {number} index of the list item
519 */
520 item : function (index) {
521 return this._items[index]
522 },
523
524
Nils Diewald86dad5b2015-01-28 15:09:07 +0000525 /**
526 * Get a specific item from the filtered list
527 *
528 * @param {number} index of the list item
Nils Diewald2fe12e12015-03-06 16:47:06 +0000529 * in the filtered list
Nils Diewald86dad5b2015-01-28 15:09:07 +0000530 */
531 liveItem : function (index) {
532 if (this._list === undefined)
533 if (!this._initList())
534 return;
535
536 return this._items[this._list[index]];
537 },
538
Nils Diewald86dad5b2015-01-28 15:09:07 +0000539
540 /**
Akron5240b8c2016-05-20 09:17:41 +0200541 * Get a specific item from the viewport list
Nils Diewald86dad5b2015-01-28 15:09:07 +0000542 *
543 * @param {number} index of the list item
Nils Diewald2fe12e12015-03-06 16:47:06 +0000544 * in the visible list
Nils Diewald86dad5b2015-01-28 15:09:07 +0000545 */
546 shownItem : function (index) {
547 if (index >= this.limit())
548 return;
Akron9c4d1ae2016-05-25 21:43:22 +0200549 return this.liveItem(this.offset + index);
Nils Diewald86dad5b2015-01-28 15:09:07 +0000550 },
551
552
Nils Diewald2fe12e12015-03-06 16:47:06 +0000553 /**
Akron9c4d1ae2016-05-25 21:43:22 +0200554 * Get the length of the full item list
Nils Diewald2fe12e12015-03-06 16:47:06 +0000555 */
556 length : function () {
557 return this._items.length;
558 },
559
560
561 /**
Akron5240b8c2016-05-20 09:17:41 +0200562 * Length of the filtered item list.
563 */
564 liveLength : function () {
565 if (this._list === undefined)
566 this._initList();
567 return this._list.length;
568 },
569
570
571 /**
Nils Diewald2fe12e12015-03-06 16:47:06 +0000572 * Make the next item in the filtered menu active
Nils Diewald86dad5b2015-01-28 15:09:07 +0000573 */
574 next : function () {
Nils Diewald5975d702015-03-09 17:45:42 +0000575
Akronb38afb22016-05-25 19:30:01 +0200576 // No list
577 if (this.liveLength() === 0)
578 return;
579
Akron9c4d1ae2016-05-25 21:43:22 +0200580 // Deactivate old item
581 if (this.position !== -1 && !this._prefix.active()) {
582 this.liveItem(this.position).active(false);
583 };
Nils Diewalde8518f82015-03-18 22:41:49 +0000584
Akron9c4d1ae2016-05-25 21:43:22 +0200585 // Get new active item
586 this.position++;
587 var newItem = this.liveItem(this.position);
Nils Diewald86dad5b2015-01-28 15:09:07 +0000588
Nils Diewald5975d702015-03-09 17:45:42 +0000589 // The next element is undefined - roll to top or to prefix
Nils Diewald86dad5b2015-01-28 15:09:07 +0000590 if (newItem === undefined) {
Nils Diewald5975d702015-03-09 17:45:42 +0000591
592 // Activate prefix
593 var prefix = this._prefix;
594
Akron9c4d1ae2016-05-25 21:43:22 +0200595 // Prefix is set and not active - choose!
Nils Diewald5975d702015-03-09 17:45:42 +0000596 if (prefix.isSet() && !prefix.active()) {
Akronf86eaea2016-05-13 18:02:27 +0200597 this.position--;
Nils Diewald5975d702015-03-09 17:45:42 +0000598 prefix.active(true);
599 return;
600 }
Akron9c4d1ae2016-05-25 21:43:22 +0200601
602 // Choose first item
Nils Diewald5975d702015-03-09 17:45:42 +0000603 else {
Nils Diewald5975d702015-03-09 17:45:42 +0000604 newItem = this.liveItem(0);
Akron9c4d1ae2016-05-25 21:43:22 +0200605 // choose first item
606 this.position = 0;
Nils Diewald5975d702015-03-09 17:45:42 +0000607 this._showItems(0);
608 };
Nils Diewald86dad5b2015-01-28 15:09:07 +0000609 }
610
Akron5a1f5bb2016-05-23 22:00:39 +0200611 // The next element is after the viewport - roll down
Akron9c4d1ae2016-05-25 21:43:22 +0200612 else if (this.position >= (this.limit() + this.offset)) {
Akron5a1f5bb2016-05-23 22:00:39 +0200613 this.screen(this.position - this.limit() + 1);
614 }
615
616 // The next element is before the viewport - roll up
Akron9c4d1ae2016-05-25 21:43:22 +0200617 else if (this.position <= this.offset) {
Akron5a1f5bb2016-05-23 22:00:39 +0200618 this.screen(this.position);
Nils Diewald86dad5b2015-01-28 15:09:07 +0000619 };
Nils Diewald5975d702015-03-09 17:45:42 +0000620
621 this._prefix.active(false);
Nils Diewald86dad5b2015-01-28 15:09:07 +0000622 newItem.active(true);
623 },
624
Nils Diewalde8518f82015-03-18 22:41:49 +0000625 /*
Nils Diewald86dad5b2015-01-28 15:09:07 +0000626 * Make the previous item in the menu active
627 */
Nils Diewald86dad5b2015-01-28 15:09:07 +0000628 prev : function () {
Nils Diewald2d210752015-03-09 19:01:15 +0000629
Akronb38afb22016-05-25 19:30:01 +0200630 // No list
631 if (this.liveLength() === 0)
632 return;
633
Akron9c4d1ae2016-05-25 21:43:22 +0200634 // Deactivate old item
Nils Diewald2d210752015-03-09 19:01:15 +0000635 if (!this._prefix.active()) {
Akron9c4d1ae2016-05-25 21:43:22 +0200636
637 // No active element set
638 if (this.position === -1) {
639 this.position = this.liveLength();
640 }
641
642 // No active element set
643 else {
644 this.liveItem(this.position--).active(false);
645 };
Nils Diewald2d210752015-03-09 19:01:15 +0000646 };
647
Akron9c4d1ae2016-05-25 21:43:22 +0200648 // Get new active item
649 var newItem = this.liveItem(this.position);
Nils Diewald86dad5b2015-01-28 15:09:07 +0000650
651 // The previous element is undefined - roll to bottom
652 if (newItem === undefined) {
Nils Diewald5975d702015-03-09 17:45:42 +0000653
654 // Activate prefix
655 var prefix = this._prefix;
Akrona92fd8d2016-05-24 21:13:41 +0200656 var offset = this.liveLength() - this.limit();
Nils Diewald2d210752015-03-09 19:01:15 +0000657
658 // Normalize offset
Akrona92fd8d2016-05-24 21:13:41 +0200659 offset = offset < 0 ? 0 : offset;
Nils Diewald2d210752015-03-09 19:01:15 +0000660
Akron9c4d1ae2016-05-25 21:43:22 +0200661 // Choose the last item
Akronf86eaea2016-05-13 18:02:27 +0200662 this.position = this.liveLength() - 1;
Nils Diewald5975d702015-03-09 17:45:42 +0000663
Akron9c4d1ae2016-05-25 21:43:22 +0200664 // Prefix is set and not active - choose!
Nils Diewald5975d702015-03-09 17:45:42 +0000665 if (prefix.isSet() && !prefix.active()) {
Akronf86eaea2016-05-13 18:02:27 +0200666 this.position++;
Nils Diewald5975d702015-03-09 17:45:42 +0000667 prefix.active(true);
Akron9c4d1ae2016-05-25 21:43:22 +0200668 this.offset = offset;
Nils Diewald5975d702015-03-09 17:45:42 +0000669 return;
670 }
Akron9c4d1ae2016-05-25 21:43:22 +0200671
672 // Choose last item
Nils Diewald5975d702015-03-09 17:45:42 +0000673 else {
Akronf86eaea2016-05-13 18:02:27 +0200674 newItem = this.liveItem(this.position);
Akrona92fd8d2016-05-24 21:13:41 +0200675 this._showItems(offset);
Nils Diewald5975d702015-03-09 17:45:42 +0000676 };
Nils Diewald86dad5b2015-01-28 15:09:07 +0000677 }
678
Akron5a1f5bb2016-05-23 22:00:39 +0200679 // The previous element is before the view - roll up
Akron9c4d1ae2016-05-25 21:43:22 +0200680 else if (this.position < this.offset) {
Akron5a1f5bb2016-05-23 22:00:39 +0200681 this.screen(this.position);
682 }
683
684 // The previous element is after the view - roll down
Akron9c4d1ae2016-05-25 21:43:22 +0200685 else if (this.position >= (this.limit() + this.offset)) {
Akron5a1f5bb2016-05-23 22:00:39 +0200686 this.screen(this.position - this.limit() + 2);
Nils Diewald86dad5b2015-01-28 15:09:07 +0000687 };
Nils Diewald2fe12e12015-03-06 16:47:06 +0000688
Nils Diewald5975d702015-03-09 17:45:42 +0000689 this._prefix.active(false);
Nils Diewald86dad5b2015-01-28 15:09:07 +0000690 newItem.active(true);
691 },
Nils Diewald86dad5b2015-01-28 15:09:07 +0000692
Akron3c2730f2016-05-24 15:08:29 +0200693 /**
694 * Move the page up by limit!
695 */
696 pageUp : function () {
Akron9c4d1ae2016-05-25 21:43:22 +0200697 this.screen(this.offset - this.limit());
Akron3c2730f2016-05-24 15:08:29 +0200698 },
699
700
701 /**
702 * Move the page down by limit!
703 */
704 pageDown : function () {
Akron9c4d1ae2016-05-25 21:43:22 +0200705 this.screen(this.offset + this.limit());
Akron3c2730f2016-05-24 15:08:29 +0200706 },
707
Nils Diewald86dad5b2015-01-28 15:09:07 +0000708
Akron5240b8c2016-05-20 09:17:41 +0200709 // Unmark all items
710 _unmark : function () {
711 for (var i in this._list) {
712 var item = this._items[this._list[i]];
713 item.lowlight();
714 item.active(false);
715 };
716 },
717
Akron5240b8c2016-05-20 09:17:41 +0200718 // Set boundary for viewport
719 _boundary : function (bool) {
720 this.item(this._list[0]).noMore(bool);
721 this.item(this._list[this._list.length - 1]).noMore(bool);
722 },
723
724
725 // Append Items that should be shown
726 _showItems : function (off) {
727
Akrona92fd8d2016-05-24 21:13:41 +0200728 // optimization: scroll down one step
Akron9c4d1ae2016-05-25 21:43:22 +0200729 if (this.offset === (off - 1)) {
730 this.offset = off;
731
732 // Remove the HTML node from the first item
733 // leave lengthField/prefix/slider
734 this._element.removeChild(this._element.children[3]);
735 var pos = this.offset + this.limit() - 1;
Akrona92fd8d2016-05-24 21:13:41 +0200736 this._append(this._list[pos]);
737 }
Akron5240b8c2016-05-20 09:17:41 +0200738
Akrona92fd8d2016-05-24 21:13:41 +0200739 // optimization: scroll up one step
Akron9c4d1ae2016-05-25 21:43:22 +0200740 else if (this.offset === (off + 1)) {
741 this.offset = off;
742
743 // Remove the HTML node from the last item
744 this._element.removeChild(this._element.lastChild);
745
746 this._prepend(this._list[this.offset]);
Akrona92fd8d2016-05-24 21:13:41 +0200747 }
748 else {
Akron9c4d1ae2016-05-25 21:43:22 +0200749 this.offset = off;
Akron5240b8c2016-05-20 09:17:41 +0200750
Akrona92fd8d2016-05-24 21:13:41 +0200751 // Remove all items
752 this.removeItems();
Akron5240b8c2016-05-20 09:17:41 +0200753
Akrona92fd8d2016-05-24 21:13:41 +0200754 // Use list
755 var shown = 0;
756 var i;
Akron5240b8c2016-05-20 09:17:41 +0200757
Akrona92fd8d2016-05-24 21:13:41 +0200758 for (i in this._list) {
759
760 // Don't show - it's before offset
761 shown++;
762 if (shown <= off)
763 continue;
764
765 var itemNr = this._list[i];
766 var item = this.item(itemNr);
767 this._append(itemNr);
768
769 if (shown >= (this.limit() + off))
770 break;
771 };
Akron5240b8c2016-05-20 09:17:41 +0200772 };
773
774 // set the slider to the new offset
Akron9c4d1ae2016-05-25 21:43:22 +0200775 this._slider.offset(this.offset);
Akron5240b8c2016-05-20 09:17:41 +0200776 },
777
778
779 // Append item to the shown list based on index
780 _append : function (i) {
781 var item = this.item(i);
782
783 // Highlight based on prefix
Akrona92fd8d2016-05-24 21:13:41 +0200784 if (this.prefix().length > 0) {
Akron6ffad5d2016-05-24 17:16:58 +0200785 item.highlight(this.prefix().toLowerCase());
Akrona92fd8d2016-05-24 21:13:41 +0200786 };
787
Akron5240b8c2016-05-20 09:17:41 +0200788
789 // Append element
790 this.element().appendChild(item.element());
791 },
792
793
794 // Prepend item to the shown list based on index
795 _prepend : function (i) {
796 var item = this.item(i);
797
798 // Highlight based on prefix
Akrona92fd8d2016-05-24 21:13:41 +0200799 if (this.prefix().length > 0) {
Akron6ffad5d2016-05-24 17:16:58 +0200800 item.highlight(this.prefix().toLowerCase());
Akrona92fd8d2016-05-24 21:13:41 +0200801 };
Akron5240b8c2016-05-20 09:17:41 +0200802
803 var e = this.element();
Akron9c4d1ae2016-05-25 21:43:22 +0200804
Akron5240b8c2016-05-20 09:17:41 +0200805 // Append element after lengthField/prefix/slider
806 e.insertBefore(
807 item.element(),
808 e.children[3]
809 );
Nils Diewald2fe12e12015-03-06 16:47:06 +0000810 }
Nils Diewald86dad5b2015-01-28 15:09:07 +0000811 };
Nils Diewald0e6992a2015-04-14 20:13:52 +0000812});