X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=e3dc55e2443b3daaaa8cc4780aae70ab0730f470;hp=1757b62a336e9440da7813e81ac7f47a4d090ad7;hb=8b1e67064744864427ae995ebbb08819794891fa;hpb=70370d9efd6fd81f5649958adbea8fd26ab0c7dc diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index 1757b62..e3dc55e 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -1,34 +1,28 @@ -mkws.registerWidgetType('Termlists', function() { - var that = this; - +mkws.registerWidgetType('termlists', function() { // 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 that = this; + var team = this.team; + team.queue("termlists").subscribe(function(data) { + that.node.addClass("active"); }); - 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 template = team.loadTemplate(this.config.template || "termlists"); + this.node.html(template({ + team: team.name(), + facets: this.config.facets + })); this.autosearch(); }); -mkws.registerWidgetType('Facet', function() { +mkws.registerWidgetType('facet', function() { var facetConfig = { xtargets: [ "Sources", 16, false ], subject: [ "Subjects", 10, true ], author: [ "Authors", 10, true ] } - var that = this; + var team = this.team; var name = that.config.facet; var ref = facetConfig[name] || [ "Unknown", 10, true ]; var caption = this.config['facet_caption_' + name] || ref[0]; @@ -36,35 +30,52 @@ mkws.registerWidgetType('Facet', function() { var pzIndex = ref[2] ? name : null; that.toString = function() { - return '[Widget ' + that.team.name() + ':' + that.type + '(' + name + ')]'; + return '[Widget ' + team.name() + ':' + that.type + '(' + name + ')]'; }; - that.team.queue("termlists").subscribe(function(data) { + team.queue("termlists").subscribe(function(data) { data = data[name]; - - var teamName = that.team.name(); - var acc = []; - acc.push('
' + mkws.M(caption) + '
'); + var terms = []; + var teamName = team.name(); for (var i = 0; i < data.length && i < max; i++) { - acc.push('
'); - acc.push('' + data[i].name + '' - + ' ' + data[i].freq + ''); - acc.push('
'); + linkdata += 'onclick="' + action + ';return false;"'; + terms.push({ + term: data[i].name, + field: data[i].id, + count: data[i].freq, + linkdata: linkdata + }); } - - that.node.html(acc.join('')); + // configured template > facet specific template > default facet template + var template; + if (that.config.template) { + template = team.loadTemplate(that.config.template); + } else { + template = team.loadTemplate("facet-" + name); + if (template) { + that.log("Using facet-" + name + " template.") + } else { + that.log("No " + name + " specific template, using default.") + template = team.loadTemplate("facet"); + } + } + that.node.html(template({ + name: name, + caption: caption, + query: that.config.query, + terms: terms + })); }); - this.autosearch(); });