Differences between various facets are now driven by a table rather
[mkws-moved-to-github.git] / src / mkws-widget-termlists.js
index 66b8a4d..6175100 100644 (file)
@@ -2,12 +2,13 @@ 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;
-       }
+    var facetConfig = {
+       xtargets: [ "Sources",  16, false ],
+       subject:  [ "Subjects", 10, true ],
+       author:   [ "Author",   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) {
@@ -23,14 +24,12 @@ mkws.registerWidgetType('Termlists', function() {
        acc.push('<div class="title">' + M('Termlists') + '</div>');
 
        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");
+           var name = facets[i]
+           var ref = facetConfig[name];
+           if (!ref) {
+               alert("bad facet configuration: '" + name + "'");
            } else {
-               alert("bad facet configuration: '" + facets[i] + "'");
+               addSingleFacet(acc, ref[0], data[name], ref[1], ref[2] ? name : null);
            }
        }
 
@@ -38,7 +37,7 @@ mkws.registerWidgetType('Termlists', function() {
 
        function addSingleFacet(acc, caption, data, max, pzIndex) {
            var teamName = that.team.name();
-           acc.push('<div class="facet mkwsFacet' + caption + ' mkwsTeam_' + teamName + '">');
+           acc.push('<div class="mkwsFacet mkwsFacet' + caption + ' mkwsTeam_' + teamName + '">');
            acc.push('<div class="termtitle">' + M(caption) + '</div>');
            for (var i = 0; i < data.length && i < max; i++) {
                acc.push('<div class="term">');