1 // Factory function for team objects. As much as possible, this uses
2 // only member variables (prefixed "m_") and inner functions with
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().
11 // Before the team can be used for searching and related operations,
12 // its pz2 object must be created by calling team.makePz2().
14 mkws.makeTeam = function($, teamName) {
16 var m_teamName = teamName;
17 var m_submitted = false;
18 var m_query; // initially undefined
19 var m_sortOrder; // will be set below
20 var m_perpage; // will be set below
21 var m_filterSet = filterSet(that);
22 var m_totalRecordCount = 0;
23 var m_currentPage = 1;
24 var m_currentRecordId = '';
25 var m_currentRecordData = null;
27 // Timestamps for logging
31 var m_paz; // will be initialised below
32 var m_templateText = {}; // widgets can register templates to be compiled
33 var m_template = {}; // compiled templates, from any source
34 var m_widgets = {}; // Maps widget-type to array of widget objects
35 var m_gotRecords = false;
37 var config = mkws.objectInheritingFrom(mkws.config);
40 that.toString = function() { return '[Team ' + teamName + ']'; };
42 // Accessor methods for individual widgets: readers
43 that.name = function() { return m_teamName; };
44 that.submitted = function() { return m_submitted; };
45 that.sortOrder = function() { return m_sortOrder; };
46 that.perpage = function() { return m_perpage; };
47 that.query = function() { return m_query; };
48 that.totalRecordCount = function() { return m_totalRecordCount; };
49 that.currentPage = function() { return m_currentPage; };
50 that.currentRecordId = function() { return m_currentRecordId; };
51 that.currentRecordData = function() { return m_currentRecordData; };
52 that.filters = function() { return m_filterSet; };
53 that.gotRecords = function() { return m_gotRecords; };
55 // Accessor methods for individual widgets: writers
56 that.set_sortOrder = function(val) { m_sortOrder = val };
57 that.set_perpage = function(val) { m_perpage = val };
60 // The following PubSub code is modified from the jQuery manual:
61 // http://api.jquery.com/jQuery.Callbacks/
64 // team.queue("eventName").subscribe(function(param1, param2 ...) { ... });
65 // team.queue("eventName").publish(arg1, arg2, ...);
70 var callbacks = $.Callbacks();
72 publish: callbacks.fire,
73 subscribe: callbacks.add,
74 unsubscribe: callbacks.remove
84 var timestamp = (((now - m_logTime.start)/1000).toFixed(3) + " (+" +
85 ((now - m_logTime.last)/1000).toFixed(3) + ") ");
87 mkws.log(m_teamName + ": " + timestamp + s);
88 that.queue("log").publish(m_teamName, timestamp, s);
93 log("making new widget team");
95 m_sortOrder = config.sort_default;
96 m_perpage = config.perpage_default;
98 // pz2.js event handlers:
105 function onBytarget(data) {
107 queue("targets").publish(data);
110 function onStat(data) {
111 queue("stat").publish(data);
112 var hitcount = parseInt(data.hits[0], 10);
113 if (!m_gotRecords && hitcount > 0) {
115 queue("firstrecords").publish(hitcount);
117 if (parseInt(data.activeclients[0], 10) === 0) {
119 queue("complete").publish(hitcount);
123 function onTerm(data) {
125 queue("termlists").publish(data);
128 function onShow(data, teamName) {
130 m_totalRecordCount = data.merged;
131 log("found " + m_totalRecordCount + " records");
132 queue("pager").publish(data);
133 queue("records").publish(data);
136 function onRecord(data, args, teamName) {
138 // FIXME: record is async!!
139 clearTimeout(m_paz.recordTimer);
140 queue("record").publish(data);
141 var detRecordDiv = findnode(recordDetailsId(data.recid[0]));
142 if (detRecordDiv.length) {
143 // in case on_show was faster to redraw element
146 m_currentRecordData = data;
147 var recordDiv = findnode('.' + recordElementId(m_currentRecordData.recid[0]));
148 var html = renderDetails(m_currentRecordData);
149 $(recordDiv).append(html);
153 // create a parameters array and pass it to the pz2's constructor
154 // then register the form submit event with the pz2.search function
155 // autoInit is set to true on default
156 that.makePz2 = function() {
157 log("m_queues=" + $.toJSON(m_queues));
159 "windowid": teamName,
160 "pazpar2path": mkws.pazpar2_url(),
161 "usesessions" : config.use_service_proxy ? false : true,
162 "showtime": 500, //each timer (show, stat, term, bytarget) can be specified this way
163 "termlist": config.facets.join(',')
166 params.oninit = onInit;
167 if (m_queues.targets) {
168 params.onbytarget = onBytarget;
169 log("setting bytarget callback");
172 params.onstat = onStat;
173 log("setting stat callback");
175 if (m_queues.termlists && config.facets.length) {
176 params.onterm = onTerm;
177 log("setting term callback");
179 if (m_queues.records) {
180 log("setting show callback");
181 params.onshow = onShow;
182 // Record callback is subscribed from records callback
183 log("setting record callback");
184 params.onrecord = onRecord;
187 m_paz = new pz2(params);
188 log("ccreated main pz2 object");
192 // Used by the Records widget and onRecord()
193 function recordElementId(s) {
194 return 'mkwsRec_' + s.replace(/[^a-z0-9]/ig, '_');
196 that.recordElementId = recordElementId;
198 // Used by onRecord(), showDetails() and renderDetails()
199 function recordDetailsId(s) {
200 return 'mkwsDet_' + s.replace(/[^a-z0-9]/ig, '_');
204 that.targetFiltered = function(id) {
205 return m_filterSet.targetFiltered(id);
209 that.limitTarget = function(id, name) {
210 log("limitTarget(id=" + id + ", name=" + name + ")");
211 m_filterSet.add(targetFilter(id, name));
212 if (m_query) triggerSearch();
217 that.limitQuery = function(field, value) {
218 log("limitQuery(field=" + field + ", value=" + value + ")");
219 m_filterSet.add(fieldFilter(field, value));
220 if (m_query) triggerSearch();
225 that.limitCategory = function(id) {
226 log("limitCategory(id=" + id + ")");
227 // Only one category filter at a time
228 m_filterSet.removeMatching(function(f) { return f.type === 'category' });
229 if (id !== '') m_filterSet.add(categoryFilter(id));
230 if (m_query) triggerSearch();
235 that.delimitTarget = function(id) {
236 log("delimitTarget(id=" + id + ")");
237 m_filterSet.removeMatching(function(f) { return f.type === 'target' });
238 if (m_query) triggerSearch();
243 that.delimitQuery = function(field, value) {
244 log("delimitQuery(field=" + field + ", value=" + value + ")");
245 m_filterSet.removeMatching(function(f) { return f.type == 'field' &&
246 field == f.field && value == f.value });
247 if (m_query) triggerSearch();
252 that.showPage = function(pageNum) {
253 m_currentPage = pageNum;
254 m_paz.showPage(m_currentPage - 1);
258 that.pagerNext = function() {
259 if (m_totalRecordCount - m_perpage*m_currentPage > 0) {
266 that.pagerPrev = function() {
267 if (m_paz.showPrev() != false)
272 that.reShow = function() {
274 m_paz.show(0, m_perpage, m_sortOrder);
278 function resetPage() {
280 m_totalRecordCount = 0;
281 m_gotRecords = false;
283 that.resetPage = resetPage;
286 function newSearch(query, sortOrder, maxrecs, perpage, limit, targets, torusquery) {
287 log("newSearch: " + query);
289 if (config.use_service_proxy && !mkws.authenticated) {
290 alert("searching before authentication");
294 m_filterSet.removeMatching(function(f) { return f.type !== 'category' });
295 triggerSearch(query, sortOrder, maxrecs, perpage, limit, targets, torusquery);
296 switchView('records'); // In case it's configured to start off as hidden
299 that.newSearch = newSearch;
302 function triggerSearch(query, sortOrder, maxrecs, perpage, limit, targets, torusquery) {
304 queue("navi").publish();
306 // Continue to use previous query/sort-order unless new ones are specified
307 if (query) m_query = query;
308 if (sortOrder) m_sortOrder = sortOrder;
309 if (perpage) m_perpage = perpage;
310 if (targets) m_filterSet.add(targetFilter(targets, targets));
312 var pp2filter = m_filterSet.pp2filter();
313 var pp2limit = m_filterSet.pp2limit(limit);
314 var pp2catLimit = m_filterSet.pp2catLimit();
316 pp2filter = pp2filter ? pp2filter + "," + pp2catLimit : pp2catLimit;
320 if (pp2limit) params.limit = pp2limit;
321 if (maxrecs) params.maxrecs = maxrecs;
323 if (!mkws.config.use_service_proxy)
324 alert("can't narrow search by torusquery when not authenticated");
325 params.torusquery = torusquery;
328 log("triggerSearch(" + m_query + "): filters = " + m_filterSet.toJSON() + ", " +
329 "pp2filter = " + pp2filter + ", params = " + $.toJSON(params));
331 m_paz.search(m_query, m_perpage, m_sortOrder, pp2filter, undefined, params);
334 // fetch record details to be retrieved from the record queue
335 that.fetchDetails = function(recId) {
336 log("fetchDetails() requesting record '" + recId + "'");
341 // switching view between targets and records
342 function switchView(view) {
343 var targets = widgetNode('targets');
344 var results = widgetNode('results') || widgetNode('records');
345 var blanket = widgetNode('blanket');
346 var motd = widgetNode('motd');
350 if (targets) $(targets).show();
351 if (results) $(results).hide();
352 if (blanket) $(blanket).hide();
353 if (motd) $(motd).hide();
356 if (targets) $(targets).hide();
357 if (results) $(results).show();
358 if (blanket) $(blanket).show();
359 if (motd) $(motd).hide();
362 alert("Unknown view '" + view + "'");
365 that.switchView = switchView;
368 // detailed record drawing
369 that.showDetails = function(recId) {
370 var oldRecordId = m_currentRecordId;
371 m_currentRecordId = recId;
373 // remove current detailed view if any
374 findnode('#' + recordDetailsId(oldRecordId)).remove();
376 // if the same clicked, just hide
377 if (recId == oldRecordId) {
378 m_currentRecordId = '';
379 m_currentRecordData = null;
382 // request the record
383 log("showDetails() requesting record '" + recId + "'");
388 // Finds the node of the specified class within the current team
389 function findnode(selector, teamName) {
390 teamName = teamName || m_teamName;
392 if (teamName === 'AUTO') {
393 selector = (selector + '.mkwsTeam_' + teamName + ',' +
394 selector + ':not([class^="mkwsTeam"],[class*=" mkwsTeam"])');
396 selector = selector + '.mkwsTeam_' + teamName;
399 var node = $(selector);
400 //log('findnode(' + selector + ') found ' + node.length + ' nodes');
405 function widgetNode(type) {
406 var w = that.widget(type);
407 return w ? w.node : undefined;
410 function renderDetails(data, marker) {
411 var template = loadTemplate("Record");
412 var details = template(data);
413 return '<div class="mkwsDetails mkwsTeam_' + m_teamName + '" ' +
414 'id="' + recordDetailsId(data.recid[0]) + '">' + details + '</div>';
416 that.renderDetails = renderDetails;
419 that.registerTemplate = function(name, text) {
420 m_templateText[name] = text;
424 function loadTemplate(name, fallbackString) {
425 var template = m_template[name];
426 if (template === undefined && Handlebars.compile) {
428 var node = $(".mkws-template-" + name + " .mkws-team-" + that.name());
429 if (node && node.length < 1) {
430 node = $(".mkws-template-" + name);
432 if (node && node.length < 1) {
433 node = $(".mkwsTemplate_" + name + " .mkwsTeam_" + that.name());
435 if (node && node.length < 1) {
436 node = $(".mkwsTemplate_" + name);
438 if (node) source = node.html();
439 if (!source) source = m_templateText[name];
441 template = Handlebars.compile(source);
442 log("compiled template '" + name + "'");
445 //if (template === undefined) template = mkws_templatesbyteam[m_teamName][name];
446 if (template === undefined && Handlebars.templates) {
447 template = Handlebars.templates["mkws-template-" + name];
449 if (template === undefined && mkws.defaultTemplates) {
450 template = mkws.defaultTemplates[name];
453 m_template[name] = template;
457 mkws.log("No MKWS template for " + name);
461 that.loadTemplate = loadTemplate;
464 that.addWidget = function(w) {
465 if (m_widgets[w.type] === undefined) {
466 m_widgets[w.type] = [ w ];
468 m_widgets[w.type].push(w);
472 that.widget = function(type) {
473 var list = m_widgets[type];
477 if (list.length > 1) {
478 alert("widget('" + type + "') finds " + list.length + " widgets: using first");
483 that.visitWidgets = function(callback) {
484 for (var type in m_widgets) {
485 var list = m_widgets[type];
486 for (var i = 0; i < list.length; i++) {
487 var res = callback(type, list[i]);
488 if (res !== undefined) {