Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Makes the 'val' method set the query silently. #187

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/typeahead/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,24 @@
return query;
}

else {
// Sets the query in 'silent' mode so that it doesn't fire
// an autocomplete request.
ttEach(this, function(t) { t.setVal(_.toStr(newVal), true); });
return this;
}
},

// Same thing as the 'val' method, except it allows events to
// be triggered that execute autocomplete requests (namely, queryChanged).
query: function query(newVal) {
var query;

if (!arguments.length) {
ttEach(this.first(), function(t) { query = t.getVal(); });
return query;
}

else {
ttEach(this, function(t) { t.setVal(_.toStr(newVal)); });
return this;
Expand Down
7 changes: 5 additions & 2 deletions src/typeahead/typeahead.js
Original file line number Diff line number Diff line change
Expand Up @@ -351,9 +351,12 @@ var Typeahead = (function() {
return !this.isOpen();
},

setVal: function setVal(val) {
setVal: function setVal(val, silent) {
if(silent){
this.menu.empty();
}
// expect val to be a string, so be safe, and coerce
this.input.setQuery(_.toStr(val));
this.input.setQuery(_.toStr(val), silent);
},

getVal: function getVal() {
Expand Down
56 changes: 50 additions & 6 deletions test/typeahead/plugin_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ describe('$plugin', function() {

// activate and set val to render some selectables
this.$input.typeahead('activate');
this.$input.typeahead('val', 'o');
this.$input.typeahead('query', 'o');
$el = $('.tt-selectable').first();

expect(this.$input.typeahead('select', $el)).toBe(true);
Expand All @@ -90,7 +90,7 @@ describe('$plugin', function() {

// activate and set val to render some selectables
this.$input.typeahead('activate');
this.$input.typeahead('val', 'o');
this.$input.typeahead('query', 'o');
body = document.body;

expect(this.$input.typeahead('select', body)).toBe(false);
Expand All @@ -101,7 +101,7 @@ describe('$plugin', function() {

// activate and set val to render some selectables
this.$input.typeahead('activate');
this.$input.typeahead('val', 'o');
this.$input.typeahead('query', 'o');
$el = $('.tt-selectable').first();

expect(this.$input.typeahead('autocomplete', $el)).toBe(true);
Expand All @@ -113,7 +113,7 @@ describe('$plugin', function() {

// activate and set val to render some selectables
this.$input.typeahead('activate');
this.$input.typeahead('val', 'o');
this.$input.typeahead('query', 'o');
body = document.body;

expect(this.$input.typeahead('autocomplete', body)).toBe(false);
Expand All @@ -124,7 +124,7 @@ describe('$plugin', function() {

// activate and set val to render some selectables
this.$input.typeahead('activate');
this.$input.typeahead('val', 'o');
this.$input.typeahead('query', 'o');
$el = $('.tt-selectable').first();

expect($el).not.toHaveClass('tt-cursor');
Expand All @@ -137,7 +137,7 @@ describe('$plugin', function() {

// activate and set val to render some selectables
this.$input.typeahead('activate');
this.$input.typeahead('val', 'o');
this.$input.typeahead('query', 'o');
body = document.body;

expect(this.$input.typeahead('select', body)).toBe(false);
Expand All @@ -150,11 +150,13 @@ describe('$plugin', function() {
$els = this.$input.add('<div>');

expect($els.typeahead('val')).toBe('foo');
expect($els.typeahead('query')).toBe('foo');
});

it('#val(q) should set query', function() {
this.$input.typeahead('val', 'foo');
expect(this.$input.typeahead('val')).toBe('foo');
expect(this.$input.typeahead('query')).toBe('foo');
});

it('#val(q) should coerce null and undefined to empty string', function() {
Expand All @@ -165,6 +167,48 @@ describe('$plugin', function() {
expect(this.$input.typeahead('val')).toBe('');
});

it('#val(q) should set query silently', function() {
var $el;

// activate and set val to render some selectables
this.$input.typeahead('activate');
this.$input.typeahead('val', 'o');
expect($('.tt-selectable').length).toBe(0)
});

it('#query() should typeahead value of element', function() {
var $els;

this.$input.typeahead('query', 'foo');
$els = this.$input.add('<div>');

expect($els.typeahead('val')).toBe('foo');
expect($els.typeahead('query')).toBe('foo');
});

it('#query(q) should set query', function() {
this.$input.typeahead('query', 'foo');
expect(this.$input.typeahead('val')).toBe('foo');
expect(this.$input.typeahead('query')).toBe('foo');
});

it('#query(q) should coerce null and undefined to empty string', function() {
this.$input.typeahead('query', null);
expect(this.$input.typeahead('query')).toBe('');

this.$input.typeahead('query', undefined);
expect(this.$input.typeahead('query')).toBe('');
});

it('#query(q) should set query noisily', function() {
var $el;

// activate and set query to render some selectables
this.$input.typeahead('activate');
this.$input.typeahead('query', 'o');
expect($('.tt-selectable').length).toBe(3)
});

it('#destroy should revert modified attributes', function() {
expect(this.$input).toHaveAttr('dir');
expect(this.$input).toHaveAttr('spellcheck');
Expand Down
4 changes: 2 additions & 2 deletions test/typeahead/typeahead_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1173,8 +1173,8 @@ describe('Typeahead', function() {
describe('#setVal', function() {
it('should update query', function() {
this.input.hasFocus.andReturn(true);
this.view.setVal('woah');
expect(this.input.setQuery).toHaveBeenCalledWith('woah');
this.view.setVal('woah', true);
expect(this.input.setQuery).toHaveBeenCalledWith('woah', true);
});
});

Expand Down