Merge branch 'onelab' of ssh://git.onelab.eu/git/myslice into onelab
[myslice.git] / plugins / querytable / static / js / querytable.js
1 /**
2  * Description: display a query result in a datatables-powered <table>
3  * Copyright (c) 2012-2013 UPMC Sorbonne Universite - INRIA
4  * License: GPLv3
5  */
6
7 (function($){
8
9     var debug=false;
10 //    debug=true
11
12     var QueryTable = Plugin.extend({
13
14         init: function(options, element) {
15             this.classname="querytable";
16             this._super(options, element);
17
18             /* Member variables */
19             // in general we expect 2 queries here
20             // query_uuid refers to a single object (typically a slice)
21             // query_all_uuid refers to a list (typically resources or users)
22             // these can return in any order so we keep track of which has been received yet
23             this.received_all_query = false;
24             this.received_query = false;
25
26             // We need to remember the active filter for datatables filtering
27             this.filters = Array(); 
28
29             // an internal buffer for records that are 'in' and thus need to be checked 
30             this.buffered_records_to_check = [];
31             // an internal buffer for keeping lines and display them in one call to fnAddData
32             this.buffered_lines = [];
33
34             /* Events */
35             // xx somehow non of these triggers at all for now
36             this.elmt().on('show', this, this.on_show);
37             this.elmt().on('shown.bs.tab', this, this.on_show);
38             this.elmt().on('resize', this, this.on_resize);
39
40             var query = manifold.query_store.find_analyzed_query(this.options.query_uuid);
41             this.object = query.object;
42
43             //// we need 2 different keys
44             // * canonical_key is the primary key as derived from metadata (typically: urn)
45             //   and is used to communicate about a given record with the other plugins
46             // * init_key is a key that both kinds of records 
47             //   (i.e. records returned by both queries) must have (typically: hrn or hostname)
48             //   in general query_all will return well populated records, but query
49             //   returns records with only the fields displayed on startup
50             var keys = manifold.metadata.get_key(this.object);
51             this.canonical_key = (keys && keys.length == 1) ? keys[0] : undefined;
52             // 
53             this.init_key = this.options.init_key;
54             // have init_key default to canonical_key
55             this.init_key = this.init_key || this.canonical_key;
56             // sanity check
57             if ( ! this.init_key ) messages.warning ("QueryTable : cannot find init_key");
58             if ( ! this.canonical_key ) messages.warning ("QueryTable : cannot find canonical_key");
59             if (debug) messages.debug("querytable: canonical_key="+this.canonical_key+" init_key="+this.init_key);
60
61             /* Setup query and record handlers */
62             this.listen_query(options.query_uuid);
63             this.listen_query(options.query_all_uuid, 'all');
64
65             /* GUI setup and event binding */
66             this.initialize_table();
67         },
68
69         /* PLUGIN EVENTS */
70
71         on_show: function(e) {
72             if (debug) messages.debug("querytable.on_show");
73             var self = e.data;
74             self.table.fnAdjustColumnSizing();
75         },        
76
77         on_resize: function(e) {
78             if (debug) messages.debug("querytable.on_resize");
79             var self = e.data;
80             self.table.fnAdjustColumnSizing();
81         },        
82
83         /* GUI EVENTS */
84
85         /* GUI MANIPULATION */
86
87         initialize_table: function() 
88         {
89             /* Transforms the table into DataTable, and keep a pointer to it */
90             var self = this;
91             var actual_options = {
92                 // Customize the position of Datatables elements (length,filter,button,...)
93                 // we use a fluid row on top and another on the bottom, making sure we take 12 grid elt's each time
94                 //sDom: "<'row'<'col-xs-5'l><'col-xs-1'r><'col-xs-6'f>>t<'row'<'col-xs-5'i><'col-xs-7'p>>",
95                 sDom: "<'row'<'col-xs-5'f><'col-xs-1'r><'col-xs-6 columns_selector'>>t<'row'<'col-xs-5'l><'col-xs-7'p>>",
96                 // XXX as of sept. 2013, I cannot locate a bootstrap3-friendly mode for now
97                 // hopefully this would come with dataTables v1.10 ?
98                 // in any case, search for 'sPaginationType' all over the code for more comments
99                 sPaginationType: 'bootstrap',
100                 // Handle the null values & the error : Datatables warning Requested unknown parameter
101                 // http://datatables.net/forums/discussion/5331/datatables-warning-...-requested-unknown-parameter/p2
102                 aoColumnDefs: [{sDefaultContent: '',aTargets: [ '_all' ]}],
103                 // WARNING: this one causes tables in a 'tabs' that are not exposed at the time this is run to show up empty
104                 // sScrollX: '100%',       /* Horizontal scrolling */
105                 bProcessing: true,      /* Loading */
106                 fnDrawCallback: function() { self._querytable_draw_callback.call(self); }
107                 // XXX use $.proxy here !
108             };
109             // the intention here is that options.datatables_options as coming from the python object take precedence
110             // xxx DISABLED by jordan: was causing errors in datatables.js
111             // xxx turned back on by Thierry - this is the code that takes python-provided options into account
112             // check your datatables_options tag instead 
113             // however, we have to accumulate in aoColumnDefs from here (above) 
114             // and from the python wrapper (checkboxes management, plus any user-provided aoColumnDefs)
115             if ( 'aoColumnDefs' in this.options.datatables_options) {
116                 actual_options['aoColumnDefs']=this.options.datatables_options['aoColumnDefs'].concat(actual_options['aoColumnDefs']);
117                 delete this.options.datatables_options['aoColumnDefs'];
118             }
119             $.extend(actual_options, this.options.datatables_options );
120             this.table = this.elmt('table').dataTable(actual_options);
121
122             /* Setup the SelectAll button in the dataTable header */
123             /* xxx not sure this is still working */
124             var oSelectAll = $('#datatableSelectAll-'+ this.options.plugin_uuid);
125             oSelectAll.html("<span class='glyphicon glyphicon-ok' style='float:right;display:inline-block;'></span>Select All");
126             oSelectAll.button();
127             oSelectAll.css('font-size','11px');
128             oSelectAll.css('float','right');
129             oSelectAll.css('margin-right','15px');
130             oSelectAll.css('margin-bottom','5px');
131             oSelectAll.unbind('click');
132             oSelectAll.click(this._selectAll);
133
134             /* Add a filtering function to the current table 
135              * Note: we use closure to get access to the 'options'
136              */
137             $.fn.dataTableExt.afnFiltering.push(function( oSettings, aData, iDataIndex ) { 
138                 /* No filtering if the table does not match */
139                 if (oSettings.nTable.id != self.options.plugin_uuid + '__table')
140                     return true;
141                 return self._querytable_filter.call(self, oSettings, aData, iDataIndex);
142             });
143
144             /* Processing hidden_columns */
145             $.each(this.options.hidden_columns, function(i, field) {
146                 //manifold.raise_event(self.options.query_all_uuid, FIELD_REMOVED, field);
147                 self.hide_column(field);
148             });
149             $(".dataTables_filter").append("<div style='display:inline-block;height:27px;width:27px;padding-left:6px;padding-top:4px;'><span class='glyphicon glyphicon-search'></span></div>");
150             $(".dataTables_filter input").css("width","100%");
151         }, // initialize_table
152
153         /**
154          * @brief Determine index of key in the table columns 
155          * @param key
156          * @param cols
157          */
158         getColIndex: function(key, cols) {
159             var tabIndex = $.map(cols, function(x, i) { if (x.sTitle == key) return i; });
160             return (tabIndex.length > 0) ? tabIndex[0] : -1;
161         }, // getColIndex
162
163         // create a checkbox <input> tag
164         // computes 'id' attribute from canonical_key
165         // computes 'init_id' from init_key for initialization phase
166         // no need to used convoluted ids with plugin-uuid or others, since
167         // we search using table.$ which looks only in this table
168         checkbox_html : function (record) {
169             var result="";
170             // Prefix id with plugin_uuid
171             result += "<input";
172             result += " class='querytable-checkbox'";
173          // compute id from canonical_key
174             var id = record[this.canonical_key]
175          // compute init_id form init_key
176             var init_id=record[this.init_key];
177          // set id - for retrieving from an id, or for posting events upon user's clicks
178             result += " id='"+record[this.canonical_key]+"'";
179          // set init_id
180             result += "init_id='" + init_id + "'";
181          // wrap up
182             result += " type='checkbox'";
183             result += " autocomplete='off'";
184             result += "></input>";
185             return result;
186         }, 
187
188
189         new_record: function(record)
190         {
191             // this models a line in dataTables, each element in the line describes a cell
192             line = new Array();
193      
194             // go through table headers to get column names we want
195             // in order (we have temporarily hack some adjustments in names)
196             var cols = this.table.fnSettings().aoColumns;
197             var colnames = cols.map(function(x) {return x.sTitle})
198             var nb_col = cols.length;
199             /* if we've requested checkboxes, then forget about the checkbox column for now */
200             if (this.options.checkboxes) nb_col -= 1;
201
202             /* fill in stuff depending on the column name */
203             for (var j = 0; j < nb_col; j++) {
204                 if (typeof colnames[j] == 'undefined') {
205                     line.push('...');
206                 } else if (colnames[j] == 'hostname') {
207                     if (record['type'] == 'resource,link')
208                         //TODO: we need to add source/destination for links
209                         line.push('');
210                     else
211                         line.push(record['hostname']);
212
213                 } else if (colnames[j] == this.init_key && typeof(record) != 'undefined') {
214                     obj = this.object
215                     o = obj.split(':');
216                     if(o.length>1){
217                         obj = o[1];
218                     }else{
219                         obj = o[0];
220                     }
221                     /* XXX TODO: Remove this and have something consistant */
222                     if(obj=='resource'){
223                         line.push('<a href="../'+obj+'/'+record['urn']+'"><span class="glyphicon glyphicon-search"></span></a> '+record[this.init_key]);
224                     }else{
225                         line.push('<a href="../'+obj+'/'+record[this.init_key]+'"><span class="glyphicon glyphicon-search"></span></a> '+record[this.init_key]);
226                     }
227                 } else {
228                     if (record[colnames[j]])
229                         line.push(record[colnames[j]]);
230                     else
231                         line.push('');
232                 }
233             }
234     
235             // catch up with the last column if checkboxes were requested 
236             if (this.options.checkboxes) {
237                 // Use a key instead of hostname (hard coded...)
238                 line.push(this.checkbox_html(record));
239                 }
240     
241             // adding an array in one call is *much* more efficient
242                 // this.table.fnAddData(line);
243                 this.buffered_lines.push(line);
244         },
245
246         clear_table: function()
247         {
248             this.table.fnClearTable();
249         },
250
251         redraw_table: function()
252         {
253             this.table.fnDraw();
254         },
255
256         show_column: function(field)
257         {
258             var oSettings = this.table.fnSettings();
259             var cols = oSettings.aoColumns;
260             var index = this.getColIndex(field,cols);
261             if (index != -1)
262                 this.table.fnSetColumnVis(index, true);
263         },
264
265         hide_column: function(field)
266         {
267             var oSettings = this.table.fnSettings();
268             var cols = oSettings.aoColumns;
269             var index = this.getColIndex(field,cols);
270             if (index != -1)
271                 this.table.fnSetColumnVis(index, false);
272         },
273
274         // this is used at init-time, at which point only init_key can make sense
275         // (because the argument record, if it comes from query, might not have canonical_key set
276         set_checkbox_from_record: function (record, checked) {
277             if (checked === undefined) checked = true;
278             var init_id = record[this.init_key];
279             if (debug) messages.debug("querytable.set_checkbox_from_record, init_id="+init_id);
280             // using table.$ to search inside elements that are not visible
281             var element = this.table.$('[init_id="'+init_id+'"]');
282             element.attr('checked',checked);
283         },
284
285         // id relates to canonical_key
286         set_checkbox_from_data: function (id, checked) {
287             if (checked === undefined) checked = true;
288             if (debug) messages.debug("querytable.set_checkbox_from_data, id="+id);
289             // using table.$ to search inside elements that are not visible
290             var element = this.table.$("[id='"+id+"']");
291             element.attr('checked',checked);
292         },
293
294         /*************************** QUERY HANDLER ****************************/
295
296         on_filter_added: function(filter)
297         {
298             this.filters.push(filter);
299             this.redraw_table();
300         },
301
302         on_filter_removed: function(filter)
303         {
304             // Remove corresponding filters
305             this.filters = $.grep(this.filters, function(x) {
306                 return x == filter;
307             });
308             this.redraw_table();
309         },
310         
311         on_filter_clear: function()
312         {
313             // XXX
314             this.redraw_table();
315         },
316
317         on_field_added: function(field)
318         {
319             this.show_column(field);
320         },
321
322         on_field_removed: function(field)
323         {
324             this.hide_column(field);
325         },
326
327         on_field_clear: function()
328         {
329             alert('QueryTable::clear_fields() not implemented');
330         },
331
332         /* XXX TODO: make this generic a plugin has to subscribe to a set of Queries to avoid duplicated code ! */
333         /*************************** ALL QUERY HANDLER ****************************/
334
335         on_all_filter_added: function(filter)
336         {
337             // XXX
338             this.redraw_table();
339         },
340
341         on_all_filter_removed: function(filter)
342         {
343             // XXX
344             this.redraw_table();
345         },
346         
347         on_all_filter_clear: function()
348         {
349             // XXX
350             this.redraw_table();
351         },
352
353         on_all_field_added: function(field)
354         {
355             this.show_column(field);
356         },
357
358         on_all_field_removed: function(field)
359         {
360             this.hide_column(field);
361         },
362
363         on_all_field_clear: function()
364         {
365             alert('QueryTable::clear_fields() not implemented');
366         },
367
368
369         /*************************** RECORD HANDLER ***************************/
370
371         on_new_record: function(record)
372         {
373             if (this.received_all_query) {
374                 // if the 'all' query has been dealt with already we may turn on the checkbox
375                 this.set_checkbox_from_record(record, true);
376             } else {
377                 this.buffered_records_to_check.push(record);
378             }
379         },
380
381         on_clear_records: function()
382         {
383         },
384
385         // Could be the default in parent
386         on_query_in_progress: function()
387         {
388             this.spin();
389         },
390
391         on_query_done: function()
392         {
393             this.received_query = true;
394             // unspin once we have received both
395             if (this.received_all_query && this.received_query) this.unspin();
396         },
397         
398         on_field_state_changed: function(data)
399         {
400             switch(data.request) {
401                 case FIELD_REQUEST_ADD:
402                 case FIELD_REQUEST_ADD_RESET:
403                         // update pending number
404                         $("#badge-pending").data('number', $("#badge-pending").data('number') + 1 );
405                         $("#badge-pending").text($("#badge-pending").data('number'));
406                     this.set_checkbox_from_data(data.value, true);
407                     break;
408                 case FIELD_REQUEST_REMOVE:
409                 case FIELD_REQUEST_REMOVE_RESET:
410                         $("#badge-pending").data('number', $("#badge-pending").data('number') - 1 );
411                         $("#badge-pending").text($("#badge-pending").data('number'));
412                     this.set_checkbox_from_data(data.value, false);
413                     break;
414                 default:
415                     break;
416             }
417         },
418
419         /* XXX TODO: make this generic a plugin has to subscribe to a set of Queries to avoid duplicated code ! */
420         // all
421         on_all_field_state_changed: function(data)
422         {
423             switch(data.request) {
424                 case FIELD_REQUEST_ADD:
425                 case FIELD_REQUEST_ADD_RESET:
426                     this.set_checkbox_from_data(data.value, true);
427                     break;
428                 case FIELD_REQUEST_REMOVE:
429                 case FIELD_REQUEST_REMOVE_RESET:
430                     this.set_checkbox_from_data(data.value, false);
431                     break;
432                 default:
433                     break;
434             }
435         },
436
437         on_all_new_record: function(record)
438         {
439             this.new_record(record);
440         },
441
442         on_all_clear_records: function()
443         {
444             this.clear_table();
445
446         },
447
448         on_all_query_in_progress: function()
449         {
450             // XXX parent
451             this.spin();
452         }, // on_all_query_in_progress
453
454         on_all_query_done: function()
455         {
456                 if (debug) messages.debug("1-shot initializing dataTables content with " + this.buffered_lines.length + " lines");
457                 this.table.fnAddData (this.buffered_lines);
458                 this.buffered_lines=[];
459             
460             var self = this;
461             // if we've already received the slice query, we have not been able to set 
462             // checkboxes on the fly at that time (dom not yet created)
463             $.each(this.buffered_records_to_check, function(i, record) {
464                                 if (debug) messages.debug ("querytable delayed turning on checkbox " + i + " record= " + record);
465                 self.set_checkbox_from_record(record, true);
466             });
467                 this.buffered_records_to_check = [];
468
469             this.received_all_query = true;
470             // unspin once we have received both
471             if (this.received_all_query && this.received_query) this.unspin();
472
473         }, // on_all_query_done
474
475         /************************** PRIVATE METHODS ***************************/
476
477         /** 
478          * @brief QueryTable filtering function
479          */
480         _querytable_filter: function(oSettings, aData, iDataIndex)
481         {
482             var ret = true;
483             $.each (this.filters, function(index, filter) { 
484                 /* XXX How to manage checkbox ? */
485                 var key = filter[0]; 
486                 var op = filter[1];
487                 var value = filter[2];
488
489                 /* Determine index of key in the table columns */
490                 var col = $.map(oSettings.aoColumns, function(x, i) {if (x.sTitle == key) return i;})[0];
491
492                 /* Unknown key: no filtering */
493                 if (typeof(col) == 'undefined')
494                     return;
495
496                 col_value=unfold.get_value(aData[col]);
497                 /* Test whether current filter is compatible with the column */
498                 if (op == '=' || op == '==') {
499                     if ( col_value != value || col_value==null || col_value=="" || col_value=="n/a")
500                         ret = false;
501                 }else if (op == 'included') {
502                     $.each(value, function(i,x) {
503                       if(x == col_value){
504                           ret = true;
505                           return false;
506                       }else{
507                           ret = false;
508                       }
509                     });
510                 }else if (op == '!=') {
511                     if ( col_value == value || col_value==null || col_value=="" || col_value=="n/a")
512                         ret = false;
513                 } else if(op=='<') {
514                     if ( parseFloat(col_value) >= value || col_value==null || col_value=="" || col_value=="n/a")
515                         ret = false;
516                 } else if(op=='>') {
517                     if ( parseFloat(col_value) <= value || col_value==null || col_value=="" || col_value=="n/a")
518                         ret = false;
519                 } else if(op=='<=' || op=='≤') {
520                     if ( parseFloat(col_value) > value || col_value==null || col_value=="" || col_value=="n/a")
521                         ret = false;
522                 } else if(op=='>=' || op=='≥') {
523                     if ( parseFloat(col_value) < value || col_value==null || col_value=="" || col_value=="n/a")
524                         ret = false;
525                 }else{
526                     // How to break out of a loop ?
527                     alert("filter not supported");
528                     return false;
529                 }
530
531             });
532             return ret;
533         },
534
535         _querytable_draw_callback: function()
536         {
537             /* 
538              * Handle clicks on checkboxes: reassociate checkbox click every time
539              * the table is redrawn 
540              */
541             this.elts('querytable-checkbox').unbind('click').click(this, this._check_click);
542
543             if (!this.table)
544                 return;
545
546             /* Remove pagination if we show only a few results */
547             var wrapper = this.table; //.parent().parent().parent();
548             var rowsPerPage = this.table.fnSettings()._iDisplayLength;
549             var rowsToShow = this.table.fnSettings().fnRecordsDisplay();
550             var minRowsPerPage = this.table.fnSettings().aLengthMenu[0];
551
552             if ( rowsToShow <= rowsPerPage || rowsPerPage == -1 ) {
553                 $('.querytable_paginate', wrapper).css('visibility', 'hidden');
554             } else {
555                 $('.querytable_paginate', wrapper).css('visibility', 'visible');
556             }
557
558             if ( rowsToShow <= minRowsPerPage ) {
559                 $('.querytable_length', wrapper).css('visibility', 'hidden');
560             } else {
561                 $('.querytable_length', wrapper).css('visibility', 'visible');
562             }
563         },
564
565         _check_click: function(e) 
566         {
567             e.stopPropagation();
568
569             var self = e.data;
570             var id=this.id;
571
572             // this.id = key of object to be added... what about multiple keys ?
573             if (debug) messages.debug("querytable._check_click key="+this.canonical_key+"->"+id+" checked="+this.checked);
574             manifold.raise_event(self.options.query_uuid, this.checked?SET_ADD:SET_REMOVED, id);
575             //return false; // prevent checkbox to be checked, waiting response from manifold plugin api
576             
577         },
578
579         _selectAll: function() 
580         {
581             // requires jQuery id
582             var uuid=this.id.split("-");
583             var oTable=$("#querytable-"+uuid[1]).dataTable();
584             // Function available in QueryTable 1.9.x
585             // Filter : displayed data only
586             var filterData = oTable._('tr', {"filter":"applied"});   
587             /* TODO: WARNING if too many nodes selected, use filters to reduce nuber of nodes */        
588             if(filterData.length<=100){
589                 $.each(filterData, function(index, obj) {
590                     var last=$(obj).last();
591                     var key_value=unfold.get_value(last[0]);
592                     if(typeof($(last[0]).attr('checked'))=="undefined"){
593                         $.publish('selected', 'add/'+key_value);
594                     }
595                 });
596             }
597         },
598
599     });
600
601     $.plugin('QueryTable', QueryTable);
602
603   /* define the 'dom-checkbox' type for sorting in datatables 
604      http://datatables.net/examples/plug-ins/dom_sort.html
605      using trial and error I found that the actual column number
606      was in fact given as a third argument, and not second 
607      as the various online resources had it - go figure */
608     $.fn.dataTableExt.afnSortData['dom-checkbox'] = function  ( oSettings, _, iColumn ) {
609         return $.map( oSettings.oApi._fnGetTrNodes(oSettings), function (tr, i) {
610             return result=$('td:eq('+iColumn+') input', tr).prop('checked') ? '1' : '0';
611         } );
612     }
613
614 })(jQuery);
615