X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=36cfc1da4c95f2b58c055a3ffb6ad0873e1741b0;hb=46fa2e3254e4fcf6156166dc485b95012211f10f;hp=eb299f00e181ef171a39a01e5fa265ced41e4cb8;hpb=7e9bf49237333c81ce6946ee735ba454dd0198b3;p=mkws-moved-to-github.git diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index eb299f0..36cfc1d 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -1,77 +1,54 @@ 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 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 + "'"); - } else { - output[name] = addSingleFacet(acc, ref[0], data[name], ref[1], ref[2] ? name : null); - } - } + widget.autosearch(that); +}); - $(that.node).html(acc.join('')); - for (var i = 0; i < facets.length; i++) { - var name = facets[i] - var ref = facetConfig[name]; - var caption = ref[0]; +mkws.registerWidgetType('Facet', function() { + var facetConfig = { + xtargets: [ "Sources", 16, false ], + subject: [ "Subjects", 10, true ], + author: [ "Authors", 10, true ] + } - that.log("setting HTML for facet '" + name + "'"); - that.team.findnode('.mkwsFacet' + caption).html(output[name]); - } + 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; - function addSingleFacet(acc, caption, data, max, pzIndex) { - var teamName = that.team.name(); - acc.push('
'); + that.team.queue("termlists").subscribe(function(data) { + data = data[name]; - var a2 = []; - a2.push('
' + M(caption) + '
'); - for (var i = 0; i < data.length && i < max; i++) { - a2.push('
'); - a2.push('' + mkws.M(caption) + '
'); + for (var i = 0; i < data.length && i < max; i++) { + acc.push('
'); + acc.push('' + data[i].name + '' - + ' ' + data[i].freq + ''); - a2.push('
'); + } else { + action = 'mkws.limitQuery(\'' + teamName + '\', \'' + pzIndex + '\', this.firstChild.nodeValue)'; } + acc.push('onclick="' + action + ';return false;">' + data[i].name + '' + + ' ' + data[i].freq + ''); acc.push('
'); - return a2.join(''); } - }); - widget.autosearch(that); + $(that.node).html(acc.join('')); + }); });