X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=b16d60c0ff9ebb1fe272b76638577868a477f1d2;hb=d81d10eb466240b6e557379a4e298709a5086bf1;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..b16d60c 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -1,64 +1,68 @@ mkws.registerWidgetType('Termlists', function() { - var that = this; - var M = mkws.M; + var that = this; - var facetConfig = { - xtargets: [ "Sources", 16, false ], - subject: [ "Subjects", 10, true ], - author: [ "Author", 10, true ] - } + // Initially hide the termlists; display when we get results + mkws.$(document).ready(function() { + that.node.hide(); + }); + this.team.queue("termlists").subscribe(function(data) { + that.node.show(); + }); + + var acc = []; + var facets = this.config.facets; + acc.push('
' + mkws.M('Termlists') + '
'); + for (var i = 0; i < facets.length; i++) { + acc.push('
', '
'); + } + this.node.html(acc.join('')); - 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; - } + this.autosearch(); +}); - // display if we first got results - $(that.node).show(); - var acc = []; - acc.push('
' + M('Termlists') + '
'); +mkws.registerWidgetType('Facet', function() { + var facetConfig = { + xtargets: [ "Sources", 16, false ], + subject: [ "Subjects", 10, true ], + author: [ "Authors", 10, true ] + } - 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); - } - } + var that = this; + var name = that.config.facet; + var ref = facetConfig[name] || [ "Unknown", 10, true ]; + var caption = this.config['facet_caption_' + name] || ref[0]; + var max = parseInt(this.config['facet_max_' + name] || ref[1]); + var pzIndex = ref[2] ? name : null; - $(that.node).html(acc.join('')); + that.toString = function() { + return '[Widget ' + that.team.name() + ':' + that.type + '(' + name + ')]'; + }; - 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('' + data[i].name + '' - + ' ' + data[i].freq + ''); - acc.push('
'); - } - acc.push('
'); - } - }); + that.team.queue("termlists").subscribe(function(data) { + data = data[name]; + + var teamName = that.team.name(); + var acc = []; + 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('
'); + } - widget.autosearch(that); + that.node.html(acc.join('')); + }); });