Ignore vim swap files.
[mkws-moved-to-github.git] / src / mkws-widget-termlists.js
index ef89ad8..1757b62 100644 (file)
@@ -1,83 +1,70 @@
 mkws.registerWidgetType('Termlists', function() {
-    var that = this;
-    var M = mkws.M;
+  var that = this;
 
-    var facetConfig = {
-       xtargets: [ "Sources",  16, false ],
-       subject:  [ "Subjects", 10, true ],
-       author:   [ "Authors",  10, true ]
-    }
-
-    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();
+  // 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 output = {};
-       var acc = [];
-       acc.push('<div class="title">' + M('Termlists') + '</div>');
+  var acc = [];
+  var facets = this.config.facets;
+  acc.push('<div class="mkwsTermlistsTitle">' + mkws.M('Termlists') + '</div>');
+  for (var i = 0; i < facets.length; i++) {
+    acc.push('<div class="mkwsFacet mkwsTeam_', this.team.name(), '" data-mkws-facet="', facets[i], '">', '</div>');
+  }
+  this.node.html(acc.join(''));
 
-       for (var i = 0; i < facets.length; i++) {
-           var name = facets[i]
-           var ref = facetConfig[name];
-           if (!ref) {
-               alert("bad facet configuration: '" + name + "'");
-           } else {
-               addSingleScaffold(acc, ref[0], data[name], ref[1], ref[2] ? name : null);
-               output[name] = makeSingleFacet(acc, ref[0], data[name], ref[1], ref[2] ? name : null);
-           }
-       }
+  this.autosearch();
+});
 
-       $(that.node).html(acc.join(''));
 
-       for (var i = 0; i < facets.length; i++) {
-           var name = facets[i]
-           var ref = facetConfig[name];
-           var caption = ref[0];
+mkws.registerWidgetType('Facet', function() {
+  var facetConfig = {
+    xtargets: [ "Sources",  16, false ],
+    subject:  [ "Subjects", 10, true ],
+    author:   [ "Authors",  10, true ]
+  }
 
-           that.log("setting HTML for facet '" + name + "'");
-           that.team.findnode('.mkwsFacet' + caption).html(output[name]);
-       }
+  var that = this;
+  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 addSingleScaffold(acc, caption, data, max, pzIndex) {
-           var teamName = that.team.name();
-           acc.push('<div class="mkwsFacet mkwsFacet' + caption + ' mkwsTeam_' + teamName + '">');
-           acc.push('</div>');
-       }
+  that.toString = function() {
+    return '[Widget ' + that.team.name() + ':' + that.type + '(' + name + ')]';
+  };
 
+  that.team.queue("termlists").subscribe(function(data) {
+    data = data[name];
 
-       function makeSingleFacet(acc, caption, data, max, pzIndex) {
-           var teamName = that.team.name();
+    var teamName = that.team.name();
+    var acc = [];
+    acc.push('<div class="mkwsFacetTitle">' + mkws.M(caption) + '</div>');
+    for (var i = 0; i < data.length && i < max; i++) {
+      acc.push('<div class="mkwsTerm">');
+      acc.push('<a href="#" ');
+      var action = '';
+      if (!pzIndex) {
+        // Special case: target selection
+        acc.push('target_id='+data[i].id+' ');
+        if (!that.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)';
+      }
+      acc.push('onclick="' + action + ';return false;">' + data[i].name + '</a>'
+               + ' <span>' + data[i].freq + '</span>');
+      acc.push('</div>');
+    }
 
-           var a2 = [];
-           a2.push('<div class="termtitle">' + M(caption) + '</div>');
-           for (var i = 0; i < data.length && i < max; i++) {
-               a2.push('<div class="term">');
-               a2.push('<a href="#" ');
-               var action = '';
-               if (!pzIndex) {
-                   // Special case: target selection
-                   a2.push('target_id='+data[i].id+' ');
-                   if (!that.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)';
-               }
-               a2.push('onclick="' + action + ';return false;">' + data[i].name + '</a>'
-                        + ' <span>' + data[i].freq + '</span>');
-               a2.push('</div>');
-           }
-           return a2.join('');
-       }
-    });
+    that.node.html(acc.join(''));
+  });
 
-    widget.autosearch(that);
+  this.autosearch();
 });