X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=src%2Fmkws-filter.js;h=232d0d5a520fc75f3b1e7948311188b8884d4e4b;hp=c62235eebd8497a043ab3f3fc303f8542b1007cf;hb=681a6de3a7f4d1c9493d66157b11c948c59434ae;hpb=b0ff9488cd6c07d44135612f96d1f8dbc01be395 diff --git a/src/mkws-filter.js b/src/mkws-filter.js index c62235e..232d0d5 100644 --- a/src/mkws-filter.js +++ b/src/mkws-filter.js @@ -1,5 +1,36 @@ +// Factory function for sets of filters. +function filterSet() { + var that = {}; + var m_list = []; + + that.list = function() { + return m_list; + }; + + that.add = function(filter) { + m_list.push(filter); + }; + + that.removeMatching = function(matchFn) { + var newList = []; + for (var i in m_list) { + var filter = m_list[i]; + if (matchFn(filter)) { + log("removeMatching() removing filter " + $.toJSON(filter)); + } else { + log("removeMatching() keeping filter " + $.toJSON(filter)); + newList.push(filter); + } + } + m_list = newList; + }; + + return that; +} + + // Factory function for filters. These can be of several types. -function filter(id, field, value) { +function filter(id, name, field, value) { var res; if (id) {