X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=36cfc1da4c95f2b58c055a3ffb6ad0873e1741b0;hb=46fa2e3254e4fcf6156166dc485b95012211f10f;hp=b9e7b11ca87e8a1136e174f2bd7ee1ccba8b0b44;hpb=8c4fbdc727427c3e2fe320aa7a6a0ecd72a72116;p=mkws-moved-to-github.git diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index b9e7b11..36cfc1d 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -1,60 +1,54 @@ mkws.registerWidgetType('Termlists', function() { var that = this; - var M = mkws.M; + var facets = that.config.facets; this.team.queue("termlists").subscribe(function(data) { - // no facets: this should never happen - var facets = that.config.facets; - if (!facets || facets.length == 0) { - alert("onTerm called even though we have no facets: " + $.toJSON(data)); - $(that.node).hide(); - return; - } - // display if we first got results $(that.node).show(); + }); - var acc = []; - acc.push('
' + M('Termlists') + '
'); - - for (var i = 0; i < facets.length; i++) { - if (facets[i] == "xtargets") { - addSingleFacet(acc, "Sources", data.xtargets, 16, null); - } else if (facets[i] == "subject") { - addSingleFacet(acc, "Subjects", data.subject, 10, "subject"); - } else if (facets[i] == "author") { - addSingleFacet(acc, "Authors", data.author, 10, "author"); - } else { - alert("bad facet configuration: '" + facets[i] + "'"); - } - } + widget.autosearch(that); +}); - $(that.node).html(acc.join('')); - function addSingleFacet(acc, caption, data, max, pzIndex) { - var teamName = that.team.name(); - acc.push('
'); - acc.push('
' + M(caption) + '
'); - for (var i = 0; i < data.length && i < max; i++) { - acc.push('
'); - acc.push('' + mkws.M(caption) + '
'); + for (var i = 0; i < data.length && i < max; i++) { + acc.push('
'); + acc.push('' + data[i].name + '' - + ' ' + data[i].freq + ''); - acc.push('
'); + } else { + action = 'mkws.limitQuery(\'' + teamName + '\', \'' + pzIndex + '\', this.firstChild.nodeValue)'; } + acc.push('onclick="' + action + ';return false;">' + data[i].name + '' + + ' ' + data[i].freq + ''); acc.push('
'); } - }); - widget.autosearch(that); + $(that.node).html(acc.join('')); + }); });