team.filters returns the filterSet object, not its list.
[mkws-moved-to-github.git] / src / mkws-team.js
1 // Factory function for team objects. As much as possible, this uses
2 // only member variables (prefixed "m_") and inner functions with
3 // private scope.
4 //
5 // Some functions are visible as member-functions to be called from
6 // outside code -- specifically, from generated HTML. These functions
7 // are that.switchView(), showDetails(), limitTarget(), limitQuery(),
8 // limitCategory(), delimitTarget(), delimitQuery(), showPage(),
9 // pagerPrev(), pagerNext().
10 //
11 function team($, teamName) {
12     var that = {};
13     var m_teamName = teamName;
14     var m_submitted = false;
15     var m_query; // initially undefined
16     var m_sortOrder; // will be set below
17     var m_perpage; // will be set below
18     var m_filterSet = filterSet(that);
19     var m_totalRecordCount = 0;
20     var m_currentPage = 1;
21     var m_currentRecordId = '';
22     var m_currentRecordData = null;
23     var m_logTime = {
24         // Timestamps for logging
25         "start": $.now(),
26         "last": $.now()
27     };
28     var m_paz; // will be initialised below
29     var m_template = {};
30     var m_config = mkws.objectInheritingFrom(mkws.config);
31     var m_widgets = {}; // Maps widget-type to object
32
33     that.toString = function() { return '[Team ' + teamName + ']'; };
34
35     // Accessor methods for individual widgets: readers
36     that.name = function() { return m_teamName; };
37     that.submitted = function() { return m_submitted; };
38     that.perpage = function() { return m_perpage; };
39     that.totalRecordCount = function() { return m_totalRecordCount; };
40     that.currentPage = function() { return m_currentPage; };
41     that.currentRecordId = function() { return m_currentRecordId; };
42     that.currentRecordData = function() { return m_currentRecordData; };
43     that.filters = function() { return m_filterSet; };
44     that.config = function() { return m_config; };
45
46     // Accessor methods for individual widgets: writers
47     that.set_sortOrder = function(val) { m_sortOrder = val };
48     that.set_perpage = function(val) { m_perpage = val };
49
50
51     // The following PubSub code is modified from the jQuery manual:
52     // http://api.jquery.com/jQuery.Callbacks/
53     //
54     // Use as:
55     //  team.queue("eventName").subscribe(function(param1, param2 ...) { ... });
56     //  team.queue("eventName").publish(arg1, arg2, ...);
57     //
58     var queues = {};
59     function queue(id) {
60         if (!queues[id]) {
61             var callbacks = $.Callbacks();
62             queues[id] = {
63                 publish: callbacks.fire,
64                 subscribe: callbacks.add,
65                 unsubscribe: callbacks.remove
66             };
67         }
68         return queues[id];
69     };
70     that.queue = queue;
71
72
73     function log(s) {
74         var now = $.now();
75         var timestamp = (((now - m_logTime.start)/1000).toFixed(3) + " (+" +
76                          ((now - m_logTime.last)/1000).toFixed(3) + ") ");
77         m_logTime.last = now;
78         mkws.log(m_teamName + ": " + timestamp + s);
79         that.queue("log").publish(m_teamName, timestamp, s);
80     }
81     that.log = log;
82
83
84     log("start running MKWS");
85
86     m_sortOrder = m_config.sort_default;
87     m_perpage = m_config.perpage_default;
88
89     log("Create main pz2 object");
90     // create a parameters array and pass it to the pz2's constructor
91     // then register the form submit event with the pz2.search function
92     // autoInit is set to true on default
93     m_paz = new pz2({ "windowid": teamName,
94                       "pazpar2path": m_config.pazpar2_url,
95                       "usesessions" : m_config.use_service_proxy ? false : true,
96                       "oninit": onInit,
97                       "onbytarget": onBytarget,
98                       "onstat": onStat,
99                       "onterm": (m_config.facets.length ? onTerm : undefined),
100                       "onshow": onShow,
101                       "onrecord": onRecord,
102                       "showtime": 500,            //each timer (show, stat, term, bytarget) can be specified this way
103                       "termlist": m_config.facets.join(',')
104                     });
105
106     // pz2.js event handlers:
107     function onInit() {
108         log("init");
109         m_paz.stat();
110         m_paz.bytarget();
111     }
112
113     function onBytarget(data) {
114         log("target");
115         queue("targets").publish(data);
116     }
117
118     function onStat(data) {
119         queue("stat").publish(data);
120         if (parseInt(data.activeclients[0], 10) === 0)
121             queue("complete").publish(parseInt(data.hits[0], 10));
122     }
123
124     function onTerm(data) {
125         log("term");
126         queue("termlists").publish(data);
127     }
128
129     function onShow(data, teamName) {
130         log("show");
131         m_totalRecordCount = data.merged;
132         log("found " + m_totalRecordCount + " records");
133         queue("pager").publish(data);
134         queue("records").publish(data);
135     }
136
137     function onRecord(data, args, teamName) {
138         log("record");
139         // FIXME: record is async!!
140         clearTimeout(m_paz.recordTimer);
141         var detRecordDiv = findnode(recordDetailsId(data.recid[0]));
142         if (detRecordDiv.length) {
143             // in case on_show was faster to redraw element
144             return;
145         }
146         m_currentRecordData = data;
147         var recordDiv = findnode('.' + recordElementId(m_currentRecordData.recid[0]));
148         var html = renderDetails(m_currentRecordData);
149         $(recordDiv).append(html);
150     }
151
152
153     // Used by the Records widget and onRecord()
154     function recordElementId(s) {
155         return 'mkwsRec_' + s.replace(/[^a-z0-9]/ig, '_');
156     }
157     that.recordElementId = recordElementId;
158
159     // Used by onRecord(), showDetails() and renderDetails()
160     function recordDetailsId(s) {
161         return 'mkwsDet_' + s.replace(/[^a-z0-9]/ig, '_');
162     }
163
164
165     that.targetFiltered = function(id) {
166         return m_filterSet.targetFiltered(id);
167     };
168
169
170     that.limitTarget = function(id, name) {
171         log("limitTarget(id=" + id + ", name=" + name + ")");
172         m_filterSet.add(filter(id, name));
173         triggerSearch();
174         return false;
175     };
176
177
178     that.limitQuery = function(field, value) {
179         log("limitQuery(field=" + field + ", value=" + value + ")");
180         m_filterSet.add(filter(null, null, field, value));
181         triggerSearch();
182         return false;
183     };
184
185
186     that.limitCategory = function(id) {
187         log("limitCategory(id=" + id + ")");
188         // ### Add a filter
189         // ### triggerSearch() if there's a query
190         return false;
191     };
192
193
194     that.delimitTarget = function(id) {
195         log("delimitTarget(id=" + id + ")");
196         m_filterSet.removeMatching(function(f) { return f.id });
197         triggerSearch();
198         return false;
199     };
200
201
202     that.delimitQuery = function(field, value) {
203         log("delimitQuery(field=" + field + ", value=" + value + ")");
204         m_filterSet.removeMatching(function(f) { return f.field && field == f.field && value == f.value });
205         triggerSearch();
206         return false;
207     };
208
209
210     that.showPage = function(pageNum) {
211         m_currentPage = pageNum;
212         m_paz.showPage(m_currentPage - 1);
213     };
214
215
216     that.pagerNext = function() {
217         if (m_totalRecordCount - m_perpage*m_currentPage > 0) {
218             m_paz.showNext();
219             m_currentPage++;
220         }
221     };
222
223
224     that.pagerPrev = function() {
225         if (m_paz.showPrev() != false)
226             m_currentPage--;
227     };
228
229
230     that.reShow = function() {
231         resetPage();
232         m_paz.show(0, m_perpage, m_sortOrder);
233     };
234
235
236     function resetPage() {
237         m_currentPage = 1;
238         m_totalRecordCount = 0;
239     }
240     that.resetPage = resetPage;
241
242
243     function newSearch(query, sortOrder, maxrecs, perpage, limit, targets, torusquery) {
244         log("newSearch: " + query);
245
246         if (m_config.use_service_proxy && !mkws.authenticated) {
247             alert("searching before authentication");
248             return;
249         }
250
251         m_filterSet = filterSet(that);
252         triggerSearch(query, sortOrder, maxrecs, perpage, limit, targets, torusquery);
253         switchView('records'); // In case it's configured to start off as hidden
254         m_submitted = true;
255     }
256     that.newSearch = newSearch;
257
258
259     function triggerSearch(query, sortOrder, maxrecs, perpage, limit, targets, torusquery) {
260         resetPage();
261         queue("navi").publish();
262
263
264         // Continue to use previous query/sort-order unless new ones are specified
265         if (query) m_query = query;
266         if (sortOrder) m_sortOrder = sortOrder;
267         if (perpage) m_perpage = perpage;
268         if (targets) m_filterSet.add(filter(id, id));
269
270         var pp2filter = m_filterSet.pp2filter();
271         var pp2limit = m_filterSet.pp2limit(limit);
272
273         var params = {};
274         if (pp2limit) params.limit = pp2limit;
275         if (maxrecs) params.maxrecs = maxrecs;
276         if (torusquery) {
277             if (!mkws.config.use_service_proxy)
278                 alert("can't narrow search by torusquery when Service Proxy is not in use");
279             params.torusquery = torusquery;
280         }
281
282         log("triggerSearch(" + m_query + "): filters = " + $.toJSON(m_filterSet.list()) + ", " +
283             "pp2filter = " + pp2filter + ", params = " + $.toJSON(params));
284
285         m_paz.search(m_query, m_perpage, m_sortOrder, pp2filter, undefined, params);
286     }
287
288
289     // switching view between targets and records
290     function switchView(view) {
291         var targets = widgetNode('Targets');
292         var results = widgetNode('Results') || widgetNode('Records');
293         var blanket = widgetNode('Blanket');
294         var motd    = widgetNode('MOTD');
295
296         switch(view) {
297         case 'targets':
298             if (targets) targets.css('display', 'block');
299             if (results) results.css('display', 'none');
300             if (blanket) blanket.css('display', 'none');
301             if (motd) motd.css('display', 'none');
302             break;
303         case 'records':
304             if (targets) targets.css('display', 'none');
305             if (results) results.css('display', 'block');
306             if (blanket) blanket.css('display', 'block');
307             if (motd) motd.css('display', 'none');
308             break;
309         case 'none':
310             alert("mkws.switchView(" + m_teamName + ", 'none') shouldn't happen");
311             if (targets) targets.css('display', 'none');
312             if (results) results.css('display', 'none');
313             if (blanket) blanket.css('display', 'none');
314             if (motd) motd.css('display', 'none');
315             break;
316         default:
317             alert("Unknown view '" + view + "'");
318         }
319     }
320     that.switchView = switchView;
321
322
323     // detailed record drawing
324     that.showDetails = function(recId) {
325         var oldRecordId = m_currentRecordId;
326         m_currentRecordId = recId;
327
328         // remove current detailed view if any
329         findnode('#' + recordDetailsId(oldRecordId)).remove();
330
331         // if the same clicked, just hide
332         if (recId == oldRecordId) {
333             m_currentRecordId = '';
334             m_currentRecordData = null;
335             return;
336         }
337         // request the record
338         log("showDetails() requesting record '" + recId + "'");
339         m_paz.record(recId);
340     };
341
342
343     /*
344      * All the HTML stuff to render the search forms and
345      * result pages.
346      */
347     function mkwsHtmlAll() {
348         mkwsSetLang();
349         if (m_config.show_lang)
350             mkwsHtmlLang();
351
352         log("HTML search form");
353         findnode('.mkwsSearch').html('\
354 <form name="mkwsSearchForm" class="mkwsSearchForm mkwsTeam_' + m_teamName + '" action="" >\
355   <input class="mkwsQuery mkwsTeam_' + m_teamName + '" type="text" size="' + m_config.query_width + '" />\
356   <input class="mkwsButton mkwsTeam_' + m_teamName + '" type="submit" value="' + M('Search') + '" />\
357 </form>');
358
359         log("HTML records");
360         // If the team has a .mkwsResults, populate it in the usual
361         // way. If not, assume that it's a smarter application that
362         // defines its own subcomponents, some or all of the
363         // following:
364         //      .mkwsTermlists
365         //      .mkwsRanking
366         //      .mkwsPager
367         //      .mkwsNavi
368         //      .mkwsRecords
369         findnode(".mkwsResults").html('\
370 <table width="100%" border="0" cellpadding="6" cellspacing="0">\
371   <tr>\
372     <td class="mkwsTermlistContainer1 mkwsTeam_' + m_teamName + '" width="250" valign="top">\
373       <div class="mkwsTermlists mkwsTeam_' + m_teamName + '"></div>\
374     </td>\
375     <td class="mkwsMOTDContainer mkwsTeam_' + m_teamName + '" valign="top">\
376       <div class="mkwsRanking mkwsTeam_' + m_teamName + '"></div>\
377       <div class="mkwsPager mkwsTeam_' + m_teamName + '"></div>\
378       <div class="mkwsNavi mkwsTeam_' + m_teamName + '"></div>\
379       <div class="mkwsRecords mkwsTeam_' + m_teamName + '"></div>\
380     </td>\
381   </tr>\
382   <tr>\
383     <td colspan="2">\
384       <div class="mkwsTermlistContainer2 mkwsTeam_' + m_teamName + '"></div>\
385     </td>\
386   </tr>\
387 </table>');
388
389         var acc = [];
390         var facets = m_config.facets;
391         acc.push('<div class="title">' + M('Termlists') + '</div>');
392         for (var i = 0; i < facets.length; i++) {
393             acc.push('<div class="mkwsFacet mkwsTeam_' + m_teamName + '" data-mkws-facet="' + facets[i] + '">');
394             acc.push('</div>');
395         }
396         findnode(".mkwsTermlists").html(acc.join(''));
397
398         var ranking_data = '<form name="mkwsSelect" class="mkwsSelect mkwsTeam_' + m_teamName + '" action="" >';
399         if (m_config.show_sort) {
400             ranking_data +=  M('Sort by') + ' ' + mkwsHtmlSort() + ' ';
401         }
402         if (m_config.show_perpage) {
403             ranking_data += M('and show') + ' ' + mkwsHtmlPerpage() + ' ' + M('per page') + '.';
404         }
405         ranking_data += '</form>';
406         findnode(".mkwsRanking").html(ranking_data);
407
408         mkwsHtmlSwitch();
409
410         findnode('.mkwsSearchForm').submit(function() {
411             var val = widgetNode('Query').val();
412             newSearch(val);
413             return false;
414         });
415
416         // on first page, hide the termlist
417         $(document).ready(function() { widgetNode("Termlists").hide(); });
418         var container = findnode(".mkwsMOTDContainer");
419         if (container.length) {
420             // Move the MOTD from the provided element down into the container
421             findnode(".mkwsMOTD").appendTo(container);
422         }
423     }
424
425
426     function mkwsSetLang()  {
427         var lang = mkws.getParameterByName("lang") || m_config.lang;
428         if (!lang || !mkws.locale_lang[lang]) {
429             m_config.lang = ""
430         } else {
431             m_config.lang = lang;
432         }
433
434         log("Locale language: " + (m_config.lang ? m_config.lang : "none"));
435         return m_config.lang;
436     }
437
438
439     /* create locale language menu */
440     function mkwsHtmlLang() {
441         var lang_default = "en";
442         var lang = m_config.lang || lang_default;
443         var list = [];
444
445         /* display a list of configured languages, or all */
446         var lang_options = m_config.lang_options || [];
447         var toBeIncluded = {};
448         for (var i = 0; i < lang_options.length; i++) {
449             toBeIncluded[lang_options[i]] = true;
450         }
451
452         for (var k in mkws.locale_lang) {
453             if (toBeIncluded[k] || lang_options.length == 0)
454                 list.push(k);
455         }
456
457         // add english link
458         if (lang_options.length == 0 || toBeIncluded[lang_default])
459             list.push(lang_default);
460
461         log("Language menu for: " + list.join(", "));
462
463         /* the HTML part */
464         var data = "";
465         for(var i = 0; i < list.length; i++) {
466             var l = list[i];
467
468             if (data)
469                 data += ' | ';
470
471             if (lang == l) {
472                 data += ' <span>' + l + '</span> ';
473             } else {
474                 data += ' <a href="?lang=' + l + '">' + l + '</a> '
475             }
476         }
477
478         findnode(".mkwsLang").html(data);
479     }
480
481
482     function mkwsHtmlSort() {
483         log("HTML sort, m_sortOrder = '" + m_sortOrder + "'");
484         var sort_html = '<select class="mkwsSort mkwsTeam_' + m_teamName + '">';
485
486         for(var i = 0; i < m_config.sort_options.length; i++) {
487             var opt = m_config.sort_options[i];
488             var key = opt[0];
489             var val = opt.length == 1 ? opt[0] : opt[1];
490
491             sort_html += '<option value="' + key + '"';
492             if (m_sortOrder == key || m_sortOrder == val) {
493                 sort_html += ' selected="selected"';
494             }
495             sort_html += '>' + M(val) + '</option>';
496         }
497         sort_html += '</select>';
498
499         return sort_html;
500     }
501
502
503     function mkwsHtmlPerpage() {
504         log("HTML perpage, m_perpage = " + m_perpage);
505         var perpage_html = '<select class="mkwsPerpage mkwsTeam_' + m_teamName + '">';
506
507         for(var i = 0; i < m_config.perpage_options.length; i++) {
508             var key = m_config.perpage_options[i];
509
510             perpage_html += '<option value="' + key + '"';
511             if (key == m_perpage) {
512                 perpage_html += ' selected="selected"';
513             }
514             perpage_html += '>' + key + '</option>';
515         }
516         perpage_html += '</select>';
517
518         return perpage_html;
519     }
520
521
522     function mkwsHtmlSwitch() {
523         log("HTML switch for team " + m_teamName);
524
525         var node = findnode(".mkwsSwitch");
526         node.append($('<a href="#" onclick="mkws.switchView(\'' + m_teamName + '\', \'records\')">' + M('Records') + '</a>'));
527         node.append($("<span/>", { text: " | " }));
528         node.append($('<a href="#" onclick="mkws.switchView(\'' + m_teamName + '\', \'targets\')">' + M('Targets') + '</a>'));
529
530         log("HTML targets");
531         var node = findnode(".mkwsTargets");
532         node.html('\
533 <div class="mkwsBytarget mkwsTeam_' + m_teamName + '">\
534   No information available yet.\
535 </div>');
536         node.css("display", "none");
537     }
538
539
540     // Translation function. At present, this is properly a
541     // global-level function (hence the assignment to mkws.M) but we
542     // want to make it per-team so different teams can operate in
543     // different languages.
544     //
545     function M(word) {
546         var lang = m_config.lang;
547
548         if (!lang || !mkws.locale_lang[lang])
549             return word;
550
551         return mkws.locale_lang[lang][word] || word;
552     }
553     mkws.M = M; // so the Handlebars helper can use it
554
555
556     // Finds the node of the specified class within the current team
557     function findnode(selector, teamName) {
558         teamName = teamName || m_teamName;
559
560         if (teamName === 'AUTO') {
561             selector = (selector + '.mkwsTeam_' + teamName + ',' +
562                         selector + ':not([class^="mkwsTeam"],[class*=" mkwsTeam"])');
563         } else {
564             selector = selector + '.mkwsTeam_' + teamName;
565         }
566
567         var node = $(selector);
568         //log('findnode(' + selector + ') found ' + node.length + ' nodes');
569         return node;
570     }
571     that.findnode = findnode;
572
573
574     // This much simpler and more efficient function should be usable
575     // in place of most uses of findnode.
576     function widgetNode(type) {
577         var w = that.widget(type);
578         return w ? $(w.node) : undefined;
579     }
580
581     function renderDetails(data, marker) {
582         var template = loadTemplate("Record");
583         var details = template(data);
584         return '<div class="details mkwsTeam_' + m_teamName + '" ' +
585             'id="' + recordDetailsId(data.recid[0]) + '">' + details + '</div>';
586     }
587     that.renderDetails = renderDetails;
588
589
590     function loadTemplate(name) {
591         var template = m_template[name];
592
593         if (template === undefined) {
594             // Fall back to generic template if there is no team-specific one
595             var source;
596             var node = widgetNode("Template_" + name);
597             if (!node) {
598                 node = widgetNode("Template_" + name, "ALL");
599             }
600             if (node) {
601                 source = node.html();
602             }
603
604             if (!source) {
605                 source = defaultTemplate(name);
606             }
607
608             template = Handlebars.compile(source);
609             log("compiled template '" + name + "'");
610             m_template[name] = template;
611         }
612
613         return template;
614     }
615     that.loadTemplate = loadTemplate;
616
617
618     function defaultTemplate(name) {
619         if (name === 'Record') {
620             return '\
621 <table>\
622   <tr>\
623     <th>{{translate "Title"}}</th>\
624     <td>\
625       {{md-title}}\
626       {{#if md-title-remainder}}\
627         ({{md-title-remainder}})\
628       {{/if}}\
629       {{#if md-title-responsibility}}\
630         <i>{{md-title-responsibility}}</i>\
631       {{/if}}\
632     </td>\
633   </tr>\
634   {{#if md-date}}\
635   <tr>\
636     <th>{{translate "Date"}}</th>\
637     <td>{{md-date}}</td>\
638   </tr>\
639   {{/if}}\
640   {{#if md-author}}\
641   <tr>\
642     <th>{{translate "Author"}}</th>\
643     <td>{{md-author}}</td>\
644   </tr>\
645   {{/if}}\
646   {{#if md-electronic-url}}\
647   <tr>\
648     <th>{{translate "Links"}}</th>\
649     <td>\
650       {{#each md-electronic-url}}\
651         <a href="{{this}}">Link{{index1}}</a>\
652       {{/each}}\
653     </td>\
654   </tr>\
655   {{/if}}\
656   {{#if-any location having="md-subject"}}\
657   <tr>\
658     <th>{{translate "Subject"}}</th>\
659     <td>\
660       {{#first location having="md-subject"}}\
661         {{#if md-subject}}\
662           {{#commaList md-subject}}\
663             {{this}}{{/commaList}}\
664         {{/if}}\
665       {{/first}}\
666     </td>\
667   </tr>\
668   {{/if-any}}\
669   <tr>\
670     <th>{{translate "Locations"}}</th>\
671     <td>\
672       {{#commaList location}}\
673         {{attr "@name"}}{{/commaList}}\
674     </td>\
675   </tr>\
676 </table>\
677 ';
678         } else if (name === "Summary") {
679             return '\
680 <a href="#" id="{{_id}}" onclick="{{_onclick}}">\
681   <b>{{md-title}}</b>\
682 </a>\
683 {{#if md-title-remainder}}\
684   <span>{{md-title-remainder}}</span>\
685 {{/if}}\
686 {{#if md-title-responsibility}}\
687   <span><i>{{md-title-responsibility}}</i></span>\
688 {{/if}}\
689 ';
690         } else if (name === "Image") {
691             return '\
692       <a href="#" id="{{_id}}" onclick="{{_onclick}}">\
693         {{#first md-thumburl}}\
694           <img src="{{this}}" alt="{{../md-title}}"/>\
695         {{/first}}\
696         <br/>\
697       </a>\
698 ';
699         }
700
701         var s = "There is no default '" + name +"' template!";
702         alert(s);
703         return s;
704     }
705
706     that.addWidget = function(w) {
707         if (!m_widgets[w.type]) {
708             m_widgets[w.type] = w;
709             log("Registered '" + w.type + "' widget in team '" + m_teamName + "'");
710         } else if (typeof(m_widgets[w.type]) !== 'number') {
711             m_widgets[w.type] = 2;
712             log("Registered duplicate '" + w.type + "' widget in team '" + m_teamName + "'");
713         } else {
714             m_widgets[w.type] += 1;
715             log("Registered '" + w.type + "' widget #" + m_widgets[w.type] + "' in team '" + m_teamName + "'");
716         }
717     }
718
719     that.widgetTypes = function() {
720         var keys = [];
721         for (var k in m_widgets) keys.push(k);
722         return keys.sort();
723     }
724
725     that.widget = function(type) {
726         return m_widgets[type];
727     }
728
729     mkwsHtmlAll()
730
731     return that;
732 };