X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=4a837276181bfe69de989578dab3ccb14dbf024e;hb=0cb026f761fa9a0d142d44d70af9902ba19b9a17;hp=4250f88993332523d1915f4b9a41ab995e9b4464;hpb=85f601df4d3c610a4441e8002192cd78e6bcb3a0;p=mkws-moved-to-github.git diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index 4250f88..4a83727 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -1,55 +1,72 @@ -mkws.facetConfig = { +mkws.registerWidgetType('Termlists', function() { + 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('')); + + this.autosearch(); +}); + + +mkws.registerWidgetType('Facet', function() { + 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; -mkws.registerWidgetType('Termlists', function() { - var that = this; - var facets = that.config.facets; + that.toString = function() { + return '[Widget ' + that.team.name() + ':' + that.type + '(' + name + ')]'; + }; - this.team.queue("termlists").subscribe(function(data) { - // display if we first got results - $(that.node).show(); - }); + that.team.queue("termlists").subscribe(function(data) { + data = data[name]; - widget.autosearch(that); -}); + 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('
'); + } + that.node.html(acc.join('')); + }); -mkws.registerWidgetType('Facet', function() { - var that = this; - 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('')); - }); + this.autosearch(); });