X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-filter.js;h=7d9fac06672e02ca220922301fb8d0a6bd210805;hb=fea2b711c389ba5f31aed757622fe268b7084768;hp=aa3a2049de407af95447d4929d27e9feb0243189;hpb=f2a9caeb4ad7aab086b46af8d3050e0ba22e0e47;p=mkws-moved-to-github.git diff --git a/src/mkws-filter.js b/src/mkws-filter.js index aa3a204..7d9fac0 100644 --- a/src/mkws-filter.js +++ b/src/mkws-filter.js @@ -5,14 +5,32 @@ function filterSet(team) { var that = {}; - that.list = function() { - return m_list; + that.toJSON = function() { + return $.toJSON(m_list); }; that.add = function(filter) { m_list.push(filter); }; + that.visitTargets = function(callback) { + for (var i in m_list) { + var filter = m_list[i]; + if (filter.type === 'target') { + callback(filter.id, filter.name); + } + } + }; + + that.visitFields = function(callback) { + for (var i in m_list) { + var filter = m_list[i]; + if (filter.type === 'field') { + callback(filter.field, filter.value); + } + } + }; + that.removeMatching = function(matchFn) { var newList = []; for (var i in m_list) { @@ -29,31 +47,37 @@ function filterSet(team) { that.targetFiltered = function(id) { for (var i = 0; i < m_list.length; i++) { - if (m_list[i].id === id || + if (m_list[i].type === 'target' || m_list[i].id === 'pz:id=' + id) { return true; } } return false; - } + }; that.pp2filter = function() { var res = ""; - for (var i in m_list) { - var filter = m_list[i]; - if (filter.id) { - if (res) - res += ","; - if (filter.id.match(/^[a-z:]+[=~]/)) { - m_team.log("filter '" + filter.id + "' already begins with SETTING OP"); - } else { - filter.id = 'pz:id=' + filter.id; - } - res += filter.id; + that.visitTargets(function(id, name) { + if (res) res += ","; + if (id.match(/^[a-z:]+[=~]/)) { + m_team.log("filter '" + id + "' already begins with SETTING OP"); + } else { + id = 'pz:id=' + id; } - } + res += id; + }); + + return res; + }; + that.pp2limit = function(initial) { + var res = initial || ""; + + that.visitFields(function(field, value) { + if (res) res += ","; + res += field + "=" + value.replace(/[\\|,]/g, '\\$&'); + }); return res; } @@ -61,15 +85,26 @@ function filterSet(team) { } -// Factory function for filters. These can be of several types. -function filter(id, name, field, value) { - var res; +// Factory functions for filters. These can be of several types. +function targetFilter(id, name) { + return { + type: 'target', + id: id, + name: name + }; +} - if (id) { - res = { id: id, name: name }; - } else { - res = { field: field, value: value }; - } +function fieldFilter(field, value) { + return { + type: 'field', + field: field, + value: value + }; +} - return res; +function categoryFilter(id) { + return { + type: 'category', + id: id, + }; }