Skip to content

Commit

Permalink
Added APIs for initiating search programatically, count of matched re…
Browse files Browse the repository at this point in the history
…sults and fix for sync-ing val global.
  • Loading branch information
tankchintan committed Jan 18, 2012
1 parent f984f7f commit 3ad9c10
Showing 1 changed file with 37 additions and 6 deletions.
43 changes: 37 additions & 6 deletions jquery.quicksearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
stripeRows: null,
loader: null,
noResults: '',
matchedResultsCount: 0,
bind: 'keyup',
onBefore: function () {
return;
Expand Down Expand Up @@ -35,15 +36,17 @@

this.go = function () {

var i = 0,
noresults = true,
query = options.prepareQuery(val),
val_empty = (val.replace(' ', '').length === 0);
var i = 0,
numMatchedRows = 0,
noresults = true,
query = options.prepareQuery(val),
val_empty = (val.replace(' ', '').length === 0);

for (var i = 0, len = rowcache.length; i < len; i++) {
if (val_empty || options.testQuery(query, cache[i], rowcache[i])) {
options.show.apply(rowcache[i]);
noresults = false;
numMatchedRows++;
} else {
options.hide.apply(rowcache[i]);
}
Expand All @@ -56,12 +59,29 @@
this.stripe();
}

this.matchedResultsCount = numMatchedRows;
this.loader(false);
options.onAfter();

return this;
};

/*
* External API so that users can perform search programatically.
* */
this.search = function (submittedVal) {
val = submittedVal;
e.trigger();
};

/*
* External API to get the number of matched results as seen in
* https://github.com/ruiz107/quicksearch/commit/f78dc440b42d95ce9caed1d087174dd4359982d6
* */
this.currentMatchedResults = function() {
return this.matchedResultsCount;
};

this.stripe = function () {

if (typeof options.stripeRows === "object" && options.stripeRows !== null)
Expand Down Expand Up @@ -117,6 +137,12 @@
rowcache = jq_results.map(function () {
return this;
});

/*
* Modified fix for sync-ing "val".
* Original fix https://github.com/michaellwest/quicksearch/commit/4ace4008d079298a01f97f885ba8fa956a9703d1
* */
val = val || this.val() || "";

return this.go();
};
Expand All @@ -139,12 +165,17 @@
this.loader(false);

return this.each(function () {
$(this).bind(options.bind, function () {

/*
* Changed from .bind to .on.
* */
$(this).on(options.bind, function () {

val = $(this).val();
e.trigger();
});
});

};

}(jQuery, this, document));
}(jQuery, this, document));

0 comments on commit 3ad9c10

Please sign in to comment.