X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-team.js;h=4c59becdcdef59b31a6d62430b9bb3fba69d53dc;hb=9186abcca4ee19b73053093c6ba90abc252ff5f9;hp=b3cb0c46a60cb112d7438f7e0080781a30bd30ac;hpb=ddb4928776153d8169591519d08df6d33158ff97;p=mkws-moved-to-github.git diff --git a/src/mkws-team.js b/src/mkws-team.js index b3cb0c4..4c59bec 100644 --- a/src/mkws-team.js +++ b/src/mkws-team.js @@ -40,7 +40,7 @@ function team($, teamName) { that.currentPage = function() { return m_currentPage; }; that.currentRecordId = function() { return m_currentRecordId; }; that.currentRecordData = function() { return m_currentRecordData; }; - that.filters = function() { return m_filterSet.list(); }; + that.filters = function() { return m_filterSet; }; that.config = function() { return m_config; }; // Accessor methods for individual widgets: writers @@ -169,7 +169,7 @@ function team($, teamName) { that.limitTarget = function(id, name) { log("limitTarget(id=" + id + ", name=" + name + ")"); - m_filterSet.add(filter(id, name)); + m_filterSet.add(targetFilter(id, name)); triggerSearch(); return false; }; @@ -177,7 +177,7 @@ function team($, teamName) { that.limitQuery = function(field, value) { log("limitQuery(field=" + field + ", value=" + value + ")"); - m_filterSet.add(filter(null, null, field, value)); + m_filterSet.add(fieldFilter(field, value)); triggerSearch(); return false; }; @@ -185,15 +185,15 @@ function team($, teamName) { that.limitCategory = function(id) { log("limitCategory(id=" + id + ")"); - // ### Add a filter - // ### triggerSearch() if there's a query + m_filterSet.add(categoryFilter(id)); + if (m_query) triggerSearch(); return false; }; that.delimitTarget = function(id) { log("delimitTarget(id=" + id + ")"); - m_filterSet.removeMatching(function(f) { return f.id }); + m_filterSet.removeMatching(function(f) { return f.type === 'target' }); triggerSearch(); return false; }; @@ -201,7 +201,8 @@ function team($, teamName) { that.delimitQuery = function(field, value) { log("delimitQuery(field=" + field + ", value=" + value + ")"); - m_filterSet.removeMatching(function(f) { return f.field && field == f.field && value == f.value }); + m_filterSet.removeMatching(function(f) { return f.type == 'field' && + field == f.field && value == f.value }); triggerSearch(); return false; }; @@ -260,50 +261,28 @@ function team($, teamName) { resetPage(); queue("navi").publish(); - var pp2limit = limit || ""; // Continue to use previous query/sort-order unless new ones are specified - if (query) { - m_query = query; - } - if (sortOrder) { - m_sortOrder = sortOrder; - } - if (perpage) { - m_perpage = perpage; - } - if (targets) { - m_filterSet.add(filter(id, id)); - } + if (query) m_query = query; + if (sortOrder) m_sortOrder = sortOrder; + if (perpage) m_perpage = perpage; + if (targets) m_filterSet.add(targetFilter(id, id)); var pp2filter = m_filterSet.pp2filter(); - for (var i in m_filterSet.list()) { - var filter = m_filterSet.list()[i]; - if (!filter.id) { - if (pp2limit) - pp2limit += ","; - pp2limit += filter.field + "=" + filter.value.replace(/[\\|,]/g, '\\$&'); - } - } + var pp2limit = m_filterSet.pp2limit(limit); var params = {}; - if (pp2limit) { - params.limit = pp2limit; - } - if (maxrecs) { - params.maxrecs = maxrecs; - } + if (pp2limit) params.limit = pp2limit; + if (maxrecs) params.maxrecs = maxrecs; if (torusquery) { if (!mkws.config.use_service_proxy) alert("can't narrow search by torusquery when Service Proxy is not in use"); params.torusquery = torusquery; } - log("triggerSearch(" + m_query + "): filters = " + $.toJSON(m_filterSet.list()) + ", " + + log("triggerSearch(" + m_query + "): filters = " + m_filterSet.toJSON() + ", " + "pp2filter = " + pp2filter + ", params = " + $.toJSON(params)); - // We can use: params.torusquery = "udb=NAME" - // Note: that won't work when running against raw pazpar2 m_paz.search(m_query, m_perpage, m_sortOrder, pp2filter, undefined, params); }