1
0
Fork 0

Fixed autocomplete bug

This commit is contained in:
magnolia-fan 2011-06-16 04:31:37 +04:00
parent 2f4411472a
commit 5bd2852894
3 changed files with 353 additions and 353 deletions

View File

@ -47,7 +47,7 @@ class ArtistController < ApplicationController
return render :nothing => true if autocomplete.nil? return render :nothing => true if autocomplete.nil?
suggestions = [] suggestions = []
autocomplete["response"]["docs"].each do |doc| autocomplete["response"]["docs"].each do |doc|
suggestions << doc["artist"] unless suggestions.include?(doc["artist"]) suggestions << doc["artist"] unless suggestions.include?(doc["artist"]) or doc["artist"].nil?
end end
render :json => { render :json => {
:query => params[:query], :query => params[:query],

View File

@ -2,6 +2,7 @@ var Ajax = {
loadArtistData: function(name) { loadArtistData: function(name) {
$('#search-container input').attr('disabled', 'disabled').blur(); $('#search-container input').attr('disabled', 'disabled').blur();
$('#search-container img').show(); $('#search-container img').show();
console.log(1);
name = name.replace(' ', '+'); name = name.replace(' ', '+');
Ajax.setArchor('/artist/'+ name +'/'); Ajax.setArchor('/artist/'+ name +'/');
$.get('/artist/'+ name +'/', function(data){ $.get('/artist/'+ name +'/', function(data){

View File

@ -1,11 +1,11 @@
/** /**
* Ajax Autocomplete for jQuery, version 1.1.3 * Ajax Autocomplete for jQuery, version 1.1.3
* (c) 2010 Tomas Kirda * (c) 2010 Tomas Kirda
* *
* Ajax Autocomplete for jQuery is freely distributable under the terms of an MIT-style license. * Ajax Autocomplete for jQuery is freely distributable under the terms of an MIT-style license.
* For details, see the web site: http://www.devbridge.com/projects/autocomplete/jquery/ * For details, see the web site: http://www.devbridge.com/projects/autocomplete/jquery/
* *
* Last Review: 04/19/2010 * Last Review: 04/19/2010
*/ */
/*jslint onevar: true, evil: true, nomen: true, eqeqeq: true, bitwise: true, regexp: true, newcap: true, immed: true */ /*jslint onevar: true, evil: true, nomen: true, eqeqeq: true, bitwise: true, regexp: true, newcap: true, immed: true */
@ -13,380 +13,379 @@
(function($) { (function($) {
var reEscape = new RegExp('(\\' + ['/', '.', '*', '+', '?', '|', '(', ')', '[', ']', '{', '}', '\\'].join('|\\') + ')', 'g'); var reEscape = new RegExp('(\\' + ['/', '.', '*', '+', '?', '|', '(', ')', '[', ']', '{', '}', '\\'].join('|\\') + ')', 'g');
function fnFormatResult(value, data, currentValue) { function fnFormatResult(value, data, currentValue) {
var pattern = '(' + currentValue.replace(reEscape, '\\$1') + ')'; var pattern = '(' + currentValue.replace(reEscape, '\\$1') + ')';
return value.replace(new RegExp(pattern, 'gi'), '<strong>$1<\/strong>'); return value.replace(new RegExp(pattern, 'gi'), '<strong>$1<\/strong>');
} }
function Autocomplete(el, options) { function Autocomplete(el, options) {
this.el = $(el); this.el = $(el);
this.el.attr('autocomplete', 'off'); this.el.attr('autocomplete', 'off');
this.suggestions = []; this.suggestions = [];
this.data = []; this.data = [];
this.badQueries = []; this.badQueries = [];
this.selectedIndex = -1; this.selectedIndex = -1;
this.currentValue = this.el.val(); this.currentValue = this.el.val();
this.intervalId = 0; this.intervalId = 0;
this.cachedResponse = []; this.cachedResponse = [];
this.onChangeInterval = null; this.onChangeInterval = null;
this.ignoreValueChange = false; this.ignoreValueChange = false;
this.serviceUrl = options.serviceUrl; this.serviceUrl = options.serviceUrl;
this.isLocal = false; this.isLocal = false;
this.options = { this.options = {
autoSubmit: false, autoSubmit: false,
minChars: 1, minChars: 1,
maxHeight: 300, maxHeight: 300,
deferRequestBy: 0, deferRequestBy: 0,
width: 0, width: 0,
highlight: true, highlight: true,
params: {}, params: {},
fnFormatResult: fnFormatResult, fnFormatResult: fnFormatResult,
delimiter: null, delimiter: null,
zIndex: 9999 zIndex: 9999
}; };
this.initialize(); this.initialize();
this.setOptions(options); this.setOptions(options);
} }
$.fn.autocomplete = function(options) { $.fn.autocomplete = function(options) {
return new Autocomplete(this.get(0)||$('<input />'), options); return new Autocomplete(this.get(0)||$('<input />'), options);
}; };
Autocomplete.prototype = { Autocomplete.prototype = {
killerFn: null, killerFn: null,
initialize: function() { initialize: function() {
var me, uid, autocompleteElId; var me, uid, autocompleteElId;
me = this; me = this;
uid = Math.floor(Math.random()*0x100000).toString(16); uid = Math.floor(Math.random()*0x100000).toString(16);
autocompleteElId = 'Autocomplete_' + uid; autocompleteElId = 'Autocomplete_' + uid;
this.killerFn = function(e) { this.killerFn = function(e) {
if ($(e.target).parents('.autocomplete').size() === 0) { if ($(e.target).parents('.autocomplete').size() === 0) {
me.killSuggestions(); me.killSuggestions();
me.disableKillerFn(); me.disableKillerFn();
} }
}; };
if (!this.options.width) { this.options.width = this.el.width(); } if (!this.options.width) { this.options.width = this.el.width(); }
this.mainContainerId = 'AutocompleteContainter_' + uid; this.mainContainerId = 'AutocompleteContainter_' + uid;
$('<div class="autocomplete-container" id="' + this.mainContainerId + '" style="position:absolute;z-index:9999;"><div class="autocomplete-w1"><div class="autocomplete" id="' + autocompleteElId + '" style="display:none; width:300px;"></div></div></div>').appendTo('body'); $('<div class="autocomplete-container" id="' + this.mainContainerId + '" style="position:absolute;z-index:9999;"><div class="autocomplete-w1"><div class="autocomplete" id="' + autocompleteElId + '" style="display:none; width:300px;"></div></div></div>').appendTo('body');
this.container = $('#' + autocompleteElId); this.container = $('#' + autocompleteElId);
this.fixPosition(); this.fixPosition();
if (window.opera) { if (window.opera) {
this.el.keypress(function(e) { me.onKeyPress(e); }); this.el.keypress(function(e) { me.onKeyPress(e); });
} else { } else {
this.el.keydown(function(e) { me.onKeyPress(e); }); this.el.keydown(function(e) { me.onKeyPress(e); });
} }
this.el.keyup(function(e) { me.onKeyUp(e); }); this.el.keyup(function(e) { me.onKeyUp(e); });
this.el.blur(function() { me.enableKillerFn(); }); this.el.blur(function() { me.enableKillerFn(); });
this.el.focus(function() { me.fixPosition(); }); this.el.focus(function() { me.fixPosition(); });
}, },
setOptions: function(options){ setOptions: function(options){
var o = this.options; var o = this.options;
$.extend(o, options); $.extend(o, options);
if(o.lookup){ if(o.lookup){
this.isLocal = true; this.isLocal = true;
if($.isArray(o.lookup)){ o.lookup = { suggestions:o.lookup, data:[] }; } if($.isArray(o.lookup)){ o.lookup = { suggestions:o.lookup, data:[] }; }
} }
$('#'+this.mainContainerId).css({ zIndex:o.zIndex }); $('#'+this.mainContainerId).css({ zIndex:o.zIndex });
this.container.css({ maxHeight: o.maxHeight + 'px', width:o.width }); this.container.css({ maxHeight: o.maxHeight + 'px', width:o.width });
}, },
clearCache: function(){ clearCache: function(){
this.cachedResponse = []; this.cachedResponse = [];
this.badQueries = []; this.badQueries = [];
}, },
disable: function(){ disable: function(){
this.disabled = true; this.disabled = true;
}, },
enable: function(){ enable: function(){
this.disabled = false; this.disabled = false;
}, },
fixPosition: function() { fixPosition: function() {
var offset = this.el.offset(); var offset = this.el.offset();
$('#' + this.mainContainerId).css({ top: (offset.top + this.el.innerHeight()) + 'px', left: offset.left + 'px' }); $('#' + this.mainContainerId).css({ top: (offset.top + this.el.innerHeight()) + 'px', left: offset.left + 'px' });
}, },
enableKillerFn: function() { enableKillerFn: function() {
var me = this; var me = this;
$(document).bind('click', me.killerFn); $(document).bind('click', me.killerFn);
}, },
disableKillerFn: function() { disableKillerFn: function() {
var me = this; var me = this;
$(document).unbind('click', me.killerFn); $(document).unbind('click', me.killerFn);
}, },
killSuggestions: function() { killSuggestions: function() {
var me = this; var me = this;
this.stopKillSuggestions(); this.stopKillSuggestions();
this.intervalId = window.setInterval(function() { me.hide(); me.stopKillSuggestions(); }, 300); this.intervalId = window.setInterval(function() { me.hide(); me.stopKillSuggestions(); }, 300);
}, },
stopKillSuggestions: function() { stopKillSuggestions: function() {
window.clearInterval(this.intervalId); window.clearInterval(this.intervalId);
}, },
onKeyPress: function(e) { onKeyPress: function(e) {
if (this.disabled || !this.enabled) { return; } if (this.disabled || !this.enabled) { return; }
// return will exit the function // return will exit the function
// and event will not be prevented // and event will not be prevented
switch (e.keyCode) { switch (e.keyCode) {
case 27: //KEY_ESC: case 27: //KEY_ESC:
this.el.val(this.currentValue); this.el.val(this.currentValue);
this.hide(); this.hide();
break; break;
case 9: //KEY_TAB: case 9: //KEY_TAB:
case 13: //KEY_RETURN: case 13: //KEY_RETURN:
if (this.selectedIndex === -1) { if (this.selectedIndex === -1) {
this.hide(); this.hide();
return; return;
} }
this.select(this.selectedIndex); this.select(this.selectedIndex);
if(e.keyCode === 9){ return; } if(e.keyCode === 9){ return; }
break; break;
case 38: //KEY_UP: case 38: //KEY_UP:
this.moveUp(); this.moveUp();
break; break;
case 40: //KEY_DOWN: case 40: //KEY_DOWN:
this.moveDown(); this.moveDown();
break; break;
default: default:
return; return;
} }
e.stopImmediatePropagation(); e.stopImmediatePropagation();
e.preventDefault(); e.preventDefault();
}, },
onKeyUp: function(e) { onKeyUp: function(e) {
if(this.disabled){ return; } if(this.disabled){ return; }
switch (e.keyCode) { switch (e.keyCode) {
case 38: //KEY_UP: case 38: //KEY_UP:
case 40: //KEY_DOWN: case 40: //KEY_DOWN:
return; return;
} }
clearInterval(this.onChangeInterval); clearInterval(this.onChangeInterval);
if (this.currentValue !== this.el.val()) { if (this.currentValue !== this.el.val()) {
if (this.options.deferRequestBy > 0) { if (this.options.deferRequestBy > 0) {
// Defer lookup in case when value changes very quickly: // Defer lookup in case when value changes very quickly:
var me = this; var me = this;
this.onChangeInterval = setInterval(function() { me.onValueChange(); }, this.options.deferRequestBy); this.onChangeInterval = setInterval(function() { me.onValueChange(); }, this.options.deferRequestBy);
} else { } else {
this.onValueChange(); this.onValueChange();
} }
} }
}, },
onValueChange: function() { onValueChange: function() {
clearInterval(this.onChangeInterval); clearInterval(this.onChangeInterval);
this.currentValue = this.el.val(); this.currentValue = this.el.val();
var q = this.getQuery(this.currentValue); var q = this.getQuery(this.currentValue);
this.selectedIndex = -1; this.selectedIndex = -1;
if (this.ignoreValueChange) { if (this.ignoreValueChange) {
this.ignoreValueChange = false; this.ignoreValueChange = false;
return; return;
} }
if (q === '' || q.length < this.options.minChars) { if (q === '' || q.length < this.options.minChars) {
this.hide(); this.hide();
} else { } else {
this.getSuggestions(q); this.getSuggestions(q);
} }
}, },
getQuery: function(val) { getQuery: function(val) {
var d, arr; var d, arr;
d = this.options.delimiter; d = this.options.delimiter;
if (!d) { return $.trim(val); } if (!d) { return $.trim(val); }
arr = val.split(d); arr = val.split(d);
return $.trim(arr[arr.length - 1]); return $.trim(arr[arr.length - 1]);
}, },
getSuggestionsLocal: function(q) { getSuggestionsLocal: function(q) {
var ret, arr, len, val, i; var ret, arr, len, val, i;
arr = this.options.lookup; arr = this.options.lookup;
len = arr.suggestions.length; len = arr.suggestions.length;
ret = { suggestions:[], data:[] }; ret = { suggestions:[], data:[] };
q = q.toLowerCase(); q = q.toLowerCase();
for(i=0; i< len; i++){ for(i=0; i< len; i++){
val = arr.suggestions[i]; val = arr.suggestions[i];
if(val.toLowerCase().indexOf(q) === 0){ if(val.toLowerCase().indexOf(q) === 0){
ret.suggestions.push(val); ret.suggestions.push(val);
ret.data.push(arr.data[i]); ret.data.push(arr.data[i]);
} }
} }
return ret; return ret;
}, },
getSuggestions: function(q) { getSuggestions: function(q) {
var cr, me; var cr, me;
cr = this.isLocal ? this.getSuggestionsLocal(q) : this.cachedResponse[q]; cr = this.isLocal ? this.getSuggestionsLocal(q) : this.cachedResponse[q];
if (cr && $.isArray(cr.suggestions)) { if (cr && $.isArray(cr.suggestions)) {
this.suggestions = cr.suggestions; this.suggestions = cr.suggestions;
this.data = cr.data; this.data = cr.data;
this.suggest(); this.suggest();
} else if (!this.isBadQuery(q)) { } else if (!this.isBadQuery(q)) {
me = this; me = this;
me.options.params.query = q; me.options.params.query = q;
$.get(this.serviceUrl, me.options.params, function(txt) { me.processResponse(txt); }, 'text'); $.get(this.serviceUrl, me.options.params, function(txt) { me.processResponse(txt); }, 'text');
} }
}, },
isBadQuery: function(q) { isBadQuery: function(q) {
var i = this.badQueries.length; var i = this.badQueries.length;
while (i--) { while (i--) {
if (q.indexOf(this.badQueries[i]) === 0) { return true; } if (q.indexOf(this.badQueries[i]) === 0) { return true; }
} }
return false; return false;
}, },
hide: function() { hide: function() {
this.enabled = false; this.enabled = false;
this.selectedIndex = -1; this.selectedIndex = -1;
this.container.hide(); this.container.hide();
}, },
suggest: function() { suggest: function() {
if (this.suggestions.length === 0) { if (this.suggestions.length === 0) {
this.hide(); this.hide();
return; return;
} }
var me, len, div, f, v, i, s, mOver, mClick; var me, len, div, f, v, i, s, mOver, mClick;
me = this; me = this;
len = this.suggestions.length; len = this.suggestions.length;
f = this.options.fnFormatResult; f = this.options.fnFormatResult;
v = this.getQuery(this.currentValue); v = this.getQuery(this.currentValue);
mOver = function(xi) { return function() { me.activate(xi); }; }; mOver = function(xi) { return function() { me.activate(xi); }; };
mClick = function(xi) { return function() { me.select(xi); }; }; mClick = function(xi) { return function() { me.select(xi); }; };
this.container.hide().empty(); this.container.hide().empty();
for (i = 0; i < len; i++) {
s = this.suggestions[i]; for (i = 0; i < len; i++) {
if (typeof s == 'string') { s = this.suggestions[i];
div = $((me.selectedIndex === i ? '<div class="selected"' : '<div') + ' title="' + s + '">' + f(s, this.data[i], v) + '</div>'); div = $((me.selectedIndex === i ? '<div class="selected"' : '<div') + ' title="' + s + '">' + f(s, this.data[i], v) + '</div>');
div.mouseover(mOver(i)); div.mouseover(mOver(i));
div.click(mClick(i)); div.click(mClick(i));
this.container.append(div); this.container.append(div);
}
this.enabled = true;
this.container.show();
},
processResponse: function(text) {
var response;
try {
response = eval('(' + text + ')');
} catch (err) { return; }
if (!$.isArray(response.data)) { response.data = []; }
if(!this.options.noCache){
this.cachedResponse[response.query] = response;
if (response.suggestions.length === 0) { this.badQueries.push(response.query); }
}
if (response.query === this.getQuery(this.currentValue)) {
this.suggestions = response.suggestions;
this.data = response.data;
this.suggest();
}
},
activate: function(index) {
var divs, activeItem;
divs = this.container.children();
// Clear previous selection:
if (this.selectedIndex !== -1 && divs.length > this.selectedIndex) {
$(divs.get(this.selectedIndex)).removeClass();
}
this.selectedIndex = index;
if (this.selectedIndex !== -1 && divs.length > this.selectedIndex) {
activeItem = divs.get(this.selectedIndex);
$(activeItem).addClass('selected');
}
return activeItem;
},
deactivate: function(div, index) {
div.className = '';
if (this.selectedIndex === index) { this.selectedIndex = -1; }
},
select: function(i) {
var selectedValue, f;
selectedValue = this.suggestions[i];
if (selectedValue) {
this.el.val(selectedValue);
if (this.options.autoSubmit) {
f = this.el.parents('form');
if (f.length > 0) { f.get(0).submit(); }
}
this.ignoreValueChange = true;
this.hide();
this.onSelect(i);
}
},
moveUp: function() {
if (this.selectedIndex === -1) { return; }
if (this.selectedIndex === 0) {
this.container.children().get(0).className = '';
this.selectedIndex = -1;
this.el.val(this.currentValue);
return;
}
this.adjustScroll(this.selectedIndex - 1);
},
moveDown: function() {
if (this.selectedIndex === (this.suggestions.length - 1)) { return; }
this.adjustScroll(this.selectedIndex + 1);
},
adjustScroll: function(i) {
var activeItem, offsetTop, upperBound, lowerBound;
activeItem = this.activate(i);
offsetTop = activeItem.offsetTop;
upperBound = this.container.scrollTop();
lowerBound = upperBound + this.options.maxHeight - 25;
if (offsetTop < upperBound) {
this.container.scrollTop(offsetTop);
} else if (offsetTop > lowerBound) {
this.container.scrollTop(offsetTop - this.options.maxHeight + 25);
}
this.el.val(this.getValue(this.suggestions[i]));
},
onSelect: function(i) {
var me, fn, s, d;
me = this;
fn = me.options.onSelect;
s = me.suggestions[i];
d = me.data[i];
me.el.val(me.getValue(s));
if ($.isFunction(fn)) { fn(s, d, me.el); }
},
getValue: function(value){
var del, currVal, arr, me;
me = this;
del = me.options.delimiter;
if (!del) { return value; }
currVal = me.currentValue;
arr = currVal.split(del);
if (arr.length === 1) { return value; }
return currVal.substr(0, currVal.length - arr[arr.length - 1].length) + value;
} }
}
this.enabled = true;
this.container.show();
},
processResponse: function(text) { };
var response;
try {
response = eval('(' + text + ')');
} catch (err) { return; }
if (!$.isArray(response.data)) { response.data = []; }
if(!this.options.noCache){
this.cachedResponse[response.query] = response;
if (response.suggestions.length === 0) { this.badQueries.push(response.query); }
}
if (response.query === this.getQuery(this.currentValue)) {
this.suggestions = response.suggestions;
this.data = response.data;
this.suggest();
}
},
activate: function(index) {
var divs, activeItem;
divs = this.container.children();
// Clear previous selection:
if (this.selectedIndex !== -1 && divs.length > this.selectedIndex) {
$(divs.get(this.selectedIndex)).removeClass();
}
this.selectedIndex = index;
if (this.selectedIndex !== -1 && divs.length > this.selectedIndex) {
activeItem = divs.get(this.selectedIndex);
$(activeItem).addClass('selected');
}
return activeItem;
},
deactivate: function(div, index) {
div.className = '';
if (this.selectedIndex === index) { this.selectedIndex = -1; }
},
select: function(i) {
var selectedValue, f;
selectedValue = this.suggestions[i];
if (selectedValue) {
this.el.val(selectedValue);
if (this.options.autoSubmit) {
f = this.el.parents('form');
if (f.length > 0) { f.get(0).submit(); }
}
this.ignoreValueChange = true;
this.hide();
this.onSelect(i);
}
},
moveUp: function() {
if (this.selectedIndex === -1) { return; }
if (this.selectedIndex === 0) {
this.container.children().get(0).className = '';
this.selectedIndex = -1;
this.el.val(this.currentValue);
return;
}
this.adjustScroll(this.selectedIndex - 1);
},
moveDown: function() {
if (this.selectedIndex === (this.suggestions.length - 1)) { return; }
this.adjustScroll(this.selectedIndex + 1);
},
adjustScroll: function(i) {
var activeItem, offsetTop, upperBound, lowerBound;
activeItem = this.activate(i);
offsetTop = activeItem.offsetTop;
upperBound = this.container.scrollTop();
lowerBound = upperBound + this.options.maxHeight - 25;
if (offsetTop < upperBound) {
this.container.scrollTop(offsetTop);
} else if (offsetTop > lowerBound) {
this.container.scrollTop(offsetTop - this.options.maxHeight + 25);
}
this.el.val(this.getValue(this.suggestions[i]));
},
onSelect: function(i) {
var me, fn, s, d;
me = this;
fn = me.options.onSelect;
s = me.suggestions[i];
d = me.data[i];
me.el.val(me.getValue(s));
if ($.isFunction(fn)) { fn(s, d, me.el); }
},
getValue: function(value){
var del, currVal, arr, me;
me = this;
del = me.options.delimiter;
if (!del) { return value; }
currVal = me.currentValue;
arr = currVal.split(del);
if (arr.length === 1) { return value; }
return currVal.substr(0, currVal.length - arr[arr.length - 1].length) + value;
}
};
}(jQuery)); }(jQuery));