X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=1f13820e4177293d8d551d6ce920390ae197058a;hb=ed4b067f8083566fa9de056fd7629278228bb2a5;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..1f13820 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -1,77 +1,72 @@ 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(); + }); - 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; - } + 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('')); - // display if we first got results - $(that.node).show(); + this.autosearch(); +}); - 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); - } - } +mkws.registerWidgetType('Facet', function() { + var facetConfig = { + xtargets: [ "Sources", 16, false ], + subject: [ "Subjects", 10, true ], + author: [ "Authors", 10, true ] + } - $(that.node).html(acc.join('')); + 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; - for (var i = 0; i < facets.length; i++) { - var name = facets[i] - var ref = facetConfig[name]; - var caption = ref[0]; + that.toString = function() { + return '[Widget ' + that.team.name() + ':' + that.type + '(' + name + ')]'; + }; - that.log("setting HTML for facet '" + name + "'"); - that.team.findnode('.mkwsFacet' + caption).html(output[name]); - } + that.team.queue("termlists").subscribe(function(data) { + data = data[name]; - function addSingleFacet(acc, caption, data, max, pzIndex) { - var teamName = that.team.name(); - acc.push('
'); + var teamName = that.team.name(); + var acc = []; + var template = that.team.loadTemplate('facetTitle-' + caption, mkws.M(caption)) + var title = template({ query: that.config.query }); + acc.push('
' + title + '
'); + for (var i = 0; i < data.length && i < max; i++) { + acc.push('
'); + acc.push('' + data[i].name + '' + + ' ' + data[i].freq + ''); + acc.push('
'); + } - var a2 = []; - a2.push('
' + M(caption) + '
'); - for (var i = 0; i < data.length && i < max; i++) { - a2.push('
'); - a2.push('' + data[i].name + '' - + ' ' + data[i].freq + ''); - a2.push('
'); - } - acc.push('
'); - return a2.join(''); - } - }); + that.node.html(acc.join('')); + }); - widget.autosearch(that); + this.autosearch(); });