X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=b140198f0e338f8cecf0e62d96fcc969f7dcb247;hb=58d7d6b62eeab782de4ce78349efcc66a4cdead8;hp=66b8a4d8006692a76df95bda009ccbb278cd9fe9;hpb=dbd20b82821d1f50ff1d7389b1b1f551456a22c5;p=mkws-moved-to-github.git diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index 66b8a4d..b140198 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -1,44 +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) { - if (!that.node) { - alert("termlists event when there are no termlists"); - return; - } + mkws.facetConfig = { + xtargets: [ "Sources", 16, false ], + subject: [ "Subjects", 10, true ], + author: [ "Authors", 10, true ] + } - // 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 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('
'); @@ -57,7 +63,7 @@ mkws.registerWidgetType('Termlists', function() { + ' ' + data[i].freq + ''); acc.push('
'); } - acc.push('
'); + return acc.join(''); } });