Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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 96f9c84)

Conflicts:

	tests/unit/autocomplete/autocomplete_core.js
	ui/jquery.ui.autocomplete.js
  • Loading branch information
scottgonzalez committed Apr 3, 2012
1 parent fc6e72b commit d040b8f
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 19 deletions.
31 changes: 30 additions & 1 deletion tests/unit/autocomplete/autocomplete_core.js
Expand Up @@ -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 changes: 20 additions & 18 deletions ui/jquery.ui.autocomplete.js
Expand Up @@ -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] )
Expand Down Expand Up @@ -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( [] );
}
});
};
Expand Down Expand Up @@ -310,21 +300,33 @@ $.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() {
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 ) {
__response: function( content ) {
if ( !this.options.disabled && content && content.length ) {
content = this._normalize( content );
this._suggest( content );
this._trigger( "open" );
} else {
this.close();
}
this.pending--;
if ( !this.pending ) {
this.element.removeClass( "ui-autocomplete-loading" );
}
},

close: function( event ) {
Expand Down

0 comments on commit d040b8f

Please sign in to comment.