X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plugins%2Fgooglemaps%2Fstatic%2Fjs%2Fgooglemaps.js;h=2add9611c36755d271e9f8ee6922885229939c65;hb=42575351510d84dc6713b8d35e970a5baf9af955;hp=e97d1f5f5bd7bca26434dd32d548b16a11fd6bad;hpb=71188a9ad677af8150780c40ce51936b06e18b9c;p=myslice.git diff --git a/plugins/googlemaps/static/js/googlemaps.js b/plugins/googlemaps/static/js/googlemaps.js index e97d1f5f..2add9611 100644 --- a/plugins/googlemaps/static/js/googlemaps.js +++ b/plugins/googlemaps/static/js/googlemaps.js @@ -4,25 +4,41 @@ * License: GPLv3 */ +/* BUGS: + * - infowindow is not properly reopened when the maps does not have the focus + */ + +googlemaps_debug=true; +googlemaps_debug_detailed=false; + (function($){ - var GoogleMaps = Plugin.extend({ + var GoogleMaps = Plugin.extend({ - init: function(options, element) - { + init: function(options, element) { + if (googlemaps_debug) messages.debug("GoogleMaps.init"); this._super(options, element); /* Member variables */ // query status this.received_all = false; this.received_set = false; - this.in_set_buffer = Array(); + this.in_set_buffer = []; + + // key -> { marker, checked } + this.map_markers = {} /* XXX Events XXX */ - this.$element.on('show.Datatables', this.on_show); + this.el().on('show', this, this.on_show); // 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'); @@ -33,9 +49,10 @@ /* PLUGIN EVENTS */ - on_show: function() - { - google.maps.event.trigger(map, 'resize'); + on_show: function(e) { + if (googlemaps_debug) messages.debug("on_show"); + var self = e.data; + google.maps.event.trigger(self.map, 'resize'); }, // on_show /* GUI EVENTS */ @@ -44,28 +61,101 @@ /** */ - initialize_map: function() - { - this.map = null; + initialize_map: function() { + if (googlemaps_debug) messages.debug("initialize_map"); this.markerCluster = null; - this.markers = []; this.coords = new Array(); var myLatlng = new google.maps.LatLng(this.options.latitude, this.options.longitude); var myOptions = { zoom: this.options.zoom, center: myLatlng, - mapTypeId: google.maps.MapTypeId.ROADMAP + mapTypeId: google.maps.MapTypeId.ROADMAP, } - - this.map = new google.maps.Map(document.getElementById("map"), myOptions); + + var domid = this.options.plugin_uuid + manifold.separator + 'map'; + var el = document.getElementById(domid); + if (googlemaps_debug) messages.debug("gmap.initialize_map based on domid=" + domid + " el=" + el); + this.map = new google.maps.Map(el, myOptions); this.infowindow = new google.maps.InfoWindow(); }, // initialize_map + set_checkbox: function(record, checked) { + if (googlemaps_debug_detailed) messages.debug ("set_checkbox"); + /* Default: checked = true */ + if (typeof checked === 'undefined') + checked = true; + + var key_value; + /* The function accepts both records and their key */ + switch (manifold.get_type(record)) { + case TYPE_VALUE: + key_value = record; + break; + case TYPE_RECORD: + /* XXX Test the key before ? */ + key_value = record[this.key]; + break; + default: + throw "Not implemented"; + break; + } + + // we cannot directly edit html, since nothing but marker is displayed + //var checkbox_id = this.id('checkbox', this.id_from_key(this.key, key_value)); + //checkbox_id = '#' + checkbox_id.replace(/\./g, '\\.'); + //$(checkbox_id, this.table.fnGetNodes()).attr('checked', checked); + + var dict_info = this.map_markers[unfold.escape_id(key_value).replace(/\\/g, '')]; + + + // Update the marker content + dict_info.in_set = checked; + dict_info.marker.content = this.get_marker_content(dict_info.record, checked); + + // Thierry - this code seems to cause the googlmap area to go all grayed out + // once all the quesries have come back + // BEG turning off temporarily + // // Update opened infowindow + // // XXX Factor this code + // this.infowindow.close(); + // this.infowindow.open(this.map, dict_info.marker); + // this.infowindow.setContent(dict_info.marker.content); + // this.els('map-button').unbind('click').click(this, this._button_click); + // END turning off temporarily + //var button = this.checkbox(record, checked); + //this.el('checkbox', this.id_from_record(method, record)).html(button); + }, + + checkbox: function(record, checked) { + if (googlemaps_debug_detailed) messages.debug ("checkbox"); + if (typeof checked === 'undefined') + checked = false; + + var method = manifold.query_store.find_analyzed_query(this.options.query_uuid).object; + var action = checked ? 'checked' : 'del'; + var ctx = { + action_class : checked ? 'ui-icon-circle-minus' : 'ui-icon-circle-plus', + action_message: checked ? 'Remove from slice' : 'Add to slice', + }; + var button = this.load_template('template', ctx); + + var id_record = this.id_from_record(method, record); + if (!id_record) + return 'ERROR'; + var id = this.id('checkbox', this.id_from_record(method, record)); + return "
" + button + "
"; + }, + + get_marker_content: function(record, checked) { + if (googlemaps_debug_detailed) messages.debug ("get_marker_content"); + return '

' + this.method + ': ' + get_value(record['resource_hrn']) + '
network: ' + get_value(record['network'])+'

' + this.checkbox(record, checked); + }, + /** */ - new_record: function(record) - { + new_record: function(record) { + if (googlemaps_debug_detailed) messages.debug ("new_record"); // get the coordinates var latitude=get_value(record['latitude']); var longitude=get_value(record['longitude']); @@ -85,17 +175,6 @@ // get the coordinate object var myLatlng = new google.maps.LatLng(lat, lng); } - // If the node is attached to the slice, action will be Remove; else action will be add to slice - if (typeof(record['sliver']) != 'undefined') { - data.current_resources.push(record['urn']); - action="del"; - action_class="ui-icon-circle-minus"; - action_message="Remove from slice"; - }else{ - action="add"; - action_class="ui-icon-circle-plus"; - action_message="Add to slice"; - } // XXX not working if (!(record['latitude'])) { return true; @@ -103,53 +182,51 @@ //jQuery(".map-button").click(button_click); //if(jQuery.inArray(record, rows)>-1){ - var marker = new google.maps.Marker({ - position: myLatlng, - title: get_value(record['hostname']), - // This should be done by the rendering - content: '

Agent: ' + get_value(record['ip']) + ' (' + get_value(record['resource_hrn']) + ')
Platform: ' + get_value(record['platform'])+'

' + - '
'+ - ''+action_message+ - '
' - }); - - this.addInfoWindow(marker, this.map); - this.markers.push(marker); + var marker = new google.maps.Marker({ + position: myLatlng, + title: get_value(record['hostname']), + // This should be done by the rendering + content: this.get_marker_content(record, false), + }); + + this.addInfoWindow(marker, this.map); + var key_value = (this.key in record) ? record[this.key] : null; + if (!key_value) + return; + this.map_markers[unfold.escape_id(key_value).replace(/\\/g, '')] = { + marker: marker, + in_set: false, + record: record, + value: key_value + } //} }, // new_record - addInfoWindow: function(marker, map) - { + addInfoWindow: function(marker, map) { + if (googlemaps_debug_detailed) messages.debug ("addInfoWindow"); + var self = this; google.maps.event.addListener(marker, 'click', function () { - if(object.infowindow){ - object.infowindow.close(); + if(self.infowindow){ + self.infowindow.close(); } - object.infowindow.setContent(marker.content);// = new google.maps.InfoWindow({ content: marker.content }); - object.infowindow.open(map, marker); + self.infowindow.setContent(marker.content);// = new google.maps.InfoWindow({ content: marker.content }); + self.infowindow.open(map, marker); // onload of the infowindow on the map, bind a click on a button - google.maps.event.addListener(object.infowindow, 'domready', function() { - jQuery('.map-button').unbind('click'); -// jQuery(".map-button").click({instance: instance_, infoWindow: object.infowindow}, button_click); + google.maps.event.addListener(self.infowindow, 'domready', function() { + self.els('map-button').unbind('click').click(self, self._button_click); + // jQuery(".map-button").click({instance: instance_, infoWindow: object.infowindow}, button_click); }); }); }, // addInfoWindow - set_checkbox: function(record) - { - // XXX urn should be replaced by the key - // XXX we should enforce that both queries have the same key !! - //checkbox_id = "#hazelnut-checkbox-" + object.options.plugin_uuid + "-" + unfold.escape_id(record[ELEMENT_KEY].replace(/\\/g, '')) - //$(checkbox_id, object.table.fnGetNodes()).attr('checked', true); - }, // set_checkbox - /*************************** QUERY HANDLER ****************************/ /*************************** RECORD HANDLER ***************************/ - on_new_record: function(record) - { + on_new_record: function(record) { + if (googlemaps_debug_detailed) messages.debug("on_new_record"); if (this.received_all) // update checkbox for record this.set_checkbox(record); @@ -158,71 +235,91 @@ this.in_set_buffer.push(record); }, - on_clear_records: function(record) - { - + on_clear_records: function(record) { + if (googlemaps_debug_detailed) messages.debug("on_clear_records"); }, // Could be the default in parent - on_query_in_progress: function() - { + on_query_in_progress: function() { + if (googlemaps_debug) messages.debug("on_query_in_progress"); this.spin(); }, - on_query_done: function() - { + on_query_done: function() { + if (googlemaps_debug) messages.debug("on_query_done"); if (this.received_all) this.unspin(); this.received_set = true; }, + on_field_state_changed: function(data) { + if (googlemaps_debug) messages.debug("on_field_state_changed"); + switch(data.request) { + case FIELD_REQUEST_ADD: + case FIELD_REQUEST_ADD_RESET: + this.set_checkbox(data.value, true); + break; + case FIELD_REQUEST_REMOVE: + case FIELD_REQUEST_REMOVE_RESET: + this.set_checkbox(data.value, false); + break; + default: + break; + } + }, + + // all - on_all_new_record: function(record) - { + on_all_new_record: function(record) { + if (googlemaps_debug_detailed) messages.debug("on_all_new_record"); this.new_record(record); }, - on_all_clear_records: function() - { + on_all_clear_records: function() { + if (googlemaps_debug) messages.debug("on_all_clear_records"); }, - on_all_query_in_progress: function() - { + on_all_query_in_progress: function() { + if (googlemaps_debug) messages.debug("on_all_query_in_progress"); // XXX parent this.spin(); }, - on_all_query_done: function() - { - + on_all_query_done: function() { + if (googlemaps_debug) messages.debug("on_all_query_done"); // MarkerClusterer - this.markerCluster = new MarkerClusterer(this.map, this.markers, {zoomOnClick: false}); + var markers = []; + $.each(this.map_markers, function (k, v) { markers.push(v.marker); }); + + this.markerCluster = new MarkerClusterer(this.map, markers, {zoomOnClick: false}); google.maps.event.addListener(this.markerCluster, "clusterclick", function (cluster) { - var markers = cluster.getMarkers(); + var cluster_markers = cluster.getMarkers(); var bounds = new google.maps.LatLngBounds(); - /* - * date: 24/05/2012 - * author: lbaron - * Firefox JS Error - replaced $.each by JQuery.each - */ - jQuery.each(markers, function(i, marker){ - bounds.extend(marker.getPosition()); - }); - - //map.setCenter(bounds.getCenter(), map.getBoundsZoomLevel(bounds)); - this.map.fitBounds(bounds); + /* + * date: 24/05/2012 + * author: lbaron + * Firefox JS Error - replaced $.each by JQuery.each + */ + jQuery.each(cluster_markers, function(i, marker){ + bounds.extend(marker.getPosition()); + }); + + //map.setCenter(bounds.getCenter(), map.getBoundsZoomLevel(bounds)); + this.map.fitBounds(bounds); }); var self = this; if (this.received_set) { /* XXX needed ? XXX We uncheck all checkboxes ... */ - $("[id^='datatables-checkbox-" + this.options.plugin_uuid +"']").attr('checked', false); + //$("[id^='datatables-checkbox-" + this.options.plugin_uuid +"']").attr('checked', false); /* ... and check the ones specified in the resource list */ $.each(this.in_set_buffer, function(i, record) { - self.set_checkbox(record); + self.set_checkbox(record, true); }); + // reset + self.in_set_buffer = []; this.unspin(); } @@ -232,14 +329,18 @@ /************************** PRIVATE METHODS ***************************/ - _button_click: function(e) - { - var op_value=this.id.split("/"); - if(op_value.length>0) { - var value = op_value[1]; - manifold.raise_event(this.options.query_uuid, (op_value[0] == 'add')?SET_ADD:SET_REMOVED, value); - } - } // button_click + _button_click: function(e) { + if (googlemaps_debug) messages.debug("_button_click"); + var self = e.data; + + var escaped_key = self.key_from_id($(this).parent().attr('id'), 'checkbox'); + var info_dict = self.map_markers[escaped_key]; + var in_set = info_dict.in_set; + var value = info_dict.value; + + var escaped_key = self.map_markers[self.key_from_id($(this).parent().attr('id'), 'checkbox')] + manifold.raise_event(self.options.query_uuid, (in_set) ? SET_REMOVED : SET_ADD, value); + } // _button_click });