Skip to content

Instantly share code, notes, and snippets.

@winkler1
Created January 8, 2015 01:40
Show Gist options
  • Save winkler1/1e4fe60f43bb5673cd13 to your computer and use it in GitHub Desktop.
Save winkler1/1e4fe60f43bb5673cd13 to your computer and use it in GitHub Desktop.
finding tags
// Search tags for [query], find matches, return results.
suggestTags(query) {
query = query.trim().toLowerCase();
if (!query || query.length<2) {
return null;
}
var goodMatches=[], partialMatches=[], allTags = db.tags;
for (var x=0; x<allTags.length; ++x) {
var pos=allTags[x].toLowerCase().indexOf(query);
if(pos ==0) {
goodMatches.push(x);
}
else if ( pos>0) {
partialMatches.push(x);
}
}
return this.makeTags(goodMatches.concat(partialMatches));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment