X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plugins%2Fhazelnut.demo%2Fstatic%2Fjs%2Fhazelnut.js;fp=plugins%2Fhazelnut.demo%2Fstatic%2Fjs%2Fhazelnut.js;h=748a0a5dea1bcc4a7a9a48d95d4900d1e0fcf803;hb=b753eb173aba7fdd1fffae461f81f32dc9879e8b;hp=0000000000000000000000000000000000000000;hpb=5d8da8c6bac88f51535c09411867de676dd8e99c;p=unfold.git diff --git a/plugins/hazelnut.demo/static/js/hazelnut.js b/plugins/hazelnut.demo/static/js/hazelnut.js new file mode 100644 index 00000000..748a0a5d --- /dev/null +++ b/plugins/hazelnut.demo/static/js/hazelnut.js @@ -0,0 +1,591 @@ +/** + * Description: display a query result in a datatables-powered + * Copyright (c) 2012-2013 UPMC Sorbonne Universite - INRIA + * License: GPLv3 + */ + +(function($){ + + // TEMP + var debug=false; + debug=true + + var Hazelnut = Plugin.extend({ + + init: function(options, element) + { + this._super(options, element); + + /* Member variables */ + // query status + this.received_all = false; + this.received_set = false; + this.in_set_buffer = Array(); + + /* XXX Events XXX */ + // this.$element.on('show.Datatables', this.on_show); + this.elmt().on('show', this, this.on_show); + // Unbind all events using namespacing + // TODO in destructor + // $(window).unbind('Hazelnut'); + + var query = manifold.query_store.find_analyzed_query(this.options.query_uuid); + this.method = query.object; + + var keys = manifold.metadata.get_key(this.method); + this.key = (keys && keys.length == 1) ? keys[0] : null; + + /* Setup query and record handlers */ + this.listen_query(options.query_uuid); + this.listen_query(options.query_all_uuid, 'all'); + + /* GUI setup and event binding */ + this.initialize_table(); + }, + + default_options: { + 'checkboxes': false + }, + + /* PLUGIN EVENTS */ + + on_show: function(e) + { + var self = e.data; + + self.table.fnAdjustColumnSizing() + + /* Refresh dataTabeles if click on the menu to display it : fix dataTables 1.9.x Bug */ + /* temp disabled... useful ? -- jordan + $(this).each(function(i,elt) { + if (jQuery(elt).hasClass('dataTables')) { + var myDiv=jQuery('#hazelnut-' + this.id).parent(); + if(myDiv.height()==0) { + var oTable=$('#hazelnut-' + this.id).dataTable(); + oTable.fnDraw(); + } + } + }); + */ + }, // on_show + + /* GUI EVENTS */ + + /* GUI MANIPULATION */ + + initialize_table: function() + { + /* Transforms the table into DataTable, and keep a pointer to it */ + var self = this; + actual_options = { + // Customize the position of Datatables elements (length,filter,button,...) + // we use a fluid row on top and another on the bottom, making sure we take 12 grid elt's each time + sDom: "<'row-fluid'<'span5'l><'span1'r><'span6'f>>t<'row-fluid'<'span5'i><'span7'p>>", + sPaginationType: 'bootstrap', + // Handle the null values & the error : Datatables warning Requested unknown parameter + // http://datatables.net/forums/discussion/5331/datatables-warning-...-requested-unknown-parameter/p2 + aoColumnDefs: [{sDefaultContent: '',aTargets: [ '_all' ]}], + // WARNING: this one causes tables in a 'tabs' that are not exposed at the time this is run to show up empty + // sScrollX: '100%', /* Horizontal scrolling */ + bProcessing: true, /* Loading */ + fnDrawCallback: function() { self._hazelnut_draw_callback.call(self); } + // XXX use $.proxy here ! + }; + // the intention here is that options.datatables_options as coming from the python object take precedence + // XXX DISABLED by jordan: was causing errors in datatables.js $.extend(actual_options, options.datatables_options ); + this.table = this.elmt('table').dataTable(actual_options); + + /* Setup the SelectAll button in the dataTable header */ + /* xxx not sure this is still working */ + var oSelectAll = $('#datatableSelectAll-'+ this.options.plugin_uuid); + oSelectAll.html("Select All"); + oSelectAll.button(); + oSelectAll.css('font-size','11px'); + oSelectAll.css('float','right'); + oSelectAll.css('margin-right','15px'); + oSelectAll.css('margin-bottom','5px'); + oSelectAll.unbind('click'); + oSelectAll.click(this._selectAll); + + /* Add a filtering function to the current table + * Note: we use closure to get access to the 'options' + */ + $.fn.dataTableExt.afnFiltering.push(function( oSettings, aData, iDataIndex ) { + /* No filtering if the table does not match */ + if (oSettings.nTable.id != "hazelnut-" + self.options.plugin_uuid) + return true; + return this._hazelnut_filter.call(self, oSettings, aData, iDataIndex); + }); + + /* Processing hidden_columns */ + $.each(this.options.hidden_columns, function(i, field) { + self.hide_column(field); + }); + }, // initialize_table + + /** + * @brief Determine index of key in the table columns + * @param key + * @param cols + */ + getColIndex: function(key, cols) { + var tabIndex = $.map(cols, function(x, i) { if (x.sTitle == key) return i; }); + return (tabIndex.length > 0) ? tabIndex[0] : -1; + }, // getColIndex + + // UNUSED ? // this.update_plugin = function(e, rows) { + // UNUSED ? // // e.data is what we passed in second argument to subscribe + // UNUSED ? // // so here it is the jquery object attached to the plugin
+ // UNUSED ? // var $plugindiv=e.data; + // UNUSED ? // if (debug) + // UNUSED ? // messages.debug("entering hazelnut.update_plugin on id '" + $plugindiv.attr('id') + "'"); + // UNUSED ? // // clear the spinning wheel: look up an ancestor that has the need-spin class + // UNUSED ? // // do this before we might return + // UNUSED ? // $plugindiv.closest('.need-spin').spin(false); + // UNUSED ? // + // UNUSED ? // var options = this.options; + // UNUSED ? // var hazelnut = this; + // UNUSED ? // + // UNUSED ? // /* if we get no result, or an error, try to make that clear, and exit */ + // UNUSED ? // if (rows.length==0) { + // UNUSED ? // if (debug) + // UNUSED ? // messages.debug("Empty result on hazelnut " + this.options.domid); + // UNUSED ? // var placeholder=$(this.table).find("td.dataTables_empty"); + // UNUSED ? // console.log("placeholder "+placeholder); + // UNUSED ? // if (placeholder.length==1) + // UNUSED ? // placeholder.html(unfold.warning("Empty result")); + // UNUSED ? // else + // UNUSED ? // this.table.html(unfold.warning("Empty result")); + // UNUSED ? // return; + // UNUSED ? // } else if (typeof(rows[0].error) != 'undefined') { + // UNUSED ? // // we now should have another means to report errors that this inline/embedded hack + // UNUSED ? // if (debug) + // UNUSED ? // messages.error ("undefined result on " + this.options.domid + " - should not happen anymore"); + // UNUSED ? // this.table.html(unfold.error(rows[0].error)); + // UNUSED ? // return; + // UNUSED ? // } + // UNUSED ? // + // UNUSED ? // /* + // UNUSED ? // * fill the dataTables object + // UNUSED ? // * we cannot set html content directly here, need to use fnAddData + // UNUSED ? // */ + // UNUSED ? // var lines = new Array(); + // UNUSED ? // + // UNUSED ? // this.current_resources = Array(); + // UNUSED ? // + // UNUSED ? // $.each(rows, function(index, row) { + // UNUSED ? // // this models a line in dataTables, each element in the line describes a cell + // UNUSED ? // line = new Array(); + // UNUSED ? // + // UNUSED ? // // go through table headers to get column names we want + // UNUSED ? // // in order (we have temporarily hack some adjustments in names) + // UNUSED ? // var cols = object.table.fnSettings().aoColumns; + // UNUSED ? // var colnames = cols.map(function(x) {return x.sTitle}) + // UNUSED ? // var nb_col = cols.length; + // UNUSED ? // /* if we've requested checkboxes, then forget about the checkbox column for now */ + // UNUSED ? // if (options.checkboxes) nb_col -= 1; + // UNUSED ? // + // UNUSED ? // /* fill in stuff depending on the column name */ + // UNUSED ? // for (var j = 0; j < nb_col; j++) { + // UNUSED ? // if (typeof colnames[j] == 'undefined') { + // UNUSED ? // line.push('...'); + // UNUSED ? // } else if (colnames[j] == 'hostname') { + // UNUSED ? // if (row['type'] == 'resource,link') + // UNUSED ? // //TODO: we need to add source/destination for links + // UNUSED ? // line.push(''); + // UNUSED ? // else + // UNUSED ? // line.push(row['hostname']); + // UNUSED ? // } else { + // UNUSED ? // if (row[colnames[j]]) + // UNUSED ? // line.push(row[colnames[j]]); + // UNUSED ? // else + // UNUSED ? // line.push(''); + // UNUSED ? // } + // UNUSED ? // } + // UNUSED ? // + // UNUSED ? // /* catch up with the last column if checkboxes were requested */ + // UNUSED ? // if (options.checkboxes) { + // UNUSED ? // var checked = ''; + // UNUSED ? // // xxx problem is, we don't get this 'sliver' thing set apparently + // UNUSED ? // if (typeof(row['sliver']) != 'undefined') { /* It is equal to null when is present */ + // UNUSED ? // checked = 'checked '; + // UNUSED ? // hazelnut.current_resources.push(row[ELEMENT_KEY]); + // UNUSED ? // } + // UNUSED ? // // Use a key instead of hostname (hard coded...) + // UNUSED ? // line.push(hazelnut.checkbox(options.plugin_uuid, row[ELEMENT_KEY], row['type'], checked, false)); + // UNUSED ? // } + // UNUSED ? // + // UNUSED ? // lines.push(line); + // UNUSED ? // + // UNUSED ? // }); + // UNUSED ? // + // UNUSED ? // this.table.fnClearTable(); + // UNUSED ? // if (debug) + // UNUSED ? // messages.debug("hazelnut.update_plugin: total of " + lines.length + " rows"); + // UNUSED ? // this.table.fnAddData(lines); + // UNUSED ? // + // UNUSED ? // }, // update_plugin + + checkbox: function (key, value) + { + var result=""; + // Prefix id with plugin_uuid + result += "