X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=fef616f71ae8e6991ce7416ffcbcdfdd0a60267a;hb=e32341fa8876fbada43f2a8b38bcc8e3c06d8f33;hp=3ea68f5cbbeca4fe0611a9be6791bb9a1a3ceb85;hpb=2202c0088025b972ef366e9139987298afdaccda;p=mkws-moved-to-github.git diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index 3ea68f5..fef616f 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -1,68 +1,82 @@ mkws.registerWidgetType('Termlists', function() { - var that = this; + var that = this; - // Initially hide the termlists; display when we get results - $(document).ready(function() { - $(that.node).hide(); - }); - this.team.queue("termlists").subscribe(function(data) { - $(that.node).show(); - }); + // 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('')); + 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); + this.autosearch(); }); mkws.registerWidgetType('Facet', function() { - var facetConfig = { - xtargets: [ "Sources", 16, false ], - subject: [ "Subjects", 10, true ], - author: [ "Authors", 10, true ] - } + 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; - var that = this; - var name = that.config.facet; - var ref = facetConfig[name] || alert("no facet definition for '" + name + "'"); - var caption = ref[0]; - var max = ref[1]; - var pzIndex = ref[2] ? name : null; + that.toString = function() { + return '[Widget ' + that.team.name() + ':' + that.type + '(' + name + ')]'; + }; - that.toString = function() { - return '[Widget ' + that.team.name() + ':' + that.type + '(' + name + ')]'; - }; + var t2 = that.team.loadTemplate('Facet-' + caption); + that.log("template for Facet-" + caption + " is " + !!t2); + if (!t2) { + that.log("no " + caption + "-specific template, falling back"); + t2 = that.team.loadTemplate('Facet'); + } + that.log("template for Facet is " + !!t2); - that.team.queue("termlists").subscribe(function(data) { - data = data[name]; + that.team.queue("termlists").subscribe(function(data) { + data = data[name]; + var t1 = that.team.loadTemplate('facetTitle-' + caption, mkws.M(caption)) + var title = t1({ query: that.config.query }); + var acc = []; + acc.push('
', title, '
'); + + var teamName = that.team.name(); + for (var i = 0; i < data.length && i < max; i++) { + var fn, field; + // General case modifies the query; special case selects a target + if (pzIndex) { + fn = 'limitQuery'; field = pzIndex; + } else if (!that.team.targetFiltered(data[i].id)) { + fn = 'limitTarget'; field = data[i].id; + } + + var s = t2({ + team: teamName, + fn: fn, + field: field, + term: data[i].name, + count: data[i].freq, + query: that.config.query + }); + acc.push('
', s, '
'); + } - 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('
'); - } + that.node.html(acc.join('')); + }); - $(that.node).html(acc.join('')); - }); + this.autosearch(); });