X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;fp=src%2Fmkws-widget-termlists.js;h=0000000000000000000000000000000000000000;hp=e3dc55e2443b3daaaa8cc4780aae70ab0730f470;hb=4cd2b3de24d03395424d3f6fc58fe9dbaa87c22d;hpb=d078290221640ee4334c3953e80972515cb10d21 diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js deleted file mode 100644 index e3dc55e..0000000 --- a/src/mkws-widget-termlists.js +++ /dev/null @@ -1,81 +0,0 @@ -mkws.registerWidgetType('termlists', function() { - // 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"); - }); - - 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() { - 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; - - that.toString = function() { - return '[Widget ' + team.name() + ':' + that.type + '(' + name + ')]'; - }; - - 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, - field: data[i].id, - 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-" + 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(); -});