X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plugins%2Fstatic%2Fjs%2Fsimplelist.js;h=58c656a2dc539bf7cd932bc44e66c33968fcff4c;hb=fb7dbecd4a79019e40139a8bde65f8737b44ae76;hp=282f6b8c7fe849862eae88a3718969d6d3a68397;hpb=3304e91dc8512f723a80b0b4c26b3b910218363c;p=unfold.git diff --git a/plugins/static/js/simplelist.js b/plugins/static/js/simplelist.js index 282f6b8c..58c656a2 100644 --- a/plugins/static/js/simplelist.js +++ b/plugins/static/js/simplelist.js @@ -1 +1,95 @@ -/* simplelist.js */ +/** + * MySlice SimpleList plugin + * Version: 0.1.0 + * URL: http://www.myslice.info + * Description: display simple lists like slices or testbeds + * Requires: + * Author: The MySlice Team + * Copyright (c) 2012 UPMC Sorbonne Universite - INRIA + * License: GPLv3 + */ + +(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') in 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') }); + // 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); + window.console.log('subscribing to ' + url); + $this.data('SimpleList', {options: options, target : this, SimpleList : SimpleList}); + } + }); + }, + destroy : function( ) { + return this.each(function(){ + var $this = $(this), data = $this.data('SimpleList'); + $(window).unbind('SimpleList'); + data.SimpleList.remove(); + $this.removeData('SimpleList'); + }) + }, + update : function( content ) { } + }; + + $.fn.SimpleList = function( method ) { + /* Method calling logic */ + if ( methods[method] ) { + return methods[ method ].apply( this, Array.prototype.slice.call( arguments, 1 )); + } else if ( typeof method === 'object' || ! method ) { + return methods.init.apply( this, arguments ); + } else { + $.error( 'Method ' + method + ' does not exist on jQuery.SimpleList' ); + } + }; + + /* Private methods */ + + function update_list(e, rows) { + if (rows.length == 0) { + e.data.instance.html('No result !'); + return; + } + if (typeof rows[0].error != 'undefined') { + e.data.instance.html('ERROR: ' + rows[0].error); + return; + } + options = e.data.instance.data().SimpleList.options; + is_cached = options.query.ts != 'now' ? true : false; + e.data.instance.html(myslice_html_ul(rows, options.key, options.value, is_cached)+"
"); + + } + + 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 myslice_html_ul(data, key, value, is_cached) { + var out = ""; + return out; + } + +})( jQuery );