X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=36cfc1da4c95f2b58c055a3ffb6ad0873e1741b0;hb=46fa2e3254e4fcf6156166dc485b95012211f10f;hp=ef89ad88698d03636de4a6756cadfc7185481939;hpb=5f3a5c59de215dd341bc9bd3b6b9a80585e043a2;p=mkws-moved-to-github.git diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index ef89ad8..36cfc1d 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -1,83 +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) { + // display if we first got results + $(that.node).show(); + }); + + widget.autosearch(that); +}); + + +mkws.registerWidgetType('Facet', function() { var facetConfig = { xtargets: [ "Sources", 16, false ], subject: [ "Subjects", 10, true ], author: [ "Authors", 10, true ] } - 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; - } + var that = this; + var teamName = that.team.name(); + var name = that.config.facet; + var ref = facetConfig[name] || alert("no facet definition for '" + name + "'"); + var caption = ref[0]; + var max = ref[1]; + var pzIndex = ref[2] ? name : null; - // display if we first got results - $(that.node).show(); + that.team.queue("termlists").subscribe(function(data) { + data = data[name]; - var output = {}; 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 + "'"); + acc.push('
' + mkws.M(caption) + '
'); + for (var i = 0; i < data.length && i < max; i++) { + acc.push('
'); + acc.push(''); + acc.push('onclick="' + action + ';return false;">' + data[i].name + '' + + ' ' + data[i].freq + ''); acc.push('
'); } - - function makeSingleFacet(acc, caption, data, max, pzIndex) { - var teamName = that.team.name(); - - var a2 = []; - a2.push('
' + M(caption) + '
'); - for (var i = 0; i < data.length && i < max; i++) { - a2.push('
'); - a2.push('' + data[i].name + '' - + ' ' + data[i].freq + ''); - a2.push('
'); - } - return a2.join(''); - } + $(that.node).html(acc.join('')); }); - - widget.autosearch(that); });