X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-filter.js;h=22669939aab1c0dfe929f75b3fe8ce36fe8794ac;hb=5d4a56ce00ebbf1b4e1c37add8cd217a5507a17a;hp=7d9fac06672e02ca220922301fb8d0a6bd210805;hpb=fea2b711c389ba5f31aed757622fe268b7084768;p=mkws-moved-to-github.git diff --git a/src/mkws-filter.js b/src/mkws-filter.js index 7d9fac0..2266993 100644 --- a/src/mkws-filter.js +++ b/src/mkws-filter.js @@ -31,6 +31,15 @@ function filterSet(team) { } }; + that.visitCategories = function(callback) { + for (var i in m_list) { + var filter = m_list[i]; + if (filter.type === 'category') { + callback(filter.id); + } + } + }; + that.removeMatching = function(matchFn) { var newList = []; for (var i in m_list) { @@ -81,6 +90,16 @@ function filterSet(team) { return res; } + that.pp2catLimit = function() { + var res = ""; + + that.visitCategories(function(id) { + if (res) res += ","; + res += "category~" + id.replace(/[\\|,]/g, '\\$&'); + }); + return res; + } + return that; }