X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=60ba340d09e06f0f2c5a5b967e3130de2136c856;hb=b595a76df4a909df992d183f1fbeb66a2a25101e;hp=61751002c1bcb6535122f42d1d2b415e0bdec840;hpb=011aa84e21fa9f9ff46ad16fe8d7afd28d9b7372;p=mkws-moved-to-github.git diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index 6175100..60ba340 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -1,64 +1,56 @@ mkws.registerWidgetType('Termlists', function() { var that = this; - var M = mkws.M; - - var facetConfig = { - xtargets: [ "Sources", 16, false ], - subject: [ "Subjects", 10, true ], - author: [ "Author", 10, true ] - } + 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++) { - var name = facets[i] - var ref = facetConfig[name]; - if (!ref) { - alert("bad facet configuration: '" + name + "'"); - } else { - addSingleFacet(acc, ref[0], data[name], ref[1], ref[2] ? name : null); - } + for (var i = 0; i < facets.length; i++) { + var name = facets[i] + var ref = mkws.facetConfig[name]; + if (!ref) { + alert("bad facet configuration: '" + name + "'"); } + } + + 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('')); + }); });