2012-04-03 11:14:47 +00:00
|
|
|
/*!
|
2010-01-14 17:23:11 +00:00
|
|
|
* jQuery UI Autocomplete @VERSION
|
|
|
|
*
|
2012-03-08 15:53:08 +00:00
|
|
|
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
2010-07-09 13:01:04 +00:00
|
|
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
|
|
* http://jquery.org/license
|
2010-01-14 17:23:11 +00:00
|
|
|
*
|
|
|
|
* http://docs.jquery.com/UI/Autocomplete
|
|
|
|
*
|
|
|
|
* Depends:
|
|
|
|
* jquery.ui.core.js
|
|
|
|
* jquery.ui.widget.js
|
2010-03-11 22:06:29 +00:00
|
|
|
* jquery.ui.position.js
|
2010-04-21 19:01:08 +00:00
|
|
|
* jquery.ui.menu.js
|
2010-01-14 17:23:11 +00:00
|
|
|
*/
|
2010-07-13 13:57:58 +00:00
|
|
|
(function( $, undefined ) {
|
2010-01-14 17:23:11 +00:00
|
|
|
|
2011-01-27 19:49:59 +00:00
|
|
|
// used to prevent race conditions with remote data sources
|
|
|
|
var requestIndex = 0;
|
|
|
|
|
2010-01-17 18:51:11 +00:00
|
|
|
$.widget( "ui.autocomplete", {
|
2011-05-28 19:39:55 +00:00
|
|
|
version: "@VERSION",
|
2011-01-23 22:55:53 +00:00
|
|
|
defaultElement: "<input>",
|
2010-01-14 17:23:11 +00:00
|
|
|
options: {
|
2010-07-21 18:54:20 +00:00
|
|
|
appendTo: "body",
|
2011-03-28 15:13:53 +00:00
|
|
|
autoFocus: false,
|
2010-07-19 13:28:04 +00:00
|
|
|
delay: 300,
|
2010-01-14 17:23:11 +00:00
|
|
|
minLength: 1,
|
2010-07-19 13:28:04 +00:00
|
|
|
position: {
|
|
|
|
my: "left top",
|
|
|
|
at: "left bottom",
|
|
|
|
collision: "none"
|
|
|
|
},
|
2011-04-25 12:10:39 +00:00
|
|
|
source: null,
|
|
|
|
|
|
|
|
// callbacks
|
|
|
|
change: null,
|
|
|
|
close: null,
|
|
|
|
focus: null,
|
|
|
|
open: null,
|
|
|
|
response: null,
|
|
|
|
search: null,
|
|
|
|
select: null
|
2010-01-14 17:23:11 +00:00
|
|
|
},
|
2010-12-17 16:15:17 +00:00
|
|
|
|
|
|
|
pending: 0,
|
|
|
|
|
2010-01-15 18:58:20 +00:00
|
|
|
_create: function() {
|
2010-03-11 03:28:00 +00:00
|
|
|
var self = this,
|
2011-10-17 12:09:53 +00:00
|
|
|
// Some browsers only repeat keydown events, not keypress events,
|
|
|
|
// so we use the suppressKeyPress flag to determine if we've already
|
|
|
|
// handled the keydown event. #7269
|
|
|
|
// Unfortunately the code for & in keypress is the same as the up arrow,
|
|
|
|
// so we use the suppressKeyPressRepeat flag to avoid handling keypress
|
|
|
|
// events when we know the keydown event was used to modify the
|
|
|
|
// search term. #7799
|
2011-05-11 03:24:21 +00:00
|
|
|
suppressKeyPress,
|
2011-10-17 12:09:53 +00:00
|
|
|
suppressKeyPressRepeat,
|
2011-05-11 03:24:21 +00:00
|
|
|
suppressInput;
|
2010-10-06 14:24:03 +00:00
|
|
|
|
2011-11-28 21:33:23 +00:00
|
|
|
this.isMultiLine = this.element.is( "textarea,[contenteditable]" );
|
2011-08-31 00:45:48 +00:00
|
|
|
this.valueMethod = this.element[ this.element.is( "input,textarea" ) ? "val" : "text" ];
|
2011-02-24 09:22:51 +00:00
|
|
|
|
2010-01-14 17:23:11 +00:00
|
|
|
this.element
|
2010-02-20 01:38:30 +00:00
|
|
|
.addClass( "ui-autocomplete-input" )
|
2010-01-17 18:51:11 +00:00
|
|
|
.attr( "autocomplete", "off" )
|
2010-01-14 17:23:11 +00:00
|
|
|
// TODO verify these actually work as intended
|
|
|
|
.attr({
|
|
|
|
role: "textbox",
|
2011-07-12 15:36:34 +00:00
|
|
|
"aria-autocomplete": "list",
|
|
|
|
"aria-haspopup": "true"
|
2010-01-14 17:23:11 +00:00
|
|
|
})
|
2010-01-17 18:51:11 +00:00
|
|
|
.bind( "keydown.autocomplete", function( event ) {
|
2011-07-29 18:12:34 +00:00
|
|
|
if ( self.options.disabled || self.element.prop( "readOnly" ) ) {
|
2011-05-27 12:35:18 +00:00
|
|
|
suppressKeyPress = true;
|
2011-05-11 03:24:21 +00:00
|
|
|
suppressInput = true;
|
2011-10-17 12:09:53 +00:00
|
|
|
suppressKeyPressRepeat = true;
|
2010-07-30 16:59:33 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-10-06 14:24:03 +00:00
|
|
|
suppressKeyPress = false;
|
2011-05-11 03:24:21 +00:00
|
|
|
suppressInput = false;
|
2011-10-17 12:09:53 +00:00
|
|
|
suppressKeyPressRepeat = false;
|
2010-01-14 17:23:11 +00:00
|
|
|
var keyCode = $.ui.keyCode;
|
2010-01-17 18:51:11 +00:00
|
|
|
switch( event.keyCode ) {
|
2010-01-14 17:23:11 +00:00
|
|
|
case keyCode.PAGE_UP:
|
2011-05-27 12:35:18 +00:00
|
|
|
suppressKeyPress = true;
|
2010-01-17 18:51:11 +00:00
|
|
|
self._move( "previousPage", event );
|
2010-01-14 17:23:11 +00:00
|
|
|
break;
|
|
|
|
case keyCode.PAGE_DOWN:
|
2011-05-27 12:35:18 +00:00
|
|
|
suppressKeyPress = true;
|
2010-01-17 18:51:11 +00:00
|
|
|
self._move( "nextPage", event );
|
2010-01-14 17:23:11 +00:00
|
|
|
break;
|
|
|
|
case keyCode.UP:
|
2011-05-27 12:35:18 +00:00
|
|
|
suppressKeyPress = true;
|
2011-11-28 21:33:23 +00:00
|
|
|
self._keyEvent( "previous", event );
|
2010-01-14 17:23:11 +00:00
|
|
|
break;
|
|
|
|
case keyCode.DOWN:
|
2011-05-27 12:35:18 +00:00
|
|
|
suppressKeyPress = true;
|
2011-11-28 21:33:23 +00:00
|
|
|
self._keyEvent( "next", event );
|
2010-01-14 17:23:11 +00:00
|
|
|
break;
|
|
|
|
case keyCode.ENTER:
|
2010-04-23 17:00:54 +00:00
|
|
|
case keyCode.NUMPAD_ENTER:
|
2010-09-27 14:10:00 +00:00
|
|
|
// when menu is open and has focus
|
|
|
|
if ( self.menu.active ) {
|
2010-10-06 14:24:03 +00:00
|
|
|
// #6055 - Opera still allows the keypress to occur
|
|
|
|
// which causes forms to submit
|
|
|
|
suppressKeyPress = true;
|
2010-01-14 17:23:11 +00:00
|
|
|
event.preventDefault();
|
2012-04-04 08:52:41 +00:00
|
|
|
self.menu.select( event );
|
2010-01-14 17:23:11 +00:00
|
|
|
}
|
2012-04-04 08:52:41 +00:00
|
|
|
break;
|
2010-01-14 17:23:11 +00:00
|
|
|
case keyCode.TAB:
|
2012-04-04 08:52:41 +00:00
|
|
|
if ( self.menu.active ) {
|
|
|
|
self.menu.select( event );
|
2010-01-14 17:23:11 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case keyCode.ESCAPE:
|
2011-10-12 20:25:59 +00:00
|
|
|
if ( self.menu.element.is(":visible") ) {
|
|
|
|
self._value( self.term );
|
|
|
|
self.close( event );
|
|
|
|
}
|
2010-01-14 17:23:11 +00:00
|
|
|
break;
|
|
|
|
default:
|
2011-10-17 12:09:53 +00:00
|
|
|
suppressKeyPressRepeat = true;
|
2011-05-11 03:24:21 +00:00
|
|
|
// search timeout should be triggered before the input value is changed
|
|
|
|
self._searchTimeout( event );
|
2010-01-14 17:23:11 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
})
|
2010-10-06 14:24:03 +00:00
|
|
|
.bind( "keypress.autocomplete", function( event ) {
|
|
|
|
if ( suppressKeyPress ) {
|
|
|
|
suppressKeyPress = false;
|
|
|
|
event.preventDefault();
|
2011-05-27 12:35:18 +00:00
|
|
|
return;
|
2010-10-06 14:24:03 +00:00
|
|
|
}
|
2011-10-17 12:09:53 +00:00
|
|
|
if ( suppressKeyPressRepeat ) {
|
|
|
|
return;
|
|
|
|
}
|
2011-04-19 18:04:08 +00:00
|
|
|
|
2011-05-10 15:43:21 +00:00
|
|
|
// replicate some key handlers to allow them to repeat in Firefox and Opera
|
2011-04-19 18:04:08 +00:00
|
|
|
var keyCode = $.ui.keyCode;
|
|
|
|
switch( event.keyCode ) {
|
|
|
|
case keyCode.PAGE_UP:
|
|
|
|
self._move( "previousPage", event );
|
|
|
|
break;
|
|
|
|
case keyCode.PAGE_DOWN:
|
|
|
|
self._move( "nextPage", event );
|
|
|
|
break;
|
|
|
|
case keyCode.UP:
|
2011-11-28 21:33:23 +00:00
|
|
|
self._keyEvent( "previous", event );
|
2011-04-19 18:04:08 +00:00
|
|
|
break;
|
|
|
|
case keyCode.DOWN:
|
2011-11-28 21:33:23 +00:00
|
|
|
self._keyEvent( "next", event );
|
2011-04-19 18:04:08 +00:00
|
|
|
break;
|
2011-05-27 12:35:18 +00:00
|
|
|
}
|
2010-10-06 14:24:03 +00:00
|
|
|
})
|
2011-05-11 03:24:21 +00:00
|
|
|
.bind( "input.autocomplete", function(event) {
|
|
|
|
if ( suppressInput ) {
|
|
|
|
suppressInput = false;
|
|
|
|
event.preventDefault();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
self._searchTimeout( event );
|
|
|
|
})
|
2010-01-17 18:51:11 +00:00
|
|
|
.bind( "focus.autocomplete", function() {
|
2010-07-30 16:59:33 +00:00
|
|
|
if ( self.options.disabled ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-04-08 10:05:52 +00:00
|
|
|
self.selectedItem = null;
|
2011-02-24 09:22:51 +00:00
|
|
|
self.previous = self._value();
|
2010-01-14 17:23:11 +00:00
|
|
|
})
|
2010-01-17 18:51:11 +00:00
|
|
|
.bind( "blur.autocomplete", function( event ) {
|
2010-07-30 16:59:33 +00:00
|
|
|
if ( self.options.disabled ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-02-11 20:43:38 +00:00
|
|
|
if ( self.cancelBlur ) {
|
|
|
|
delete self.cancelBlur;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-01-17 18:51:11 +00:00
|
|
|
clearTimeout( self.searching );
|
2012-02-11 20:43:38 +00:00
|
|
|
self.close( event );
|
|
|
|
self._change( event );
|
2010-01-14 17:23:11 +00:00
|
|
|
});
|
|
|
|
this._initSource();
|
2010-02-08 01:17:04 +00:00
|
|
|
this.menu = $( "<ul></ul>" )
|
2010-02-02 14:04:50 +00:00
|
|
|
.addClass( "ui-autocomplete" )
|
2011-10-20 20:57:47 +00:00
|
|
|
.appendTo( this.document.find( this.options.appendTo || "body" )[0] )
|
2010-05-18 12:57:02 +00:00
|
|
|
// prevent the close-on-blur in case of a "slow" click on the menu (long mousedown)
|
2010-08-05 12:51:54 +00:00
|
|
|
.mousedown(function( event ) {
|
2012-02-11 20:43:38 +00:00
|
|
|
// prevent moving focus out of the text field
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
// IE doesn't prevent moving focus even with event.preventDefault()
|
|
|
|
// so we set a flag to know when we should ignore the blur event
|
|
|
|
self.cancelBlur = true;
|
|
|
|
setTimeout(function() {
|
|
|
|
delete self.cancelBlur;
|
|
|
|
}, 1 );
|
|
|
|
|
2010-08-05 12:51:54 +00:00
|
|
|
// clicking on the scrollbar causes focus to shift to the body
|
|
|
|
// but we can't detect a mouseup or a click immediately afterward
|
|
|
|
// so we have to track the next mousedown and close the menu if
|
|
|
|
// the user clicks somewhere outside of the autocomplete
|
|
|
|
var menuElement = self.menu.element[ 0 ];
|
2010-09-20 13:27:32 +00:00
|
|
|
if ( !$( event.target ).closest( ".ui-menu-item" ).length ) {
|
2010-08-05 12:51:54 +00:00
|
|
|
setTimeout(function() {
|
2011-10-20 20:57:47 +00:00
|
|
|
self.document.one( 'mousedown', function( event ) {
|
2010-08-05 12:51:54 +00:00
|
|
|
if ( event.target !== self.element[ 0 ] &&
|
|
|
|
event.target !== menuElement &&
|
2010-12-10 20:13:10 +00:00
|
|
|
!$.contains( menuElement, event.target ) ) {
|
2010-08-05 12:51:54 +00:00
|
|
|
self.close();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}, 1 );
|
|
|
|
}
|
2010-05-18 12:57:02 +00:00
|
|
|
})
|
2010-02-02 14:04:50 +00:00
|
|
|
.menu({
|
2010-04-30 11:04:09 +00:00
|
|
|
// custom key handling for now
|
|
|
|
input: $(),
|
2010-02-02 14:04:50 +00:00
|
|
|
focus: function( event, ui ) {
|
2012-03-01 13:40:23 +00:00
|
|
|
// back compat for _renderItem using item.autocomplete, via #7810
|
|
|
|
// TODO remove the fallback, see #8156
|
2012-02-28 14:15:32 +00:00
|
|
|
var item = ui.item.data( "ui-autocomplete-item" ) || ui.item.data( "item.autocomplete" );
|
2010-10-11 12:51:54 +00:00
|
|
|
if ( false !== self._trigger( "focus", event, { item: item } ) ) {
|
2010-03-20 14:57:06 +00:00
|
|
|
// use value to match what will end up in the input, if it was a key event
|
|
|
|
if ( /^key/.test(event.originalEvent.type) ) {
|
2011-02-24 09:22:51 +00:00
|
|
|
self._value( item.value );
|
2010-03-20 14:57:06 +00:00
|
|
|
}
|
2010-02-02 14:04:50 +00:00
|
|
|
}
|
|
|
|
},
|
2010-04-30 11:18:34 +00:00
|
|
|
select: function( event, ui ) {
|
2012-03-01 13:40:23 +00:00
|
|
|
// back compat for _renderItem using item.autocomplete, via #7810
|
|
|
|
// TODO remove the fallback, see #8156
|
2012-04-02 23:12:21 +00:00
|
|
|
var item = ui.item.data( "ui-autocomplete-item" ) || ui.item.data( "item.autocomplete" ),
|
2010-07-20 16:10:58 +00:00
|
|
|
previous = self.previous;
|
|
|
|
|
2010-02-02 14:04:50 +00:00
|
|
|
// only trigger when focus was lost (click on menu)
|
2011-10-20 20:57:47 +00:00
|
|
|
if ( self.element[0] !== self.document[0].activeElement ) {
|
2010-02-02 14:04:50 +00:00
|
|
|
self.element.focus();
|
2010-04-08 10:05:52 +00:00
|
|
|
self.previous = previous;
|
2010-09-24 20:49:10 +00:00
|
|
|
// #6109 - IE triggers two focus events and the second
|
|
|
|
// is asynchronous, so we need to reset the previous
|
|
|
|
// term synchronously and asynchronously :-(
|
|
|
|
setTimeout(function() {
|
|
|
|
self.previous = previous;
|
2010-12-01 16:51:16 +00:00
|
|
|
self.selectedItem = item;
|
2010-09-24 20:49:10 +00:00
|
|
|
}, 1);
|
2010-02-02 14:04:50 +00:00
|
|
|
}
|
2010-07-20 16:10:58 +00:00
|
|
|
|
|
|
|
if ( false !== self._trigger( "select", event, { item: item } ) ) {
|
2011-02-24 09:22:51 +00:00
|
|
|
self._value( item.value );
|
2010-07-19 18:36:40 +00:00
|
|
|
}
|
2010-10-25 14:01:43 +00:00
|
|
|
// reset the term after the select event
|
|
|
|
// this allows custom select handling to work properly
|
2011-02-24 09:22:51 +00:00
|
|
|
self.term = self._value();
|
2010-07-20 16:10:58 +00:00
|
|
|
|
|
|
|
self.close( event );
|
|
|
|
self.selectedItem = item;
|
2010-02-02 14:04:50 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.zIndex( this.element.zIndex() + 1 )
|
|
|
|
.hide()
|
|
|
|
.data( "menu" );
|
2011-10-17 13:25:36 +00:00
|
|
|
|
2010-02-02 14:04:50 +00:00
|
|
|
if ( $.fn.bgiframe ) {
|
2012-04-02 23:12:21 +00:00
|
|
|
this.menu.element.bgiframe();
|
2010-02-02 14:04:50 +00:00
|
|
|
}
|
2011-10-17 13:25:36 +00:00
|
|
|
|
|
|
|
// turning off autocomplete prevents the browser from remembering the
|
|
|
|
// value when navigating through history, so we re-enable autocomplete
|
|
|
|
// if the page is unloaded before the widget is destroyed. #7790
|
2011-10-20 20:57:47 +00:00
|
|
|
this._bind( this.window, {
|
2011-10-17 13:25:36 +00:00
|
|
|
beforeunload: function() {
|
|
|
|
this.element.removeAttr( "autocomplete" );
|
|
|
|
}
|
|
|
|
});
|
2010-01-14 17:23:11 +00:00
|
|
|
},
|
|
|
|
|
2011-01-14 22:11:22 +00:00
|
|
|
_destroy: function() {
|
2011-08-07 06:50:34 +00:00
|
|
|
clearTimeout( this.searching );
|
2010-01-14 17:23:11 +00:00
|
|
|
this.element
|
2010-03-26 16:42:03 +00:00
|
|
|
.removeClass( "ui-autocomplete-input" )
|
2010-01-17 18:51:11 +00:00
|
|
|
.removeAttr( "autocomplete" )
|
|
|
|
.removeAttr( "role" )
|
|
|
|
.removeAttr( "aria-autocomplete" )
|
2011-07-12 15:36:34 +00:00
|
|
|
.removeAttr( "aria-haspopup" );
|
2010-02-08 01:17:04 +00:00
|
|
|
this.menu.element.remove();
|
2010-01-14 17:23:11 +00:00
|
|
|
},
|
|
|
|
|
2010-07-21 18:54:20 +00:00
|
|
|
_setOption: function( key, value ) {
|
2011-11-18 11:19:32 +00:00
|
|
|
this._super( key, value );
|
2010-03-11 22:06:29 +00:00
|
|
|
if ( key === "source" ) {
|
2010-01-14 17:23:11 +00:00
|
|
|
this._initSource();
|
|
|
|
}
|
2010-07-21 18:54:20 +00:00
|
|
|
if ( key === "appendTo" ) {
|
2011-10-20 20:57:47 +00:00
|
|
|
this.menu.element.appendTo( this.document.find( value || "body" )[0] );
|
2010-07-21 18:54:20 +00:00
|
|
|
}
|
2010-12-17 15:48:17 +00:00
|
|
|
if ( key === "disabled" && value && this.xhr ) {
|
|
|
|
this.xhr.abort();
|
|
|
|
}
|
2010-01-14 17:23:11 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
_initSource: function() {
|
2010-08-24 13:14:44 +00:00
|
|
|
var self = this,
|
|
|
|
array,
|
2010-03-11 22:06:29 +00:00
|
|
|
url;
|
2010-01-17 18:51:11 +00:00
|
|
|
if ( $.isArray(this.options.source) ) {
|
2010-03-11 22:06:29 +00:00
|
|
|
array = this.options.source;
|
2010-01-17 18:51:11 +00:00
|
|
|
this.source = function( request, response ) {
|
2010-04-16 09:05:35 +00:00
|
|
|
response( $.ui.autocomplete.filter(array, request.term) );
|
2010-01-14 17:23:11 +00:00
|
|
|
};
|
2010-03-11 22:06:29 +00:00
|
|
|
} else if ( typeof this.options.source === "string" ) {
|
|
|
|
url = this.options.source;
|
2010-01-17 18:51:11 +00:00
|
|
|
this.source = function( request, response ) {
|
2010-12-17 15:48:17 +00:00
|
|
|
if ( self.xhr ) {
|
2010-08-25 01:41:34 +00:00
|
|
|
self.xhr.abort();
|
|
|
|
}
|
2010-12-01 03:19:20 +00:00
|
|
|
self.xhr = $.ajax({
|
|
|
|
url: url,
|
|
|
|
data: request,
|
|
|
|
dataType: "json",
|
2011-01-27 19:49:59 +00:00
|
|
|
success: function( data, status ) {
|
2012-04-03 20:47:14 +00:00
|
|
|
response( data );
|
2010-12-01 03:19:20 +00:00
|
|
|
},
|
2011-01-27 19:49:59 +00:00
|
|
|
error: function() {
|
2012-04-03 20:47:14 +00:00
|
|
|
response( [] );
|
2010-08-24 13:14:44 +00:00
|
|
|
}
|
|
|
|
});
|
2010-01-14 17:23:11 +00:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
this.source = this.options.source;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2011-05-11 03:24:21 +00:00
|
|
|
_searchTimeout: function( event ) {
|
|
|
|
var self = this;
|
2011-09-24 17:07:08 +00:00
|
|
|
clearTimeout( self.searching );
|
2011-05-11 03:24:21 +00:00
|
|
|
self.searching = setTimeout(function() {
|
|
|
|
// only search if the value has changed
|
2011-10-12 17:53:50 +00:00
|
|
|
if ( self.term !== self._value() ) {
|
2011-05-11 03:24:21 +00:00
|
|
|
self.selectedItem = null;
|
|
|
|
self.search( null, event );
|
|
|
|
}
|
|
|
|
}, self.options.delay );
|
|
|
|
},
|
|
|
|
|
2010-01-17 18:51:11 +00:00
|
|
|
search: function( value, event ) {
|
2011-02-24 09:22:51 +00:00
|
|
|
value = value != null ? value : this._value();
|
2010-08-10 23:02:50 +00:00
|
|
|
|
|
|
|
// always save the actual value, not the one passed as an argument
|
2011-02-24 09:22:51 +00:00
|
|
|
this.term = this._value();
|
2010-08-10 23:02:50 +00:00
|
|
|
|
2010-01-17 18:51:11 +00:00
|
|
|
if ( value.length < this.options.minLength ) {
|
|
|
|
return this.close( event );
|
2010-01-14 17:23:11 +00:00
|
|
|
}
|
|
|
|
|
2010-10-11 12:51:54 +00:00
|
|
|
if ( this._trigger( "search", event ) === false ) {
|
2010-01-14 17:23:11 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-01-17 18:51:11 +00:00
|
|
|
return this._search( value );
|
2010-01-14 17:23:11 +00:00
|
|
|
},
|
|
|
|
|
2010-01-17 18:51:11 +00:00
|
|
|
_search: function( value ) {
|
2010-12-17 16:15:17 +00:00
|
|
|
this.pending++;
|
2010-08-10 23:02:50 +00:00
|
|
|
this.element.addClass( "ui-autocomplete-loading" );
|
2011-11-23 18:39:45 +00:00
|
|
|
this.cancelSearch = false;
|
2010-01-14 17:23:11 +00:00
|
|
|
|
2012-04-03 20:47:14 +00:00
|
|
|
this.source( { term: value }, this._response() );
|
|
|
|
},
|
|
|
|
|
|
|
|
_response: function() {
|
|
|
|
var that = this,
|
|
|
|
index = ++requestIndex;
|
|
|
|
|
|
|
|
return function( content ) {
|
|
|
|
if ( index === requestIndex ) {
|
|
|
|
that.__response( content );
|
|
|
|
}
|
|
|
|
|
|
|
|
that.pending--;
|
|
|
|
if ( !that.pending ) {
|
|
|
|
that.element.removeClass( "ui-autocomplete-loading" );
|
|
|
|
}
|
|
|
|
};
|
2010-01-14 17:23:11 +00:00
|
|
|
},
|
|
|
|
|
2012-04-03 20:47:14 +00:00
|
|
|
__response: function( content ) {
|
2011-03-22 18:07:49 +00:00
|
|
|
if ( content ) {
|
2010-01-17 18:51:11 +00:00
|
|
|
content = this._normalize( content );
|
2011-03-22 18:07:49 +00:00
|
|
|
}
|
|
|
|
this._trigger( "response", null, { content: content } );
|
2011-11-23 18:39:45 +00:00
|
|
|
if ( !this.options.disabled && content && content.length && !this.cancelSearch ) {
|
2010-01-17 18:51:11 +00:00
|
|
|
this._suggest( content );
|
2010-03-08 16:35:24 +00:00
|
|
|
this._trigger( "open" );
|
2010-01-14 17:23:11 +00:00
|
|
|
} else {
|
2012-02-13 00:27:20 +00:00
|
|
|
// use ._close() instead of .close() so we don't cancel future searches
|
2012-02-11 15:12:51 +00:00
|
|
|
this._close();
|
2010-01-14 17:23:11 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2010-01-17 18:51:11 +00:00
|
|
|
close: function( event ) {
|
2012-02-11 15:12:51 +00:00
|
|
|
this.cancelSearch = true;
|
|
|
|
this._close( event );
|
|
|
|
},
|
|
|
|
|
|
|
|
_close: function( event ) {
|
2010-01-17 18:51:11 +00:00
|
|
|
clearTimeout( this.closing );
|
2010-02-02 14:04:50 +00:00
|
|
|
if ( this.menu.element.is(":visible") ) {
|
|
|
|
this.menu.element.hide();
|
2011-02-24 11:05:20 +00:00
|
|
|
this.menu.blur();
|
2010-10-26 13:05:38 +00:00
|
|
|
this._trigger( "close", event );
|
2010-01-14 17:23:11 +00:00
|
|
|
}
|
2010-04-08 10:05:52 +00:00
|
|
|
},
|
2011-09-24 17:07:08 +00:00
|
|
|
|
2010-04-08 10:05:52 +00:00
|
|
|
_change: function( event ) {
|
2011-02-24 09:22:51 +00:00
|
|
|
if ( this.previous !== this._value() ) {
|
2010-04-08 10:05:52 +00:00
|
|
|
this._trigger( "change", event, { item: this.selectedItem } );
|
2010-01-14 17:23:11 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2010-01-17 18:51:11 +00:00
|
|
|
_normalize: function( items ) {
|
2010-01-14 17:23:11 +00:00
|
|
|
// assume all items have the right format when the first item is complete
|
2010-01-17 18:51:11 +00:00
|
|
|
if ( items.length && items[0].label && items[0].value ) {
|
2010-01-14 17:23:11 +00:00
|
|
|
return items;
|
|
|
|
}
|
2010-01-17 18:51:11 +00:00
|
|
|
return $.map( items, function(item) {
|
2010-03-11 22:06:29 +00:00
|
|
|
if ( typeof item === "string" ) {
|
2010-01-14 17:23:11 +00:00
|
|
|
return {
|
|
|
|
label: item,
|
|
|
|
value: item
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return $.extend({
|
|
|
|
label: item.label || item.value,
|
|
|
|
value: item.value || item.label
|
2010-01-17 18:51:11 +00:00
|
|
|
}, item );
|
2010-01-14 17:23:11 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2010-01-17 18:51:11 +00:00
|
|
|
_suggest: function( items ) {
|
2010-03-11 22:06:29 +00:00
|
|
|
var ul = this.menu.element
|
2010-10-22 02:15:13 +00:00
|
|
|
.empty()
|
|
|
|
.zIndex( this.element.zIndex() + 1 );
|
2010-02-16 16:20:05 +00:00
|
|
|
this._renderMenu( ul, items );
|
2011-02-24 11:05:20 +00:00
|
|
|
// TODO refresh should check if the active item is still in the dom, removing the need for a manual blur
|
|
|
|
this.menu.blur();
|
2010-02-02 14:04:50 +00:00
|
|
|
this.menu.refresh();
|
2010-03-11 04:37:21 +00:00
|
|
|
|
2010-11-12 13:41:36 +00:00
|
|
|
// size and position menu
|
|
|
|
ul.show();
|
2010-10-22 02:15:13 +00:00
|
|
|
this._resizeMenu();
|
2010-11-12 13:41:36 +00:00
|
|
|
ul.position( $.extend({
|
|
|
|
of: this.element
|
|
|
|
}, this.options.position ));
|
2011-03-15 16:26:47 +00:00
|
|
|
|
|
|
|
if ( this.options.autoFocus ) {
|
|
|
|
this.menu.next( new $.Event("mouseover") );
|
|
|
|
}
|
2010-10-22 02:15:13 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
_resizeMenu: function() {
|
|
|
|
var ul = this.menu.element;
|
|
|
|
ul.outerWidth( Math.max(
|
2011-10-25 21:19:26 +00:00
|
|
|
// Firefox wraps long text (possibly a rounding bug)
|
|
|
|
// so we add 1px to avoid the wrapping (#7513)
|
|
|
|
ul.width( "" ).outerWidth() + 1,
|
2010-10-22 02:15:13 +00:00
|
|
|
this.element.outerWidth()
|
|
|
|
) );
|
2010-01-14 17:23:11 +00:00
|
|
|
},
|
2010-07-22 02:17:52 +00:00
|
|
|
|
2010-02-16 16:20:05 +00:00
|
|
|
_renderMenu: function( ul, items ) {
|
|
|
|
var self = this;
|
|
|
|
$.each( items, function( index, item ) {
|
2012-02-28 14:15:32 +00:00
|
|
|
self._renderItemData( ul, item );
|
2010-02-16 16:20:05 +00:00
|
|
|
});
|
|
|
|
},
|
2010-01-14 17:23:11 +00:00
|
|
|
|
2012-02-28 14:15:32 +00:00
|
|
|
_renderItemData: function( ul, item ) {
|
|
|
|
return this._renderItem( ul, item ).data( "ui-autocomplete-item", item );
|
|
|
|
},
|
|
|
|
|
|
|
|
_renderItem: function( ul, item ) {
|
2010-02-08 01:31:10 +00:00
|
|
|
return $( "<li></li>" )
|
2010-07-19 19:45:30 +00:00
|
|
|
.append( $( "<a></a>" ).text( item.label ) )
|
2010-02-08 01:31:10 +00:00
|
|
|
.appendTo( ul );
|
|
|
|
},
|
|
|
|
|
2010-01-17 18:51:11 +00:00
|
|
|
_move: function( direction, event ) {
|
2010-02-08 01:17:04 +00:00
|
|
|
if ( !this.menu.element.is(":visible") ) {
|
2010-01-17 18:51:11 +00:00
|
|
|
this.search( null, event );
|
2010-01-14 17:23:11 +00:00
|
|
|
return;
|
|
|
|
}
|
2011-12-23 15:48:14 +00:00
|
|
|
if ( this.menu.isFirstItem() && /^previous/.test(direction) ||
|
|
|
|
this.menu.isLastItem() && /^next/.test(direction) ) {
|
2011-02-24 09:22:51 +00:00
|
|
|
this._value( this.term );
|
2011-02-24 11:05:20 +00:00
|
|
|
this.menu.blur();
|
2010-01-14 17:23:11 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-03-20 14:57:06 +00:00
|
|
|
this.menu[ direction ]( event );
|
2010-01-14 17:23:11 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
widget: function() {
|
2010-07-30 16:38:18 +00:00
|
|
|
return this.menu.element;
|
2011-02-24 09:22:51 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
_value: function( value ) {
|
|
|
|
return this.valueMethod.apply( this.element, arguments );
|
2011-11-28 21:33:23 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
_keyEvent: function( keyEvent, event ) {
|
|
|
|
if ( !this.isMultiLine || this.menu.element.is( ":visible" ) ) {
|
|
|
|
this._move( keyEvent, event );
|
|
|
|
|
|
|
|
// prevents moving cursor to beginning/end of the text field in some browsers
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
2010-01-14 17:23:11 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2010-01-17 18:51:11 +00:00
|
|
|
$.extend( $.ui.autocomplete, {
|
|
|
|
escapeRegex: function( value ) {
|
2012-04-04 08:52:41 +00:00
|
|
|
return value.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&");
|
2010-04-16 09:05:35 +00:00
|
|
|
},
|
|
|
|
filter: function(array, term) {
|
|
|
|
var matcher = new RegExp( $.ui.autocomplete.escapeRegex(term), "i" );
|
|
|
|
return $.grep( array, function(value) {
|
|
|
|
return matcher.test( value.label || value.value || value );
|
|
|
|
});
|
2010-01-14 17:23:11 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2010-03-11 22:06:29 +00:00
|
|
|
}( jQuery ));
|