Less verbose logging when a widget makes new HTML on creation.
[mkws-moved-to-github.git] / src / mkws-widget-termlists.js
index 36cfc1d..33d12b9 100644 (file)
@@ -1,13 +1,23 @@
 mkws.registerWidgetType('Termlists', function() {
     var that = this;
-    var facets = that.config.facets;
 
+    // Initially hide the termlists; display when we get results
+    $(document).ready(function() {
+        $(that.node).hide();
+    });
     this.team.queue("termlists").subscribe(function(data) {
-       // display if we first got results
        $(that.node).show();
     });
 
-    widget.autosearch(that);
+    var acc = [];
+    var facets = this.config.facets;
+    acc.push('<div class="title">' + 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(''));
+
+    widget.autosearch(this);
 });
 
 
@@ -19,7 +29,6 @@ mkws.registerWidgetType('Facet', function() {
     }
 
     var that = this;
-    var teamName = that.team.name();
     var name = that.config.facet;
     var ref = facetConfig[name] || alert("no facet definition for '" + name + "'");
     var caption = ref[0];
@@ -29,6 +38,7 @@ mkws.registerWidgetType('Facet', function() {
     that.team.queue("termlists").subscribe(function(data) {
        data = data[name];
 
+       var teamName = that.team.name();
        var acc = [];
        acc.push('<div class="termtitle">' + mkws.M(caption) + '</div>');
        for (var i = 0; i < data.length && i < max; i++) {