X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plugins%2Fstatic%2Fjs%2Fsimplelist.js;h=58c656a2dc539bf7cd932bc44e66c33968fcff4c;hb=fb7dbecd4a79019e40139a8bde65f8737b44ae76;hp=7247463f0994b8cacaf148797797001c92791467;hpb=b8e07eaff52f1a5f21b8e5a8f30c0b795780ec32;p=unfold.git diff --git a/plugins/static/js/simplelist.js b/plugins/static/js/simplelist.js index 7247463f..58c656a2 100644 --- a/plugins/static/js/simplelist.js +++ b/plugins/static/js/simplelist.js @@ -2,77 +2,59 @@ * MySlice SimpleList plugin * Version: 0.1.0 * URL: http://www.myslice.info - * Description: Google maps display of geolocated data + * Description: display simple lists like slices or testbeds * Requires: * Author: The MySlice Team - * Copyright: Copyright 2012 UPMC Sorbonne Universités + * Copyright (c) 2012 UPMC Sorbonne Universite - INRIA * License: GPLv3 */ -(function(jQuery){ - - var methods = { - init : function( options ) { - - return this.each(function(){ - - var $this = jQuery(this), - data = $this.data('SimpleList'), SimpleList = jQuery('
', { text : $this.attr('title') }); - - // If the plugin hasn't been initialized yet - if ( ! data ) { - - /* Plugin initialization */ - - /* Subscribe to query updates */ - var url='/results/' + options.query_uuid + '/changed'; - jQuery.subscribe(url, {instance: $this}, update_list); - - /* End of plugin initialization */ - - $this.data('SimpleList', { - options: options, - target : $this, - SimpleList : SimpleList - }); - - } - }); - }, - destroy : function( ) { - - return this.each(function(){ - var $this = jQuery(this), data = $this.data('SimpleList'); - jQuery(window).unbind('SimpleList'); - data.SimpleList.remove(); - $this.removeData('SimpleList'); - }) - +(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'); + }) }, -/* - reposition : function( ) { // ... }, - show : function( ) { // ... }, - hide : function( ) { // ... }, -*/ - update : function( content ) { } - }; + update : function( content ) { } + }; - jQuery.fn.SimpleList = function( method ) { + $.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 { - jQuery.error( 'Method ' + method + ' does not exist on jQuery.SimpleList' ); + $.error( 'Method ' + method + ' does not exist on jQuery.SimpleList' ); } - }; /* Private methods */ - function update_list(e, rows) - { + function update_list(e, rows) { if (rows.length == 0) { e.data.instance.html('No result !'); return; @@ -99,8 +81,7 @@ return "
  • " + value + "
  • "; } } - - + function myslice_html_ul(data, key, value, is_cached) { var out = ""; - return out; } - - /* - function myslice_async_render_list(data, key, value, is_cached) { - // we suppose we only have one column, or we need more precisions - var col = []; - if (myslice_array_size(data[0]) == 1) { - for (var k in data[0]) { - key = k; - value = k; - } - } else { - for (var k in data[0]) { - if (k.substr(-4) == '_hrn') { - key = k; - } else { - value = k; - } - } - } - return myslice_html_ul(data, key, value, is_cached); - } - */ - + })( jQuery );