X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-team.js;h=2e6db95cecb8257f2f9c892999c599633bf4ed29;hb=db46e4d678127a9c80ee5b329ad447c1c522195d;hp=9a012d32679c4c606e42d23f8c14fdbbc4a309a4;hpb=28ecde66315571c34c36f54b929b37be629588c7;p=mkws-moved-to-github.git diff --git a/src/mkws-team.js b/src/mkws-team.js index 9a012d3..2e6db95 100644 --- a/src/mkws-team.js +++ b/src/mkws-team.js @@ -26,10 +26,11 @@ function team($, teamName) { "last": $.now() }; var m_paz; // will be initialised below - var m_tempateText = {}; // widgets can register tempates to be compiled + var m_templateText = {}; // widgets can register templates to be compiled var m_template = {}; // compiled templates, from any source var m_config = mkws.objectInheritingFrom(mkws.config); var m_widgets = {}; // Maps widget-type to array of widget objects + var m_gotRecords = false; that.toString = function() { return '[Team ' + teamName + ']'; }; @@ -83,12 +84,11 @@ function team($, teamName) { that.log = log; - log("start running MKWS"); + log("making new widget team"); m_sortOrder = m_config.sort_default; m_perpage = m_config.perpage_default; - log("Create main pz2 object"); // create a parameters array and pass it to the pz2's constructor // then register the form submit event with the pz2.search function // autoInit is set to true on default @@ -104,6 +104,7 @@ function team($, teamName) { "showtime": 500, //each timer (show, stat, term, bytarget) can be specified this way "termlist": m_config.facets.join(',') }); + log("created main pz2 object"); // pz2.js event handlers: function onInit() { @@ -113,14 +114,20 @@ function team($, teamName) { } function onBytarget(data) { - log("target"); + log("bytarget"); queue("targets").publish(data); } function onStat(data) { queue("stat").publish(data); - if (parseInt(data.activeclients[0], 10) === 0) - queue("complete").publish(parseInt(data.hits[0], 10)); + var hitcount = parseInt(data.hits[0], 10); + if (!m_gotRecords && hitcount > 0) { + m_gotRecords = true; + queue("firstrecords").publish(hitcount); + } + if (parseInt(data.activeclients[0], 10) === 0) { + queue("complete").publish(hitcount); + } } function onTerm(data) { @@ -241,6 +248,7 @@ function team($, teamName) { function resetPage() { m_currentPage = 1; m_totalRecordCount = 0; + m_gotRecords = false; } that.resetPage = resetPage; @@ -360,7 +368,7 @@ function team($, teamName) { function widgetNode(type) { var w = that.widget(type); - return w ? $(w.node) : undefined; + return w ? w.node : undefined; } function renderDetails(data, marker) { @@ -373,7 +381,7 @@ function team($, teamName) { that.registerTemplate = function(name, text) { - m_tempateText[name] = text; + m_templateText[name] = text; }; @@ -383,16 +391,16 @@ function team($, teamName) { if (template === undefined) { // Fall back to generic template if there is no team-specific one var source; - var node = widgetNode("Template_" + name); - if (!node) { - node = widgetNode("Template_" + name, "ALL"); + var node = $(".mkwsTemplate_" + name + " .mkwsTeam_" + that.name()); + if (node && node.length < 1) { + node = $(".mkwsTemplate_" + name); } if (node) { source = node.html(); } if (!source) { - source = m_tempateText[name]; + source = m_templateText[name]; } if (!source) { source = mkws.defaultTemplate(name); @@ -411,10 +419,8 @@ function team($, teamName) { that.addWidget = function(w) { if (m_widgets[w.type] === undefined) { m_widgets[w.type] = [ w ]; - log("Added '" + w.type + "' widget to team '" + m_teamName + "'"); } else { m_widgets[w.type].push(w); - log("Added '" + w.type + "' widget #" + m_widgets[w.type].length + "' to team '" + m_teamName + "'"); } }