From 1f8b4b14a465193ba0dd061dd55a170e63aeb9ea Mon Sep 17 00:00:00 2001 From: zotlabs Date: Sun, 6 May 2018 20:35:57 -0700 Subject: remove the old autocomplete cache mechanism --- view/js/autocomplete.js | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) (limited to 'view') diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js index 2a2d1454a..b61af23f8 100644 --- a/view/js/autocomplete.js +++ b/view/js/autocomplete.js @@ -7,21 +7,6 @@ function contact_search(term, callback, backend_url, type, extra_channels, spine if(spinelement) { $(spinelement).show(); } - // Check if there is a cached result that contains the same information we would get with a full server-side search -// var bt = backend_url+type; -// if(!(bt in contact_search.cache)) contact_search.cache[bt] = {}; - -// var lterm = term.toLowerCase(); // Ignore case -// for(var t in contact_search.cache[bt]) { -// if(lterm.indexOf(t) >= 0) { // A more broad search has been performed already, so use those results -// $(spinelement).hide(); - // Filter old results locally -// var matching = contact_search.cache[bt][t].filter(function (x) { return (x.name.toLowerCase().indexOf(lterm) >= 0 || (typeof x.nick !== 'undefined' && x.nick.toLowerCase().indexOf(lterm) >= 0)); }); // Need to check that nick exists because groups don't have one -// matching.unshift({taggable:false, text: term, replace: term}); -// setTimeout(function() { callback(matching); } , 1); // Use "pseudo-thread" to avoid some problems -// return; -// } -// } var postdata = { start:0, @@ -38,12 +23,7 @@ function contact_search(term, callback, backend_url, type, extra_channels, spine url: backend_url, data: postdata, dataType: 'json', - success: function(data){ - // Cache results if we got them all (more information would not improve results) - // data.count represents the maximum number of items -// if(data.items.length -1 < data.count) { -// contact_search.cache[bt][lterm] = data.items; -// } + success: function(data) { var items = data.items.slice(0); items.unshift({taggable:false, text: term, replace: term}); callback(items); -- cgit v1.2.3