X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=4052251142361921cb291163655ad2b5e92f38a9;hb=1b1930f16512cb3718ad3fd84c1eb5e42d9f1488;hp=54c65c4212587f000b8e0e1247a4d8f188c546f7;hpb=e585a73f9012fe534c2b84859923c2c5fc5ff589;p=mkws-moved-to-github.git diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index 54c65c4..4052251 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -2,16 +2,13 @@ mkws.registerWidgetType('Termlists', function() { // Initially hide the termlists; display when we get results var that = this; var team = this.team; - mkws.$(document).ready(function() { - that.node.hide(); - }); team.queue("termlists").subscribe(function(data) { - that.node.show(); + that.node.addClass("active"); }); var template = team.loadTemplate(this.config.template || "Termlists"); this.node.html(template({ - team: team, + team: team.name(), facets: this.config.facets })); this.autosearch(); @@ -55,14 +52,28 @@ mkws.registerWidgetType('Facet', function() { linkdata += 'onclick="' + action + ';return false;"'; terms.push({ term: data[i].name, + field: data[i].id, count: data[i].freq, linkdata: linkdata }); } - var template = team.loadTemplate(that.config.template || "Facet"); + // 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-" + caption); + if (template) { + that.log("Using Facet-" + caption + " template.") + } else { + that.log("No " + caption + " specific template, using default.") + template = team.loadTemplate("Facet"); + } + } that.node.html(template({ name: name, caption: caption, + query: that.config.query, terms: terms })); });