Part of MKWS-58.
[mkws-moved-to-github.git] / src / mkws-widget-main.js
index 573eb04..446fe75 100644 (file)
+(function($) { // jQuery wrapper
+
 // Functions follow for promoting the regular widget object into
 // widgets of specific types. These could be moved into their own
 // source files.
 
 
-mkws.registerWidgetType('Targets', function() {
-    var that = this;
-    var M = mkws.M;
-
-    $(this.node).html('\
-<div class="mkwsBytarget mkwsTeam_' + this.team.name() + '">\
-No information available yet.\
-</div>');
-    $(this.node).css("display", "none");
-
-    this.team.queue("targets").subscribe(function(data) {
-       var table ='<table><thead><tr>' +
-           '<td>' + M('Target ID') + '</td>' +
-           '<td>' + M('Hits') + '</td>' +
-           '<td>' + M('Diags') + '</td>' +
-           '<td>' + M('Records') + '</td>' +
-           '<td>' + M('State') + '</td>' +
-           '</tr></thead><tbody>';
-
-       for (var i = 0; i < data.length; i++) {
-           table += "<tr><td>" + data[i].id +
-               "</td><td>" + data[i].hits +
-               "</td><td>" + data[i].diagnostic +
-               "</td><td>" + data[i].records +
-               "</td><td>" + data[i].state + "</td></tr>";
-       }
-
-       table += '</tbody></table>';
-       var subnode = $(that.node).children('.mkwsBytarget');
-       subnode.html(table);
-    });
-});
-
-
-mkws.registerWidgetType('Stat', function() {
-    var that = this;
-    var M = mkws.M;
+mkws.registerWidgetType('targets', function() {
+  if (!this.config.show_switch) return;
+  var that = this;
+
+  this.node.html('No information available yet.');
+  this.node.css("display", "none");
+
+  this.team.queue("targets").subscribe(function(data) {
+    // There is a bug in pz2.js wherein it makes each data object an array but
+    // simply assigns properties to it.
+    // TODO: remove this when PAZ-946 is addressed.
+    var cleandata = [];
+    for (var i = 0; i < data.length; i++) {
+      var cur = {};
+      cur.name = data[i].name;
+      cur.id = data[i].id;
+      cur.hits = data[i].hits;
+      cur.diagnostic = data[i].diagnostic;
+      cur.message = data[i].message;
+      cur.records = data[i].records;
+      cur.state = data[i].state.replace(/^Client_/, '');
+      cleandata.push(cur);
+    }
 
-    this.team.queue("stat").subscribe(function(data) {
-       if (that.node.length === 0)  alert("huh?!");
+    cleandata.sort(function(a,b) { return a.name.localeCompare(b.name) });
 
-       $(that.node).html('<span class="head">' + M('Status info') + '</span>' +
-           ' -- ' +
-           '<span class="clients">' + M('Active clients') + ': ' + data.activeclients + '/' + data.clients + '</span>' +
-           ' -- ' +
-           '<span class="records">' + M('Retrieved records') + ': ' + data.records + '/' + data.hits + '</span>');
-    });
+    var template = that.team.loadTemplate(that.config.template || "targets");
+    that.node.html(template({data: cleandata}));
+  });
 });
 
 
-mkws.registerWidgetType('Pager', function() {
-    var that = this;
-    var M = mkws.M;
-
-    this.team.queue("pager").subscribe(function(data) {
-       $(that.node).html(drawPager(data))
-
-       function drawPager(data) {
-           var teamName = that.team.name();
-           var s = '<div style="float: right">' + M('Displaying') + ': '
-               + (data.start + 1) + ' ' + M('to') + ' ' + (data.start + data.num) +
-               ' ' + M('of') + ' ' + data.merged + ' (' + M('found') + ': '
-               + data.total + ')</div>';
-
-           //client indexes pages from 1 but pz2 from 0
-           var onsides = 6;
-           var pages = Math.ceil(that.team.totalRecordCount() / that.team.perpage());
-           var currentPage = that.team.currentPage();
-
-           var firstClkbl = (currentPage - onsides > 0)
-               ? currentPage - onsides
-               : 1;
-
-           var lastClkbl = firstClkbl + 2*onsides < pages
-               ? firstClkbl + 2*onsides
-               : pages;
-
-           var prev = '<span class="mkwsPrev">&#60;&#60; ' + M('Prev') + '</span> | ';
-           if (currentPage > 1)
-               prev = '<a href="#" class="mkwsPrev" onclick="mkws.pagerPrev(\'' + teamName + '\');">'
-               +'&#60;&#60; ' + M('Prev') + '</a> | ';
-
-           var middle = '';
-           for(var i = firstClkbl; i <= lastClkbl; i++) {
-               var numLabel = i;
-               if(i == currentPage)
-                   numLabel = '<span class="mkwsSelected">' + i + '</span>';
-
-               middle += '<a href="#" onclick="mkws.showPage(\'' + teamName + '\', ' + i + ')"> '
-                   + numLabel + ' </a>';
-           }
+mkws.registerWidgetType('stat', function() {
+  var that = this;
+  this.team.queue("stat").subscribe(function(data) {
+    var template = that.team.loadTemplate(that.config.template || "stat");
+    that.node.html(template(data));
+  });
+});
 
-           var next = ' | <span class="mkwsNext">' + M('Next') + ' &#62;&#62;</span>';
-           if (pages - currentPage > 0)
-               next = ' | <a href="#" class="mkwsNext" onclick="mkws.pagerNext(\'' + teamName + '\')">'
-               + M('Next') + ' &#62;&#62;</a>';
 
-           var predots = '';
-           if (firstClkbl > 1)
-               predots = '...';
+mkws.registerWidgetType('pager', function() {
+  var that = this;
+  var M = mkws.M;
+
+  this.team.queue("pager").subscribe(function(data) {
+    var teamName = that.team.name();
+    var output = {};
+    output.first = data.start + 1;
+    output.last = data.start + data.num;
+    output.count = data.merged;
+    output.found = data.total;
+
+    //client indexes pages from 1 but pz2 from 0
+    var onsides = 5;
+    var pages = Math.ceil(that.team.totalRecordCount() / that.team.perpage());
+    var currentPage = that.team.currentPage();
+
+    var firstClkbl = (currentPage - onsides > 0)
+      ? currentPage - onsides
+      : 1;
+    var lastClkbl = firstClkbl + 2*onsides < pages
+      ? firstClkbl + 2*onsides
+      : pages;
+
+    if (firstClkbl > 1) output.morePrev = true;
+    if (lastClkbl < pages) output.moreNext = true;
+
+    if (currentPage > 1) output.prevClick = "mkws.pagerPrev(\'" + teamName + "\');";
+
+    output.pages = [];
+    for(var i = firstClkbl; i <= lastClkbl; i++) {
+      var o = {};
+      o.number = i;
+      if (i !== currentPage) {
+        o.click = "mkws.showPage(\'" + teamName + "\', " + i + ");";
+      }
+      output.pages.push(o);
+    }
 
-           var postdots = '';
-           if (lastClkbl < pages)
-               postdots = '...';
+    if (pages - currentPage > 0) output.nextClick = "mkws.pagerNext(\'" + teamName + "\')";
 
-           s += '<div style="float: clear">'
-               + prev + predots + middle + postdots + next + '</div>';
+    var template = that.team.loadTemplate(that.config.template || "pager");
+    that.node.html(template(output));
+  });
+});
 
-           return s;
-       }
+mkws.registerWidgetType('details', function() {
+  var that = this;
+  var recid = that.node.attr("data-mkws-recid");
+  if (this.team.gotRecords()) { 
+    that.team.fetchDetails(recid);
+  } else {
+    this.team.queue("firstrecords").subscribe(function() {
+      that.team.fetchDetails(recid);
     });
+  }
+  this.team.queue("record").subscribe(function(data) {
+    if ($.inArray(recid, data.recid) > -1) {
+      var template = that.team.loadTemplate(that.config.template || "details");
+      that.node.html(template(data));
+    }
+  });
 });
 
+mkws.registerWidgetType('records', function() {
+  var that = this;
+  var team = this.team;
+  var m_data;
+  var m_needRedraw = false;
+  var m_frozen = false;
+
+  this.team.queue("searchtriggered").subscribe(function() {
+    var op = that.config.newsearch_opacity;
+    if (op !== undefined) { that.node.fadeTo(500, op); }
+  });
+
+  function refreshRecordData() {
+    that.node.css('opacity', 1);
+
+    if (m_needRedraw) {
+      for (var i = 0; i < m_data.hits.length; i++) {
+        var hit = m_data.hits[i];
+        hit.detailLinkId = team.recordElementId(hit.recid[0]);
+        hit.detailClick = "mkws.showDetails('" + team.name() + "', '" + hit.recid[0] + "');return false;";
+        hit.containerClass = "mkws-summary mkwsSummary mkws-team-" + team.name();
+        hit.containerClass += " " + hit.detailLinkId;
+        // ### At some point, we may be able to move the
+        // m_currentRecordId and m_currentRecordData members
+        // from the team object into this widget.
+        if (hit.recid == team.currentRecordId()) {
+          if (team.currentRecordData()) {
+            hit.renderedDetails = team.renderDetails(team.currentRecordData());
+          } 
+        }
+      }
+      var template = team.loadTemplate(that.config.template || "records");
+      var summaryPartial = team.loadTemplate(that.config['summary-template'] || "summary");
+      var tdata = $.extend({}, {"hits": m_data.hits}, that.config.template_vars);
+      that.node.html(template(tdata, {"partials":{"summary":summaryPartial}}));
+    }
 
-mkws.registerWidgetType('Results', function() {
-    // Nothing to do apart from act as an autosearch trigger
-    // Contained elements do all the real work
-    widget.autosearch(this);
-});
-
+    m_needRedraw = false;
+  }
 
-mkws.registerWidgetType('Records', function() {
-    var that = this;
-    var team = this.team;
-
-    this.team.queue("records").subscribe(function(data) {
-       var html = [];
-       for (var i = 0; i < data.hits.length; i++) {
-           var hit = data.hits[i];
-            that.team.queue("record").publish(hit);
-           var divId = team.recordElementId(hit.recid[0]);
-           html.push('<div class="record mkwsTeam_' + team.name() + ' ' + divId + '">', renderSummary(hit), '</div>');
-           // ### At some point, we may be able to move the
-           // m_currentRecordId and m_currentRecordData members
-           // from the team object into this widget.
-           if (hit.recid == team.currentRecordId()) {
-               if (team.currentRecordData())
-                   html.push(team.renderDetails(team.currentRecordData()));
-           }
-       }
-       $(that.node).html(html.join(''));
-
-       function renderSummary(hit) {
-           var template = team.loadTemplate(that.config.template || "Summary");
-           hit._id = team.recordElementId(hit.recid[0]);
-           hit._onclick = "mkws.showDetails('" + team.name() + "', '" + hit.recid[0] + "');return false;"
-           return template(hit);
-       }
-    });
+  function setRecordData(data) {
+    m_data = data;
+    m_needRedraw = true;
+    if (!m_frozen) {
+      refreshRecordData();
+    }
+  }
+
+  this.team.queue("records").subscribe(setRecordData);
+
+  this.node.mousemove(function() {
+    that.info("freezing display records");
+    that.node.css('opacity', 0.5);
+    m_frozen = true;
+  });
+
+  this.node.mouseleave(function() {
+    that.info("refreshing records");
+    that.node.css('opacity', 1);
+    m_frozen = false;
+    refreshRecordData();
+  });
+
+/*
+  var m_busy = false;
+  this.node.mousemove(function() {
+    if (!m_busy) {
+      m_busy = true;
+      that.info("making semi-transparent in 0.001 s");
+      that.node.fadeTo(1, 0.5, function() {
+        that.info("making opaque in 2 s");
+        that.node.fadeTo(2000, 1, function() {
+          that.info("done making opaque");
+          m_busy = false;
+        });
+      });
+    }
+  });
+*/
 
-    widget.autosearch(that);
+  that.autosearch();
 });
 
 
-mkws.registerWidgetType('Navi', function() {
-    var that = this;
-    var teamName = this.team.name();
-    var M = mkws.M;
+mkws.registerWidgetType('navi', function() {
+  var that = this;
+  var teamName = this.team.name();
 
-    this.team.queue("navi").subscribe(function() {
-       var filters = that.team.filters();
-       var text = "";
+  this.team.queue("searchtriggered").subscribe(function() {
+    var filters = that.team.filters();
+    var output = {filters:[]};
 
-       filters.visitTargets(function(id, name) {
-           if (text) text += " | ";
-           text += M('source') + ': <a class="crossout" href="#" onclick="mkws.delimitTarget(\'' + teamName +
-               "', '" + id + "'" + ');return false;">' + name + '</a>';
-       });
-
-       filters.visitFields(function(field, value) {
-           if (text) text += " | ";
-           text += M(field) + ': <a class="crossout" href="#" onclick="mkws.delimitQuery(\'' + teamName +
-               "', '" + field + "', '" + value + "'" +
-               ');return false;">' + value + '</a>';
-       });
+    filters.visitTargets(function(id, name) {
+      var cur = {};
+      cur.facet = 'source';
+      cur.value = name;
+      cur.click = "mkws.delimitTarget('" + teamName + "', '" + id + "'); return false;";
+      output.filters.push(cur);
+    });
 
-       $(that.node).html(text);
+    filters.visitFields(function(field, value) {
+      var cur = {};
+      cur.facet = field;
+      cur.value = value;
+      cur.click = "mkws.delimitQuery('" + teamName + "', '" + field + "', '" + value + "'" + ");return false;";
+      output.filters.push(cur);
     });
+
+    var template = that.team.loadTemplate(that.config.template || "navi");
+    that.node.html(template(output));
+  });
 });
 
 
 // It seems this and the Perpage widget doen't need to subscribe to
 // anything, since they produce events rather than consuming them.
 //
-mkws.registerWidgetType('Sort', function() {
-    var that = this;
-
-    $(this.node).change(function() {
-       that.team.set_sortOrder($(that.node).val());
-       if (that.team.submitted()) {
-           that.team.reShow();
-       }
-       return false;
-    });
-});
-
+mkws.registerWidgetType('sort', function() {
+  var that = this;
 
-mkws.registerWidgetType('Perpage', function() {
-    var that = this;
-
-    $(this.node).change(function() {
-       that.team.set_perpage($(that.node).val());
-       if (that.team.submitted()) {
-           that.team.reShow();
-       }
-       return false;
-    });
+  this.node.change(function() {
+    that.team.set_sortOrder(that.node.val());
+    if (that.team.submitted()) {
+      that.team.reShow();
+    }
+    return false;
+  });
 });
 
 
-mkws.registerWidgetType('Done', function() {
-    var that = this;
+mkws.registerWidgetType('per-page', function() {
+  var that = this;
 
-    this.team.queue("complete").subscribe(function(n) {
-       $(that.node).html("Search complete: found " + n + " records");
-    });
+  this.node.change(function() {
+    that.team.set_perpage(that.node.val());
+    if (that.team.submitted()) {
+      that.team.reShow();
+    }
+    return false;
+  });
 });
 
 
-mkws.registerWidgetType('Switch', function() {
-    var tname = this.team.name();
-    $(this.node).html('\
-<a href="#" onclick="mkws.switchView(\'' + tname + '\', \'records\')">Records</a><span> \
-| \
-</span><a href="#" onclick="mkws.switchView(\'' + tname + '\', \'targets\')">Targets</a>');
-    widget.hideWhenNarrow(this);
+mkws.registerWidgetType('done', function() {
+  var that = this;
+  this.team.queue("complete").subscribe(function(n) {
+    var template = that.team.loadTemplate(that.config.template || "done");
+    that.node.html(template({count: n}));
+  });
 });
 
 
-mkws.registerWidgetType('Search', function() {
-    var tname = this.team.name();
-    var M = mkws.M;
-
-    $(this.node).html('\
-<form name="mkwsSearchForm" class="mkwsSearchForm mkwsTeam_' + tname + '" action="" >\
-  <input class="mkwsQuery mkwsTeam_' + tname + '" type="text" size="' + this.config.query_width + '" />\
-  <input class="mkwsButton mkwsTeam_' + tname + '" type="submit" value="' + M('Search') + '" />\
-</form>');
+mkws.registerWidgetType('switch', function() {
+  if (!this.config.show_switch) return;
+  var tname = this.team.name();
+  var output = {};
+  output.recordClick = "mkws.switchView(\'" + tname + "\', \'records\')";
+  output.targetClick = "mkws.switchView(\'" + tname + "\', \'targets\')";
+  var template = this.team.loadTemplate(this.config.template || "switch");
+  this.node.html(template(output));
+  this.hideWhenNarrow();
 });
 
 
-mkws.registerWidgetType('SearchForm', function() {
-    var team = this.team;    
-    $(this.node).submit(function() {
-       var val = team.widget('Query').value();
-       team.newSearch(val);
-       return false;
-    });
+mkws.registerWidgetType('search', function() {
+  var output = {};
+  output.team = this.team.name();
+  var template = this.team.loadTemplate(this.config.template || "search");
+  this.node.html(template(output));
 });
 
 
-mkws.registerWidgetType('Results', function() {
-    var tname = this.team.name();
-
-    $(this.node).html('\
-<table width="100%" border="0" cellpadding="6" cellspacing="0">\
-  <tr>\
-    <td class="mkwsTermlists-Container-wide mkwsTeam_' + tname + '" width="250" valign="top">\
-      <div class="mkwsTermlists mkwsTeam_' + tname + '"></div>\
-    </td>\
-    <td class="mkwsMOTDContainer mkwsTeam_' + tname + '" valign="top">\
-      <div class="mkwsRanking mkwsTeam_' + tname + '"></div>\
-      <div class="mkwsPager mkwsTeam_' + tname + '"></div>\
-      <div class="mkwsNavi mkwsTeam_' + tname + '"></div>\
-      <div class="mkwsRecords mkwsTeam_' + tname + '"></div>\
-    </td>\
-  </tr>\
-  <tr>\
-    <td colspan="2">\
-      <div class="mkwsTermlists-Container-narrow mkwsTeam_' + tname + '"></div>\
-    </td>\
-  </tr>\
-</table>');
+mkws.registerWidgetType('search-form', function() {
+  var team = this.team;
+  this.node.submit(function() {
+    var val = team.widget('query').value();
+    team.newSearch(val);
+    return false;
+  });
 });
 
 
-mkws.registerWidgetType('Ranking', function() {
-    var tname = this.team.name();
-    var that = this;
-    var M = mkws.M;
-
-    var s = '<form name="mkwsSelect" class="mkwsSelect mkwsTeam_' + tname + '" action="" >';
-    if (this.config.show_sort) {
-       s +=  M('Sort by') + ' ' + mkwsHtmlSort() + ' ';
-    }
-    if (this.config.show_perpage) {
-       s += M('and show') + ' ' + mkwsHtmlPerpage() + ' ' + M('per page') + '.';
-    }
-    s += '</form>';
-
-    $(this.node).html(s);
-
-
-    function mkwsHtmlSort() {
-        var order = that.team.sortOrder();
+mkws.registerWidgetType('results', function() {
+  var template = this.team.loadTemplate(this.config.template || "results");
+  this.node.html(template({team: this.team.name()}));
+  this.autosearch();
+});
 
-       that.log("HTML sort, sortOrder = '" + order + "'");
-       var sort_html = '<select class="mkwsSort mkwsTeam_' + tname + '">';
 
-       for(var i = 0; i < that.config.sort_options.length; i++) {
-           var opt = that.config.sort_options[i];
-           var key = opt[0];
-           var val = opt.length == 1 ? opt[0] : opt[1];
+mkws.registerWidgetType('ranking', function() {
+  var output = {};
+  output.perPage = [];
+  output.sort = [];
+  output.team = this.team.name();
+  output.showSort = this.config.show_sort;
+  output.showPerPage = this.config.show_perpage;
+
+  var order = this.team.sortOrder();
+  this.info("making sort, sortOrder = '" + order + "'");
+  for (var i = 0; i < this.config.sort_options.length; i++) {
+    var cur = {};
+    var opt = this.config.sort_options[i];
+    cur.key = opt[0];
+    cur.label = opt.length == 1 ? opt[0] : mkws.M(opt[1]);
+    if (order == cur.key || order == cur.label) cur.selected = true;
+    output.sort.push(cur);
+  }
+
+  var perpage = this.team.perpage();
+  this.info("making perpage, perpage = " + perpage);
+  for(var i = 0; i < this.config.perpage_options.length; i++) {
+    var cur = {};
+    cur.perPage = this.config.perpage_options[i];
+    if (cur.perPage == perpage) cur.selected = true;
+    output.perPage.push(cur);
+  }
+
+  var template = this.team.loadTemplate(this.config.template || "ranking");
+  this.node.html(template(output));
+});
 
-           sort_html += '<option value="' + key + '"';
-           if (order == key || order == val) {
-               sort_html += ' selected="selected"';
-           }
-           sort_html += '>' + M(val) + '</option>';
-       }
-       sort_html += '</select>';
 
-       return sort_html;
+mkws.registerWidgetType('lang', function() {
+  // dynamic URL or static page? /path/foo?query=test
+  /* create locale language menu */
+  if (!this.config.show_lang) return;
+
+  var lang_default = "en";
+  var lang = this.config.lang || lang_default;
+  var list = [];
+
+  /* display a list of configured languages, or all */
+  var lang_options = this.config.lang_options;
+  var toBeIncluded = {};
+  for (var i = 0; i < lang_options.length; i++) {
+    toBeIncluded[lang_options[i]] = true;
+  }
+
+  for (var k in mkws.locale_lang) {
+    if (toBeIncluded[k] || lang_options.length == 0) {
+      cur = {};
+      if (lang === k) cur.selected = true;
+      cur.code = k;
+      cur.url = lang_url(k);
+      list.push(cur);
     }
-
-    function mkwsHtmlPerpage() {
-        var perpage = that.team.perpage();
-
-       that.log("HTML perpage, perpage = " + perpage);
-       var perpage_html = '<select class="mkwsPerpage mkwsTeam_' + tname + '">';
-
-       for(var i = 0; i < that.config.perpage_options.length; i++) {
-           var key = that.config.perpage_options[i];
-
-           perpage_html += '<option value="' + key + '"';
-           if (key == perpage) {
-               perpage_html += ' selected="selected"';
-           }
-           perpage_html += '>' + key + '</option>';
-       }
-       perpage_html += '</select>';
-
-       return perpage_html;
+  }
+
+  // add english link
+  if (lang_options.length == 0 || toBeIncluded[lang_default]) {
+      cur = {};
+      if (lang === lang_default) cur.selected = true;
+      cur.code = lang_default;
+      cur.url = lang_url(lang_default);
+      list.push(cur);
+  }
+
+  this.info("language menu: " + list.join(", "));
+
+  var template = this.team.loadTemplate(this.config.template || "lang");
+  this.node.html(template({languages: list}));
+  this.hideWhenNarrow();
+
+  // set or re-set "lang" URL parameter
+  function lang_url(lang) {
+    var query = location.search;
+    // no query parameters? done
+    if (!query) {
+      return "?lang=" + lang;
     }
-});
-
-
-mkws.registerWidgetType('Lang', function() {
-    // dynamic URL or static page? /path/foo?query=test
-    /* create locale language menu */
-    if (!this.config.show_lang) return;
-
-    var lang_default = "en";
-    var lang = this.config.lang || lang_default;
-    var list = [];
 
-    /* display a list of configured languages, or all */
-    var lang_options = this.config.lang_options || [];
-    var toBeIncluded = {};
-    for (var i = 0; i < lang_options.length; i++) {
-       toBeIncluded[lang_options[i]] = true;
+    // parameter does not exist
+    if (!query.match(/[\?&]lang=/)) {
+      return query + "&lang=" + lang;
     }
 
-    for (var k in mkws.locale_lang) {
-       if (toBeIncluded[k] || lang_options.length == 0)
-           list.push(k);
-    }
+    // replace existing parameter
+    query = query.replace(/\?lang=([^&#;]*)/, "?lang=" + lang);
+    query = query.replace(/\&lang=([^&#;]*)/, "&lang=" + lang);
+    return query;
+  }
+});
 
-    // add english link
-    if (lang_options.length == 0 || toBeIncluded[lang_default])
-        list.push(lang_default);
 
-    this.log("Language menu for: " + list.join(", "));
+mkws.registerWidgetType('motd', function() {
+  var container = this.team.widget('motd-container');
+  if (container) {
+    // Move the MOTD from the provided element down into the container
+    this.node.appendTo(container.node);
+  }
+});
 
-    /* the HTML part */
-    var data = "";
-    for (var i = 0; i < list.length; i++) {
-       var l = list[i];
-       if (data)
-           data += ' | ';
 
-       if (lang == l) {
-           data += ' <span>' + l + '</span> ';
-       } else {
-           data += ' <a href="' + lang_url(l) + '">' + l + '</a> '
-       }
+// This widget has no functionality of its own, but its configuration
+// is copied up into its team, allowing it to affect other widgets in
+// the team.
+//
+mkws.registerWidgetType('config', function() {
+  var c = this.config;
+  for (var name in c) {
+    if (c.hasOwnProperty(name)) {
+      this.team.config[name] = c[name];
+      this.info(this + " copied property " + name + "='" + c[name] + "' up to team");
     }
-
-    $(this.node).html(data);
-    widget.hideWhenNarrow(this);
+  }
+});
 
 
-    // set or re-set "lang" URL parameter
-    function lang_url(lang) {
-       var query = location.search;
-       // no query parameters? done
-       if (!query) {
-           return "?lang=" + lang;
-       }
+mkws.registerWidgetType('progress', function() {
+  var that = this;
+  this.node.hide();
+  this.team.queue("stat").subscribe(function(data) {
+    var template = that.team.loadTemplate(that.config.template || "progress");
+    that.node.html(template({
+      done: data.clients - data.activeclients,
+      waiting: data.activeclients
+    }));
+    that.node.show();
+  });
+});
 
-       // parameter does not exist
-       if (!query.match(/[\?&]lang=/)) {
-            return query + "&lang=" + lang;
-        }
 
-       // replace existing parameter
-       query = query.replace(/\?lang=([^&#;]*)/, "?lang=" + lang);
-       query = query.replace(/\&lang=([^&#;]*)/, "&lang=" + lang);
-       return query;
-    }
-});
+mkws.registerWidgetType('waiting', function() {
+  var that = this;
 
+  this.node.css("visibility", "hidden");
+  var template = that.team.loadTemplate(that.config.template || "waiting");
+  this.node.html(template({
+    src: this.config.src || "http://mkws.indexdata.com/progress.gif"
+  }));
 
-mkws.registerWidgetType('MOTD', function() {
-    var container = this.team.widget('MOTDContainer');
-    if (container) {
-       // Move the MOTD from the provided element down into the container
-       $(this.node).appendTo(container.node);
-    }
+  this.team.queue("searchtriggered").subscribe(function(data) {
+    that.node.css("visibility", "visible");
+  });
+  this.team.queue("complete").subscribe(function(n) {
+    that.node.css("visibility", "hidden");
+  });
 });
 
 
@@ -420,13 +455,9 @@ mkws.registerWidgetType('MOTD', function() {
 // no actual functionality. We register these to prevent ignorable
 // warnings when they occur.
 
-mkws.registerWidgetType('Query', function() {});
-mkws.registerWidgetType('MOTDContainer', function() {});
-mkws.registerWidgetType('Button', function() {});
-mkws.registerWidgetType('Popup', function() {});
+mkws.registerWidgetType('query', function() {});
+mkws.registerWidgetType('motd-container', function() {});
+mkws.registerWidgetType('button', function() {});
+
 
-// Not sure whether the following should have functionality:
-// Select              HTMLFormElement
-// *-Container-wide    HTMLTableCellElement
-// *-Container-narrow  HTMLDivElement
-// Bytarget            HTMLDivElement
+})(mkws.$); // jQuery wrapper