X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=b140198f0e338f8cecf0e62d96fcc969f7dcb247;hb=e7b6e01d059f0fc5b7e1a26933456cb8abd5b86e;hp=3762600e057bc0010d2f74ac4d177b9f43c0380e;hpb=8cb43727c2afcd64660f9ce155084a7f41ab6858;p=mkws-moved-to-github.git diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index 3762600..b140198 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -1,39 +1,50 @@ mkws.registerWidgetType('Termlists', function() { var that = this; + var facets = that.config.facets; var M = mkws.M; - 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; + mkws.facetConfig = { + xtargets: [ "Sources", 16, false ], + subject: [ "Subjects", 10, true ], + author: [ "Authors", 10, true ] + } + + var acc = []; + acc.push('
' + M('Termlists') + '
'); + for (var i = 0; i < facets.length; i++) { + var name = facets[i] + var ref = mkws.facetConfig[name]; + if (!ref) { + alert("bad facet configuration: '" + name + "'"); + } else { + acc.push('
'); + acc.push('
'); } + } + $(that.node).html(acc.join('')); + + this.team.queue("termlists").subscribe(function(data) { // 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"); + var name = facets[i] + var ref = mkws.facetConfig[name]; + var caption = ref[0]; + if (!ref) { + alert("bad facet configuration: '" + name + "'"); } else { - alert("bad facet configuration: '" + facets[i] + "'"); + var output = makeSingleFacet(ref[0], data[name], ref[1], ref[2] ? name : null); + that.team.findnode('.mkwsFacet' + caption).html(output); } } - $(that.node).html(acc.join('')); - function addSingleFacet(acc, caption, data, max, pzIndex) { + function makeSingleFacet(caption, data, max, pzIndex) { var teamName = that.team.name(); - acc.push('
'); + + var acc = []; acc.push('
' + M(caption) + '
'); for (var i = 0; i < data.length && i < max; i++) { acc.push('
'); @@ -52,7 +63,7 @@ mkws.registerWidgetType('Termlists', function() { + ' ' + data[i].freq + ''); acc.push('
'); } - acc.push('
'); + return acc.join(''); } });