Skip to content
Snippets Groups Projects
Commit d3358130 authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Latest version of autocomplete.js

parent 4dd81519
No related merge requests found
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
/** /**
* vufind.typeahead.js 0.3 * vufind.typeahead.js 0.5
* ~ @crhallberg * ~ @crhallberg
*/ */
(function ( $ ) { (function ( $ ) {
...@@ -25,28 +25,38 @@ ...@@ -25,28 +25,38 @@
function createList(data, input) { function createList(data, input) {
var shell = $('<div/>'); var shell = $('<div/>');
for (var i=0, len=Math.min(options.maxResults, data.length); i<len; i++) { var length = Math.min(options.maxResults, data.length);
input.data('length', length);
for (var i=0; i<length; i++) {
if (typeof data[i] === 'string') { if (typeof data[i] === 'string') {
data[i] = {val: data[i]}; data[i] = {val: data[i]};
} }
var content = data[i].val; var content = data[i].val;
if (options.highlight) { if (options.highlight) {
var regex = new RegExp('('+input.val()+')', 'ig'); // escape term for regex
// https://github.com/sindresorhus/escape-string-regexp/blob/master/index.js
var escapedTerm = input.val().replace(/[|\\{}()[\]^$+*?.]/g, '\\$&');
var regex = new RegExp('('+escapedTerm+')', 'ig');
content = content.replace(regex, '<b>$1</b>'); content = content.replace(regex, '<b>$1</b>');
} }
var item = typeof data[i].href === 'undefined' var item = typeof data[i].href === 'undefined'
? $('<div/>').addClass('item') ? $('<div/>')
.attr('data-value', data[i].val) : $('<a/>').attr('href', data[i].href);
.html(content) item.attr('data-index', i+0)
: $('<a/>').attr('href', data[i].href) .attr('data-value', data[i].val)
.attr('data-value', data[i].val) .addClass('item')
.html(content) .html(content)
.mouseover(function() {
$.fn.autocomplete.element.find('.item.selected').removeClass('selected');
$(this).addClass('selected');
input.data('selected', this.dataset.index);
});
if (typeof data[i].description !== 'undefined') { if (typeof data[i].description !== 'undefined') {
item.append($('<small/>').text(data[i].description)); item.append($('<small/>').text(data[i].description));
} }
shell.append(item); shell.append(item);
} }
$.fn.autocomplete.element.html(shell.html()); $.fn.autocomplete.element.html(shell);
$.fn.autocomplete.element.find('.item').mousedown(function() { $.fn.autocomplete.element.find('.item').mousedown(function() {
populate($(this).attr('data-value'), input, {mouse: true}) populate($(this).attr('data-value'), input, {mouse: true})
}); });
...@@ -61,7 +71,7 @@ ...@@ -61,7 +71,7 @@
show(); show();
align(input, $.fn.autocomplete.element); align(input, $.fn.autocomplete.element);
var term = input.val(); var term = input.val();
var cid = parseInt(input.data('cache-id')); var cid = input.data('cache-id');
if (options.cache && typeof $.fn.autocomplete.cache[cid][term] !== "undefined") { if (options.cache && typeof $.fn.autocomplete.cache[cid][term] !== "undefined") {
if ($.fn.autocomplete.cache[cid][term].length === 0) { if ($.fn.autocomplete.cache[cid][term].length === 0) {
hide(); hide();
...@@ -108,6 +118,7 @@ ...@@ -108,6 +118,7 @@
} }
input.data('selected', -1); input.data('selected', -1);
input.data('length', 0);
if (options.cache) { if (options.cache) {
var cid = Math.floor(Math.random()*1000); var cid = Math.floor(Math.random()*1000);
...@@ -129,34 +140,37 @@ ...@@ -129,34 +140,37 @@
search(input, element); search(input, element);
}); });
input.keyup(function(event) { input.keyup(function(event) {
// Ignore navigation keys
// - Ignore control functions
if (event.ctrlKey) { if (event.ctrlKey) {
return; return;
} }
// - Function keys (F1 - F15)
if (112 <= event.which && event.which <= 126) {
return;
}
switch (event.which) { switch (event.which) {
case 37: case 9: // tab
case 13: // enter
case 16: // shift
case 20: // caps lock
case 27: // esc
case 33: // page up
case 34: // page down
case 35: // end
case 36: // home
case 37: // arrows
case 38: case 38:
case 39: case 39:
case 9: case 40:
case 13: { case 45: // insert
case 144: // num lock
case 145: // scroll lock
case 19: { // pause/break
return; return;
} }
case 40: {
if ($(this).data('selected') === -1) {
search(input, element)
return;
}
}
default: { default: {
if ( search(input, element);
event.which === 8 || // backspace
event.which === 46 || // delete
(event.which >= 48 && // letters
event.which <= 90) ||
(event.which >= 96 && // numpad
event.which <= 111)
) {
search(input, element);
}
} }
} }
}); });
...@@ -178,9 +192,10 @@ ...@@ -178,9 +192,10 @@
break; break;
} }
case 40: { case 40: {
show();
event.preventDefault(); event.preventDefault();
if (position < options.maxResults) { if ($.fn.autocomplete.element.hasClass(options.hidingClass)) {
search(input, element);
} else if (position < input.data('length')-1) {
position++; position++;
element.find('.item.selected').removeClass('selected'); element.find('.item.selected').removeClass('selected');
element.find('.item:eq('+position+')').addClass('selected'); element.find('.item:eq('+position+')').addClass('selected');
...@@ -199,13 +214,14 @@ ...@@ -199,13 +214,14 @@
} else { } else {
populate(selected.attr('data-value'), $(this), element, {key: true}); populate(selected.attr('data-value'), $(this), element, {key: true});
element.find('.item.selected').removeClass('selected'); element.find('.item.selected').removeClass('selected');
$(this).data('selected', -1);
} }
} }
break; break;
} }
// hide on escape // hide on escape
case 27: { case 27: {
hide(element); hide();
$(this).data('selected', -1); $(this).data('selected', -1);
break; break;
} }
...@@ -260,8 +276,7 @@ ...@@ -260,8 +276,7 @@
highlight: true, highlight: true,
loadingString: 'Loading...', loadingString: 'Loading...',
maxResults: 20, maxResults: 20,
minLength: 3, minLength: 3
minResults: 1
}; };
var xhr = false; var xhr = false;
......
...@@ -304,7 +304,6 @@ function setupAutocomplete() { ...@@ -304,7 +304,6 @@ function setupAutocomplete() {
maxResults: 10, maxResults: 10,
loadingString: VuFind.translate('loading')+'...', loadingString: VuFind.translate('loading')+'...',
handler: function(query, cb) { handler: function(query, cb) {
// cb('1,2,3,4,5,6,7,8,9,10'.split(','));
var searcher = extractClassParams(op); var searcher = extractClassParams(op);
$.fn.autocomplete.ajax({ $.fn.autocomplete.ajax({
url: VuFind.getPath() + '/AJAX/JSON', url: VuFind.getPath() + '/AJAX/JSON',
...@@ -327,9 +326,6 @@ function setupAutocomplete() { ...@@ -327,9 +326,6 @@ function setupAutocomplete() {
} }
} }
}); });
},
onselection: function(value, input) {
$(input).closest('form').submit();
} }
}); });
}); });
......
...@@ -164,7 +164,7 @@ h3 { ...@@ -164,7 +164,7 @@ h3 {
cursor: pointer; cursor: pointer;
&:last-child {border: 0;} &:last-child {border: 0;}
&:hover, &.selected { &.selected {
background-color: @brand-primary; background-color: @brand-primary;
color: #fff; color: #fff;
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment