From 7c7522c8959eda9e0484bd61c6c32b921fd6c6e0 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Fri, 4 Apr 2014 14:07:40 +0100 Subject: [PATCH] Move Termlists widget to its own file. --- src/mkws-widgets.js | 67 --------------------------------------------------- 1 file changed, 67 deletions(-) diff --git a/src/mkws-widgets.js b/src/mkws-widgets.js index 98a48bd..b5d1373 100644 --- a/src/mkws-widgets.js +++ b/src/mkws-widgets.js @@ -154,73 +154,6 @@ mkws.registerWidgetType('Stat', function() { }); -mkws.registerWidgetType('Termlists', function() { - var that = this; - var M = mkws.M; - - this.team.queue("termlists").subscribe(function(data) { - if (!that.node) { - alert("termlists event when there are no termlists"); - return; - } - - // 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') + '
'); - - 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('')); - - 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('
'); - } - }); - - widget.autosearch(that); -}); - - mkws.registerWidgetType('Pager', function() { var that = this; var M = mkws.M; -- 1.7.10.4