X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=acd9dcf5d15bb8745a2927a6333f8d2b0093b096;hb=d1104229b6ce759a8f825f39d58bde19813a223c;hp=60ba340d09e06f0f2c5a5b967e3130de2136c856;hpb=b595a76df4a909df992d183f1fbeb66a2a25101e;p=mkws-moved-to-github.git diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index 60ba340..acd9dcf 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -1,56 +1,68 @@ mkws.registerWidgetType('Termlists', function() { - var that = this; - var facets = that.config.facets; - - this.team.queue("termlists").subscribe(function(data) { - // display if we first got results - $(that.node).show(); - }); - - for (var i = 0; i < facets.length; i++) { - var name = facets[i] - var ref = mkws.facetConfig[name]; - if (!ref) { - alert("bad facet configuration: '" + name + "'"); - } - } - - widget.autosearch(that); + var that = this; + + // 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('')); + + widget.autosearch(this); }); mkws.registerWidgetType('Facet', function() { - var that = this; + var facetConfig = { + xtargets: [ "Sources", 16, false ], + subject: [ "Subjects", 10, true ], + author: [ "Authors", 10, true ] + } + + 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.toString = function() { + return '[Widget ' + that.team.name() + ':' + that.type + '(' + name + ')]'; + }; + + that.team.queue("termlists").subscribe(function(data) { + data = data[name]; + var teamName = that.team.name(); - var name = that.config.facet; - var ref = mkws.facetConfig[name] || alert("no facet definition for '" + name + "'"); - var caption = ref[0]; - var max = ref[1]; - var pzIndex = ref[2] ? name : null; - - that.team.queue("termlists").subscribe(function(data) { - data = data[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('
'); - } - - $(that.node).html(acc.join('')); - }); + 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('
'); + } + + that.node.html(acc.join('')); + }); });