Use m_filterSet.pp2limit method instead of building by hand.
[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.list(); };
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) {
266             m_query = query;
267         }
268         if (sortOrder) {
269             m_sortOrder = sortOrder;
270         }
271         if (perpage) {
272             m_perpage = perpage;
273         }
274         if (targets) {
275             m_filterSet.add(filter(id, id));
276         }
277
278         var pp2filter = m_filterSet.pp2filter();
279         var pp2limit = m_filterSet.pp2limit(limit);
280
281         var params = {};
282         if (pp2limit) {
283             params.limit = pp2limit;
284         }
285         if (maxrecs) {
286             params.maxrecs = maxrecs;
287         }
288         if (torusquery) {
289             if (!mkws.config.use_service_proxy)
290                 alert("can't narrow search by torusquery when Service Proxy is not in use");
291             params.torusquery = torusquery;
292         }
293
294         log("triggerSearch(" + m_query + "): filters = " + $.toJSON(m_filterSet.list()) + ", " +
295             "pp2filter = " + pp2filter + ", params = " + $.toJSON(params));
296
297         // We can use: params.torusquery = "udb=NAME"
298         // Note: that won't work when running against raw pazpar2
299         m_paz.search(m_query, m_perpage, m_sortOrder, pp2filter, undefined, params);
300     }
301
302
303     // switching view between targets and records
304     function switchView(view) {
305         var targets = widgetNode('Targets');
306         var results = widgetNode('Results') || widgetNode('Records');
307         var blanket = widgetNode('Blanket');
308         var motd    = widgetNode('MOTD');
309
310         switch(view) {
311         case 'targets':
312             if (targets) targets.css('display', 'block');
313             if (results) results.css('display', 'none');
314             if (blanket) blanket.css('display', 'none');
315             if (motd) motd.css('display', 'none');
316             break;
317         case 'records':
318             if (targets) targets.css('display', 'none');
319             if (results) results.css('display', 'block');
320             if (blanket) blanket.css('display', 'block');
321             if (motd) motd.css('display', 'none');
322             break;
323         case 'none':
324             alert("mkws.switchView(" + m_teamName + ", 'none') shouldn't happen");
325             if (targets) targets.css('display', 'none');
326             if (results) results.css('display', 'none');
327             if (blanket) blanket.css('display', 'none');
328             if (motd) motd.css('display', 'none');
329             break;
330         default:
331             alert("Unknown view '" + view + "'");
332         }
333     }
334     that.switchView = switchView;
335
336
337     // detailed record drawing
338     that.showDetails = function(recId) {
339         var oldRecordId = m_currentRecordId;
340         m_currentRecordId = recId;
341
342         // remove current detailed view if any
343         findnode('#' + recordDetailsId(oldRecordId)).remove();
344
345         // if the same clicked, just hide
346         if (recId == oldRecordId) {
347             m_currentRecordId = '';
348             m_currentRecordData = null;
349             return;
350         }
351         // request the record
352         log("showDetails() requesting record '" + recId + "'");
353         m_paz.record(recId);
354     };
355
356
357     /*
358      * All the HTML stuff to render the search forms and
359      * result pages.
360      */
361     function mkwsHtmlAll() {
362         mkwsSetLang();
363         if (m_config.show_lang)
364             mkwsHtmlLang();
365
366         log("HTML search form");
367         findnode('.mkwsSearch').html('\
368 <form name="mkwsSearchForm" class="mkwsSearchForm mkwsTeam_' + m_teamName + '" action="" >\
369   <input class="mkwsQuery mkwsTeam_' + m_teamName + '" type="text" size="' + m_config.query_width + '" />\
370   <input class="mkwsButton mkwsTeam_' + m_teamName + '" type="submit" value="' + M('Search') + '" />\
371 </form>');
372
373         log("HTML records");
374         // If the team has a .mkwsResults, populate it in the usual
375         // way. If not, assume that it's a smarter application that
376         // defines its own subcomponents, some or all of the
377         // following:
378         //      .mkwsTermlists
379         //      .mkwsRanking
380         //      .mkwsPager
381         //      .mkwsNavi
382         //      .mkwsRecords
383         findnode(".mkwsResults").html('\
384 <table width="100%" border="0" cellpadding="6" cellspacing="0">\
385   <tr>\
386     <td class="mkwsTermlistContainer1 mkwsTeam_' + m_teamName + '" width="250" valign="top">\
387       <div class="mkwsTermlists mkwsTeam_' + m_teamName + '"></div>\
388     </td>\
389     <td class="mkwsMOTDContainer mkwsTeam_' + m_teamName + '" valign="top">\
390       <div class="mkwsRanking mkwsTeam_' + m_teamName + '"></div>\
391       <div class="mkwsPager mkwsTeam_' + m_teamName + '"></div>\
392       <div class="mkwsNavi mkwsTeam_' + m_teamName + '"></div>\
393       <div class="mkwsRecords mkwsTeam_' + m_teamName + '"></div>\
394     </td>\
395   </tr>\
396   <tr>\
397     <td colspan="2">\
398       <div class="mkwsTermlistContainer2 mkwsTeam_' + m_teamName + '"></div>\
399     </td>\
400   </tr>\
401 </table>');
402
403         var acc = [];
404         var facets = m_config.facets;
405         acc.push('<div class="title">' + M('Termlists') + '</div>');
406         for (var i = 0; i < facets.length; i++) {
407             acc.push('<div class="mkwsFacet mkwsTeam_' + m_teamName + '" data-mkws-facet="' + facets[i] + '">');
408             acc.push('</div>');
409         }
410         findnode(".mkwsTermlists").html(acc.join(''));
411
412         var ranking_data = '<form name="mkwsSelect" class="mkwsSelect mkwsTeam_' + m_teamName + '" action="" >';
413         if (m_config.show_sort) {
414             ranking_data +=  M('Sort by') + ' ' + mkwsHtmlSort() + ' ';
415         }
416         if (m_config.show_perpage) {
417             ranking_data += M('and show') + ' ' + mkwsHtmlPerpage() + ' ' + M('per page') + '.';
418         }
419         ranking_data += '</form>';
420         findnode(".mkwsRanking").html(ranking_data);
421
422         mkwsHtmlSwitch();
423
424         findnode('.mkwsSearchForm').submit(function() {
425             var val = widgetNode('Query').val();
426             newSearch(val);
427             return false;
428         });
429
430         // on first page, hide the termlist
431         $(document).ready(function() { widgetNode("Termlists").hide(); });
432         var container = findnode(".mkwsMOTDContainer");
433         if (container.length) {
434             // Move the MOTD from the provided element down into the container
435             findnode(".mkwsMOTD").appendTo(container);
436         }
437     }
438
439
440     function mkwsSetLang()  {
441         var lang = mkws.getParameterByName("lang") || m_config.lang;
442         if (!lang || !mkws.locale_lang[lang]) {
443             m_config.lang = ""
444         } else {
445             m_config.lang = lang;
446         }
447
448         log("Locale language: " + (m_config.lang ? m_config.lang : "none"));
449         return m_config.lang;
450     }
451
452
453     /* create locale language menu */
454     function mkwsHtmlLang() {
455         var lang_default = "en";
456         var lang = m_config.lang || lang_default;
457         var list = [];
458
459         /* display a list of configured languages, or all */
460         var lang_options = m_config.lang_options || [];
461         var toBeIncluded = {};
462         for (var i = 0; i < lang_options.length; i++) {
463             toBeIncluded[lang_options[i]] = true;
464         }
465
466         for (var k in mkws.locale_lang) {
467             if (toBeIncluded[k] || lang_options.length == 0)
468                 list.push(k);
469         }
470
471         // add english link
472         if (lang_options.length == 0 || toBeIncluded[lang_default])
473             list.push(lang_default);
474
475         log("Language menu for: " + list.join(", "));
476
477         /* the HTML part */
478         var data = "";
479         for(var i = 0; i < list.length; i++) {
480             var l = list[i];
481
482             if (data)
483                 data += ' | ';
484
485             if (lang == l) {
486                 data += ' <span>' + l + '</span> ';
487             } else {
488                 data += ' <a href="?lang=' + l + '">' + l + '</a> '
489             }
490         }
491
492         findnode(".mkwsLang").html(data);
493     }
494
495
496     function mkwsHtmlSort() {
497         log("HTML sort, m_sortOrder = '" + m_sortOrder + "'");
498         var sort_html = '<select class="mkwsSort mkwsTeam_' + m_teamName + '">';
499
500         for(var i = 0; i < m_config.sort_options.length; i++) {
501             var opt = m_config.sort_options[i];
502             var key = opt[0];
503             var val = opt.length == 1 ? opt[0] : opt[1];
504
505             sort_html += '<option value="' + key + '"';
506             if (m_sortOrder == key || m_sortOrder == val) {
507                 sort_html += ' selected="selected"';
508             }
509             sort_html += '>' + M(val) + '</option>';
510         }
511         sort_html += '</select>';
512
513         return sort_html;
514     }
515
516
517     function mkwsHtmlPerpage() {
518         log("HTML perpage, m_perpage = " + m_perpage);
519         var perpage_html = '<select class="mkwsPerpage mkwsTeam_' + m_teamName + '">';
520
521         for(var i = 0; i < m_config.perpage_options.length; i++) {
522             var key = m_config.perpage_options[i];
523
524             perpage_html += '<option value="' + key + '"';
525             if (key == m_perpage) {
526                 perpage_html += ' selected="selected"';
527             }
528             perpage_html += '>' + key + '</option>';
529         }
530         perpage_html += '</select>';
531
532         return perpage_html;
533     }
534
535
536     function mkwsHtmlSwitch() {
537         log("HTML switch for team " + m_teamName);
538
539         var node = findnode(".mkwsSwitch");
540         node.append($('<a href="#" onclick="mkws.switchView(\'' + m_teamName + '\', \'records\')">' + M('Records') + '</a>'));
541         node.append($("<span/>", { text: " | " }));
542         node.append($('<a href="#" onclick="mkws.switchView(\'' + m_teamName + '\', \'targets\')">' + M('Targets') + '</a>'));
543
544         log("HTML targets");
545         var node = findnode(".mkwsTargets");
546         node.html('\
547 <div class="mkwsBytarget mkwsTeam_' + m_teamName + '">\
548   No information available yet.\
549 </div>');
550         node.css("display", "none");
551     }
552
553
554     // Translation function. At present, this is properly a
555     // global-level function (hence the assignment to mkws.M) but we
556     // want to make it per-team so different teams can operate in
557     // different languages.
558     //
559     function M(word) {
560         var lang = m_config.lang;
561
562         if (!lang || !mkws.locale_lang[lang])
563             return word;
564
565         return mkws.locale_lang[lang][word] || word;
566     }
567     mkws.M = M; // so the Handlebars helper can use it
568
569
570     // Finds the node of the specified class within the current team
571     function findnode(selector, teamName) {
572         teamName = teamName || m_teamName;
573
574         if (teamName === 'AUTO') {
575             selector = (selector + '.mkwsTeam_' + teamName + ',' +
576                         selector + ':not([class^="mkwsTeam"],[class*=" mkwsTeam"])');
577         } else {
578             selector = selector + '.mkwsTeam_' + teamName;
579         }
580
581         var node = $(selector);
582         //log('findnode(' + selector + ') found ' + node.length + ' nodes');
583         return node;
584     }
585     that.findnode = findnode;
586
587
588     // This much simpler and more efficient function should be usable
589     // in place of most uses of findnode.
590     function widgetNode(type) {
591         var w = that.widget(type);
592         return w ? $(w.node) : undefined;
593     }
594
595     function renderDetails(data, marker) {
596         var template = loadTemplate("Record");
597         var details = template(data);
598         return '<div class="details mkwsTeam_' + m_teamName + '" ' +
599             'id="' + recordDetailsId(data.recid[0]) + '">' + details + '</div>';
600     }
601     that.renderDetails = renderDetails;
602
603
604     function loadTemplate(name) {
605         var template = m_template[name];
606
607         if (template === undefined) {
608             // Fall back to generic template if there is no team-specific one
609             var source;
610             var node = widgetNode("Template_" + name);
611             if (!node) {
612                 node = widgetNode("Template_" + name, "ALL");
613             }
614             if (node) {
615                 source = node.html();
616             }
617
618             if (!source) {
619                 source = defaultTemplate(name);
620             }
621
622             template = Handlebars.compile(source);
623             log("compiled template '" + name + "'");
624             m_template[name] = template;
625         }
626
627         return template;
628     }
629     that.loadTemplate = loadTemplate;
630
631
632     function defaultTemplate(name) {
633         if (name === 'Record') {
634             return '\
635 <table>\
636   <tr>\
637     <th>{{translate "Title"}}</th>\
638     <td>\
639       {{md-title}}\
640       {{#if md-title-remainder}}\
641         ({{md-title-remainder}})\
642       {{/if}}\
643       {{#if md-title-responsibility}}\
644         <i>{{md-title-responsibility}}</i>\
645       {{/if}}\
646     </td>\
647   </tr>\
648   {{#if md-date}}\
649   <tr>\
650     <th>{{translate "Date"}}</th>\
651     <td>{{md-date}}</td>\
652   </tr>\
653   {{/if}}\
654   {{#if md-author}}\
655   <tr>\
656     <th>{{translate "Author"}}</th>\
657     <td>{{md-author}}</td>\
658   </tr>\
659   {{/if}}\
660   {{#if md-electronic-url}}\
661   <tr>\
662     <th>{{translate "Links"}}</th>\
663     <td>\
664       {{#each md-electronic-url}}\
665         <a href="{{this}}">Link{{index1}}</a>\
666       {{/each}}\
667     </td>\
668   </tr>\
669   {{/if}}\
670   {{#if-any location having="md-subject"}}\
671   <tr>\
672     <th>{{translate "Subject"}}</th>\
673     <td>\
674       {{#first location having="md-subject"}}\
675         {{#if md-subject}}\
676           {{#commaList md-subject}}\
677             {{this}}{{/commaList}}\
678         {{/if}}\
679       {{/first}}\
680     </td>\
681   </tr>\
682   {{/if-any}}\
683   <tr>\
684     <th>{{translate "Locations"}}</th>\
685     <td>\
686       {{#commaList location}}\
687         {{attr "@name"}}{{/commaList}}\
688     </td>\
689   </tr>\
690 </table>\
691 ';
692         } else if (name === "Summary") {
693             return '\
694 <a href="#" id="{{_id}}" onclick="{{_onclick}}">\
695   <b>{{md-title}}</b>\
696 </a>\
697 {{#if md-title-remainder}}\
698   <span>{{md-title-remainder}}</span>\
699 {{/if}}\
700 {{#if md-title-responsibility}}\
701   <span><i>{{md-title-responsibility}}</i></span>\
702 {{/if}}\
703 ';
704         } else if (name === "Image") {
705             return '\
706       <a href="#" id="{{_id}}" onclick="{{_onclick}}">\
707         {{#first md-thumburl}}\
708           <img src="{{this}}" alt="{{../md-title}}"/>\
709         {{/first}}\
710         <br/>\
711       </a>\
712 ';
713         }
714
715         var s = "There is no default '" + name +"' template!";
716         alert(s);
717         return s;
718     }
719
720     that.addWidget = function(w) {
721         if (!m_widgets[w.type]) {
722             m_widgets[w.type] = w;
723             log("Registered '" + w.type + "' widget in team '" + m_teamName + "'");
724         } else if (typeof(m_widgets[w.type]) !== 'number') {
725             m_widgets[w.type] = 2;
726             log("Registered duplicate '" + w.type + "' widget in team '" + m_teamName + "'");
727         } else {
728             m_widgets[w.type] += 1;
729             log("Registered '" + w.type + "' widget #" + m_widgets[w.type] + "' in team '" + m_teamName + "'");
730         }
731     }
732
733     that.widgetTypes = function() {
734         var keys = [];
735         for (var k in m_widgets) keys.push(k);
736         return keys.sort();
737     }
738
739     that.widget = function(type) {
740         return m_widgets[type];
741     }
742
743     mkwsHtmlAll()
744
745     return that;
746 };