X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=43737c1b961626990232ae6a6a0662af577d317a;hp=b9e7b11ca87e8a1136e174f2bd7ee1ccba8b0b44;hb=6f7d5a4860ec055c40290325b7c1498cb64ad79c;hpb=8c4fbdc727427c3e2fe320aa7a6a0ecd72a72116 diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index b9e7b11..43737c1 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -1,60 +1,79 @@ mkws.registerWidgetType('Termlists', function() { - var that = this; - var M = mkws.M; + // Initially hide the termlists; display when we get results + var that = this; + var team = this.team; + team.queue("termlists").subscribe(function(data) { + that.node.addClass("active"); + }); - 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; - } - - // display if we first got results - $(that.node).show(); - - var acc = []; - acc.push('
' + M('Termlists') + '
'); + var template = team.loadTemplate(this.config.template || "Termlists"); + this.node.html(template({ + team: team.name(), + facets: this.config.facets + })); + this.autosearch(); +}); - for (var i = 0; i < facets.length; i++) { - if (facets[i] == "xtargets") { - addSingleFacet(acc, "Sources", data.xtargets, 16, null); - } else if (facets[i] == "subject") { - addSingleFacet(acc, "Subjects", data.subject, 10, "subject"); - } else if (facets[i] == "author") { - addSingleFacet(acc, "Authors", data.author, 10, "author"); - } else { - alert("bad facet configuration: '" + facets[i] + "'"); - } - } - $(that.node).html(acc.join('')); +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]; + var max = parseInt(this.config['facet_max_' + name] || ref[1]); + var pzIndex = ref[2] ? name : null; - function addSingleFacet(acc, caption, data, max, pzIndex) { - var teamName = that.team.name(); - acc.push('
'); - acc.push('
' + M(caption) + '
'); - for (var i = 0; i < data.length && i < max; i++) { - acc.push('
'); - acc.push('' + data[i].name + '' - + ' ' + data[i].freq + ''); - acc.push('
'); - } - acc.push('
'); - } - }); + that.toString = function() { + return '[Widget ' + team.name() + ':' + that.type + '(' + name + ')]'; + }; - widget.autosearch(that); + team.queue("termlists").subscribe(function(data) { + data = data[name]; + var terms = []; + var teamName = team.name(); + for (var i = 0; i < data.length && i < max; i++) { + var linkdata = ""; + var action = ""; + if (!pzIndex) { + // Special case: target selection + linkdata += ('target_id='+data[i].id+' '); + if (!team.targetFiltered(data[i].id)) { + action = 'mkws.limitTarget(\'' + teamName + '\', this.getAttribute(\'target_id\'),this.firstChild.nodeValue)'; + } + } else { + action = 'mkws.limitQuery(\'' + teamName + '\', \'' + pzIndex + '\', this.firstChild.nodeValue)'; + } + linkdata += 'onclick="' + action + ';return false;"'; + terms.push({ + term: data[i].name, + count: data[i].freq, + linkdata: linkdata + }); + } + // 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, + terms: terms + })); + }); + this.autosearch(); });