X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plugins%2Fstatic%2Fjs%2Fsimplelist.js;h=3d166a7c9f830b50dfe024e205ad607c3cb3ed77;hb=328c05636b6ff60608480ed8f3c2e1f4dae1f371;hp=9c3752ba0fd3806cd0a8292b6c03f4f7606dc29d;hpb=97ec7c3d0976a4bf3425d756aa65f89071601c72;p=unfold.git diff --git a/plugins/static/js/simplelist.js b/plugins/static/js/simplelist.js index 9c3752ba..3d166a7c 100644 --- a/plugins/static/js/simplelist.js +++ b/plugins/static/js/simplelist.js @@ -1,47 +1,44 @@ /** * MySlice SimpleList plugin - * Version: 0.1.0 - * URL: http://www.myslice.info + * URL: http://trac.myslice.info * Description: display simple lists like slices or testbeds - * Requires: * Author: The MySlice Team * Copyright (c) 2012 UPMC Sorbonne Universite - INRIA * License: GPLv3 */ simplelist_debug=false; +//simplelist_debug=true; (function($){ var methods = { init : function( options ) { return this.each(function(){ - var $this = $(this); - var data = $this.data('SimpleList'); -// console.log("data" + data); -// looks like $this.attr('title') is undefined.. -// console.log('iterating in simplelist.init with data='+data+' and title='+$this.attr('title')); - /* create an empty DOM object */ - var SimpleList = $('
', { text : $this.attr('title') }); + var $this = $(this), data = $this.data('SimpleList'); // If the plugin hasn't been initialized yet if ( ! data ) { /* Subscribe to query updates */ - var url='/results/' + options.query_uuid + '/changed'; - $.subscribe(url, {instance: $this}, update_list); - if (simplelist_debug) window.console.log('subscribing to ' + url); - $this.data('SimpleList', {options: options, target : this, SimpleList : SimpleList}); + var channel='/results/' + options.query_uuid + '/changed'; + /* passing $this as 2nd arg: callbacks will retrieve $this as e.data */ + $.subscribe(channel, $this, update_plugin); + if (simplelist_debug) window.console.log('subscribing to ' + channel); + $this.data('SimpleList', {options: options}); } }); }, destroy : function( ) { + if (simplelist_debug) console.log("SimpleList.destroy..."); return this.each(function(){ var $this = $(this), data = $this.data('SimpleList'); + // xxx not too sure what this is about $(window).unbind('SimpleList'); - data.SimpleList.remove(); $this.removeData('SimpleList'); - }) - }, - update : function( content ) { } - }; + }); + }, + update : function( content ) { + if (simplelist_debug) console.log("SimpleList.update..."); + }, + }; // methods $.fn.SimpleList = function( method ) { /* Method calling logic */ @@ -55,43 +52,78 @@ simplelist_debug=false; }; /* Private methods */ - function update_list(e, rows) { + // complexity here is mostly because a datatables-enabled table cannot + // be updated in a "normal" way using .html() + function update_plugin(e, rows) { + // e.data is what we passed in second argument to subscribe + // so here it is the jquery object attached to the plugin
+ var $plugindiv=e.data; + // locate the element; with datatables in the way, + // this might not be a direct son of the div-plugin + var $table=$plugindiv.find("table.simplelist").first(); + // also we may or may not have a header + var $tbody=$table.find("tbody.simplelist").first(); + var use_datatables = $table.hasClass("with-datatables"); + if (simplelist_debug) console.log($plugindiv.attr('id') + " udt= " + use_datatables); + + // clear the spinning wheel: look up an ancestor that has the need-spin class + // do this before we might return + $plugindiv.closest('.need-spin').spin(false); + if (rows.length == 0) { - e.data.instance.html('No result !'); + if (use_datatables) datatables_set_message ("No result"); + else regular_set_message ("No result"); return; } if (typeof rows[0].error != 'undefined') { - e.data.instance.html('ERROR: ' + rows[0].error); + var error="ERROR: " + rows[0].error; + if (use_datatables) datatables_set_message (error); + else regular_set_message (error); return; } - options = e.data.instance.data().SimpleList.options; - is_cached = options.query.ts != 'now' ? true : false; - html_code=myslice_html_ul(rows, options.key, options.value, is_cached)+"
"; - e.data.instance.html(html_code); - + var options = $plugindiv.data().SimpleList.options; + if (use_datatables) datatables_update_table ($table,$tbody,rows,options.key); + else regular_update_table ($table,$tbody,rows,options.key); + } - function myslice_html_ul(data, key, value, is_cached) { - var out = ""; - return out; + } + + function regular_set_message ($table, $tbody, message) { + $tbody.html(""); + } + + function regular_update_table ($table, $tbody, rows, key) { + if (simplelist_debug) console.log('regular_update_table ' + rows.length + " rows"); + var html=$.map(rows, function (row) { return html_row ( cell (key, row[key])); }).join(); + $tbody.html(html); } - function myslice_html_li(type, value, is_cached) { - var cached = ''; - //if (is_cached) - // cached='
Cached information from the database
Timestamp: XX/XX/XX XX:XX:XX

Refresh in progress...
'; - if (type == 'slice_hrn') { - return "
  • " + value + cached + "
  • "; - } else if (type == 'network_hrn') { - return "
  • " + value + cached + "
  • "; - } else { - return "
  • " + value + "
  • "; - } + function datatables_set_message ($table, $tbody, message) { + $table.dataTable().fnClearTable(); + $table.dataTable().fnAddData( [ message ] ); + $table.dataTable().fnDraw(); } + + function datatables_update_table ($table, $tbody, rows, key) { + if (simplelist_debug) console.log('datatables_update_table ' + rows.length + " rows"); + $table.dataTable().fnClearTable(); + // the lambda here returns a [[]] because $.map is kind of broken; as per the doc: + // The function can return any value to add to the array. A returned array will be flattened into the resulting array. + // this is wrong indeed so let's work around that + $table.dataTable().fnAddData( $.map(rows, function (row) { return [[ cell (key,row[key]) ]] }) ); + $table.dataTable().fnDraw(); + } + + function html_row (cell) { return ""; } })( jQuery );
    "+message+"
    "+cell+"