mirror of
https://github.com/devbridge/jQuery-Autocomplete.git
synced 2024-11-09 23:01:00 +00:00
Add onSearchStart and onSearchComplete tests. Update documentation.
This commit is contained in:
parent
77daff2905
commit
368cfb3c56
18
readme.md
18
readme.md
@ -25,6 +25,8 @@ autocomplete/autosuggest boxes for text input fields.
|
|||||||
* `zIndex`: 'z-index' for suggestions container. Default: `9999`.
|
* `zIndex`: 'z-index' for suggestions container. Default: `9999`.
|
||||||
* `type`: Ajax request type to get suggestions. Default: `GET`.
|
* `type`: Ajax request type to get suggestions. Default: `GET`.
|
||||||
* `noCache`: Boolean value indicating whether to cache suggestion results. Default `true`.
|
* `noCache`: Boolean value indicating whether to cache suggestion results. Default `true`.
|
||||||
|
* `onSearchStart`: `function (query) {}` called before ajax request. `this` is bound to input element.
|
||||||
|
* `onSearchComplete`: `function (query) {}` called after ajax response is processed. `this` is bound to input element.
|
||||||
|
|
||||||
##Usage
|
##Usage
|
||||||
|
|
||||||
@ -60,12 +62,19 @@ Local lookup (no ajax):
|
|||||||
|
|
||||||
Generated HTML markup for suggestions is displayed bellow. You may style it any way you'd like.
|
Generated HTML markup for suggestions is displayed bellow. You may style it any way you'd like.
|
||||||
|
|
||||||
<div class="autocomplete">
|
<div class="autocomplete-suggestions">
|
||||||
<div class="autocomplete-suggestion autocomplete-selected">...</div>
|
<div class="autocomplete-suggestion autocomplete-selected">...</div>
|
||||||
<div class="autocomplete-suggestion">...</div>
|
<div class="autocomplete-suggestion">...</div>
|
||||||
<div class="autocomplete-suggestion">...</div>
|
<div class="autocomplete-suggestion">...</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Style sample:
|
||||||
|
|
||||||
|
.autocomplete-suggestions { border: 1px solid #999; background: #FFF; overflow: auto; }
|
||||||
|
.autocomplete-suggestion { padding: 2px 5px; white-space: nowrap; overflow: hidden; }
|
||||||
|
.autocomplete-selected { background: #F0F0F0; }
|
||||||
|
.autocomplete-suggestions strong { font-weight: normal; color: #3399FF; }
|
||||||
|
|
||||||
##Response Format
|
##Response Format
|
||||||
|
|
||||||
Response from the server must be JSON formatted following JavaScript object:
|
Response from the server must be JSON formatted following JavaScript object:
|
||||||
@ -79,14 +88,17 @@ Response from the server must be JSON formatted following JavaScript object:
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
Data can be any value or object. Data object is passed to formatResults function and onSelect callback. Alternatively, if there is no data you can supply just a string array for suggestions:
|
Data can be any value or object. Data object is passed to formatResults function
|
||||||
|
and onSelect callback. Alternatively, if there is no data you can
|
||||||
|
supply just a string array for suggestions:
|
||||||
|
|
||||||
{
|
{
|
||||||
query: "Unit",
|
query: "Unit",
|
||||||
suggestions: ["United Arab Emirates", "United Kingdom", "United States"]
|
suggestions: ["United Arab Emirates", "United Kingdom", "United States"]
|
||||||
}
|
}
|
||||||
|
|
||||||
Important: query value must match original value in the input field, otherwise suggestions will not be displayed.
|
Important: query value must match original value in the input
|
||||||
|
field, otherwise suggestions will not be displayed.
|
||||||
|
|
||||||
##License
|
##License
|
||||||
|
|
||||||
|
@ -1,9 +1,13 @@
|
|||||||
/*jslint vars: true*/
|
/*jslint vars: true*/
|
||||||
/*global describe, it, expect, $*/
|
/*global describe, it, expect, waitsFor, runs, afterEach, $*/
|
||||||
|
|
||||||
describe('Autocomplete', function () {
|
describe('Autocomplete', function () {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
afterEach(function () {
|
||||||
|
$('.autocomplete-suggestions').hide();
|
||||||
|
});
|
||||||
|
|
||||||
it('Should initialize autocomplete options', function () {
|
it('Should initialize autocomplete options', function () {
|
||||||
var input = document.createElement('input'),
|
var input = document.createElement('input'),
|
||||||
options = { serviceUrl: '/autocomplete/service/url' },
|
options = { serviceUrl: '/autocomplete/service/url' },
|
||||||
@ -34,6 +38,29 @@ describe('Autocomplete', function () {
|
|||||||
expect(autocomplete.currentValue).toEqual('Jam');
|
expect(autocomplete.currentValue).toEqual('Jam');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('Should call formatResult three times', function () {
|
||||||
|
var input = document.createElement('input'),
|
||||||
|
counter = 0,
|
||||||
|
suggestion,
|
||||||
|
currentValue,
|
||||||
|
autocomplete = new $.Autocomplete(input, {
|
||||||
|
lookup: ['Jamaica', 'Jamaica', 'Jamaica'],
|
||||||
|
formatResult: function (s, v) {
|
||||||
|
suggestion = s;
|
||||||
|
currentValue = v;
|
||||||
|
counter += 1;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
input.value = 'Jam';
|
||||||
|
autocomplete.onValueChange();
|
||||||
|
|
||||||
|
expect(suggestion.value).toBe('Jamaica');
|
||||||
|
expect(suggestion.data).toBe(null);
|
||||||
|
expect(currentValue).toEqual('Jam');
|
||||||
|
expect(counter).toEqual(3);
|
||||||
|
});
|
||||||
|
|
||||||
it('Verify onSelect callback', function () {
|
it('Verify onSelect callback', function () {
|
||||||
var input = document.createElement('input'),
|
var input = document.createElement('input'),
|
||||||
context,
|
context,
|
||||||
@ -67,4 +94,47 @@ describe('Autocomplete', function () {
|
|||||||
expect(autocomplete.options.lookup[1].value).toBe('B');
|
expect(autocomplete.options.lookup[1].value).toBe('B');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('Should execute onSearchStart and onSearchCompleted', function () {
|
||||||
|
var input = document.createElement('input'),
|
||||||
|
startQuery,
|
||||||
|
completeQuery,
|
||||||
|
ajaxExecuted = false,
|
||||||
|
autocomplete = new $.Autocomplete(input, {
|
||||||
|
serviceUrl: '/test',
|
||||||
|
onSearchStart: function (query) {
|
||||||
|
startQuery = query;
|
||||||
|
},
|
||||||
|
onSearchComplete: function (query) {
|
||||||
|
completeQuery = query;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$.mockjax({
|
||||||
|
url: '/test',
|
||||||
|
responseTime: 50,
|
||||||
|
response: function (settings) {
|
||||||
|
ajaxExecuted = true;
|
||||||
|
var query = settings.data.query,
|
||||||
|
response = {
|
||||||
|
query: query,
|
||||||
|
suggestions: []
|
||||||
|
};
|
||||||
|
ajaxExecuted = true;
|
||||||
|
this.responseText = JSON.stringify(response);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
input.value = 'A';
|
||||||
|
autocomplete.onValueChange();
|
||||||
|
|
||||||
|
waitsFor(function () {
|
||||||
|
return ajaxExecuted;
|
||||||
|
}, 'Ajax call never completed.', 100);
|
||||||
|
|
||||||
|
runs(function () {
|
||||||
|
expect(ajaxExecuted).toBe(true);
|
||||||
|
expect(startQuery).toBe('A');
|
||||||
|
expect(completeQuery).toBe('A');
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
<!-- jQuery -->
|
<!-- jQuery -->
|
||||||
<script src="../scripts/jquery-1.8.2.min.js"></script>
|
<script src="../scripts/jquery-1.8.2.min.js"></script>
|
||||||
|
<script src="../scripts/jquery.mockjax.js"></script>
|
||||||
|
|
||||||
<!-- Autocomplete -->
|
<!-- Autocomplete -->
|
||||||
<script src="../src/jquery.autocomplete.js"></script>
|
<script src="../src/jquery.autocomplete.js"></script>
|
||||||
|
@ -49,7 +49,8 @@
|
|||||||
}());
|
}());
|
||||||
|
|
||||||
function Autocomplete(el, options) {
|
function Autocomplete(el, options) {
|
||||||
var that = this,
|
var noop = function () { },
|
||||||
|
that = this,
|
||||||
defaults = {
|
defaults = {
|
||||||
serviceUrl: null,
|
serviceUrl: null,
|
||||||
lookup: null,
|
lookup: null,
|
||||||
@ -63,7 +64,9 @@
|
|||||||
delimiter: null,
|
delimiter: null,
|
||||||
zIndex: 9999,
|
zIndex: 9999,
|
||||||
type: 'GET',
|
type: 'GET',
|
||||||
noCache: false
|
noCache: false,
|
||||||
|
onSearchStart: noop,
|
||||||
|
onSearchComplete: noop
|
||||||
};
|
};
|
||||||
|
|
||||||
// Shared variables:
|
// Shared variables:
|
||||||
@ -342,7 +345,8 @@
|
|||||||
that.suggestions = response.suggestions;
|
that.suggestions = response.suggestions;
|
||||||
that.suggest();
|
that.suggest();
|
||||||
} else if (!that.isBadQuery(q)) {
|
} else if (!that.isBadQuery(q)) {
|
||||||
that.options.params.query = q;
|
options.onSearchStart.call(that.element, q);
|
||||||
|
options.params.query = q;
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: options.serviceUrl,
|
url: options.serviceUrl,
|
||||||
data: options.params,
|
data: options.params,
|
||||||
@ -350,6 +354,7 @@
|
|||||||
dataType: 'text'
|
dataType: 'text'
|
||||||
}).done(function (txt) {
|
}).done(function (txt) {
|
||||||
that.processResponse(txt);
|
that.processResponse(txt);
|
||||||
|
options.onSearchComplete.call(that.element, q);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user