mirror of
https://github.com/jquery/jquery-ui.git
synced 2025-01-07 20:34:24 +00:00
Autocomplete: Move race condition logic from ajax requests to general response handler. Fixes #8234 - Autocomplete: Automatic race-condition handling for custom sources.
(cherry picked from commit 96f9c84b7b
)
Conflicts:
tests/unit/autocomplete/autocomplete_core.js
ui/jquery.ui.autocomplete.js
This commit is contained in:
parent
fc6e72bf73
commit
d040b8f42c
@ -69,4 +69,33 @@ test( "allow form submit on enter when menu is not active", function() {
|
||||
ok( !event.isDefaultPrevented(), "default action is prevented" );
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
asyncTest( "handle race condition", function() {
|
||||
expect( 3 );
|
||||
var count = 0,
|
||||
element = $( "#autocomplete" ).autocomplete({
|
||||
source: function( request, response ) {
|
||||
count++;
|
||||
if ( request.term.length === 1 ) {
|
||||
equal( count, 1, "request with 1 character is first" );
|
||||
setTimeout(function() {
|
||||
response([ "one" ]);
|
||||
setTimeout( checkResults, 1 );
|
||||
}, 1 );
|
||||
return;
|
||||
}
|
||||
equal( count, 2, "request with 2 characters is second" );
|
||||
response([ "two" ]);
|
||||
}
|
||||
});
|
||||
|
||||
element.autocomplete( "search", "a" );
|
||||
element.autocomplete( "search", "ab" );
|
||||
|
||||
function checkResults() {
|
||||
equal( element.autocomplete( "widget" ).find( ".ui-menu-item" ).text(), "two",
|
||||
"correct results displayed" );
|
||||
start();
|
||||
}
|
||||
});
|
||||
|
||||
}( jQuery ) );
|
||||
|
38
ui/jquery.ui.autocomplete.js
vendored
38
ui/jquery.ui.autocomplete.js
vendored
@ -131,9 +131,6 @@ $.widget( "ui.autocomplete", {
|
||||
}, 150 );
|
||||
});
|
||||
this._initSource();
|
||||
this.response = function() {
|
||||
return self._response.apply( self, arguments );
|
||||
};
|
||||
this.menu = $( "<ul></ul>" )
|
||||
.addClass( "ui-autocomplete" )
|
||||
.appendTo( $( this.options.appendTo || "body", doc )[0] )
|
||||
@ -268,18 +265,11 @@ $.widget( "ui.autocomplete", {
|
||||
url: url,
|
||||
data: request,
|
||||
dataType: "json",
|
||||
context: {
|
||||
autocompleteRequest: ++requestIndex
|
||||
},
|
||||
success: function( data, status ) {
|
||||
if ( this.autocompleteRequest === requestIndex ) {
|
||||
response( data );
|
||||
}
|
||||
response( data );
|
||||
},
|
||||
error: function() {
|
||||
if ( this.autocompleteRequest === requestIndex ) {
|
||||
response( [] );
|
||||
}
|
||||
response( [] );
|
||||
}
|
||||
});
|
||||
};
|
||||
@ -310,10 +300,26 @@ $.widget( "ui.autocomplete", {
|
||||
this.pending++;
|
||||
this.element.addClass( "ui-autocomplete-loading" );
|
||||
|
||||
this.source( { term: value }, this.response );
|
||||
this.source( { term: value }, this._response() );
|
||||
},
|
||||
|
||||
_response: function( content ) {
|
||||
_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" );
|
||||
}
|
||||
};
|
||||
},
|
||||
|
||||
__response: function( content ) {
|
||||
if ( !this.options.disabled && content && content.length ) {
|
||||
content = this._normalize( content );
|
||||
this._suggest( content );
|
||||
@ -321,10 +327,6 @@ $.widget( "ui.autocomplete", {
|
||||
} else {
|
||||
this.close();
|
||||
}
|
||||
this.pending--;
|
||||
if ( !this.pending ) {
|
||||
this.element.removeClass( "ui-autocomplete-loading" );
|
||||
}
|
||||
},
|
||||
|
||||
close: function( event ) {
|
||||
|
Loading…
Reference in New Issue
Block a user