site.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  1. "use strict";
  2. $(function () {
  3. $('.fieldlist').each(function() {
  4. var $this=$(this);
  5. var lis=$this.children('li');
  6. lis.first().children(':first').after(' <button class="btn btn-mini" type="button"><i class="icon-plus"></i></button>');
  7. lis.first().children('button').click(function() {
  8. clone_fieldlist($this.children('li:last'));
  9. });
  10. lis=lis.slice(1);
  11. lis.each(function() {
  12. append_remove_button($(this));
  13. });
  14. });
  15. $('.selectpicker').selectpicker();
  16. $("[data-toggle='tooltip']").tooltip();
  17. var Geoinput = function(el, options, e) {
  18. this.$element = $(el);
  19. this.init();
  20. };
  21. Geoinput.prototype = {
  22. constructor: Geoinput,
  23. init: function() {
  24. this.$element.hide();
  25. this.$button = this.makeButton();
  26. this.$modal = this.makeModal();
  27. this.$element.after(this.$button);
  28. this.$element.after(this.$modal);
  29. this.$modal.find('textarea').val(this.$element.val());
  30. this.buttonIcon();
  31. var that = this;
  32. this.$button.click(function(e) {
  33. e.preventDefault();
  34. that.$modal.modal();
  35. return false;
  36. });
  37. this.$modal.find('.btn-primary').click(function(e) {
  38. e.preventDefault();
  39. that.$modal.modal('hide');
  40. that.$element.val(that.$modal.find('textarea').val());
  41. that.buttonIcon.call(that);
  42. return false;
  43. });
  44. },
  45. buttonIcon: function() {
  46. if(this.$element.val())
  47. this.$button[0].firstChild.src = '/static/img/map_edit.png';
  48. else
  49. this.$button[0].firstChild.src = '/static/img/map.png';
  50. },
  51. makeButton: function() {
  52. return $('<button/>').addClass("btn btn-default geoinput-button")
  53. .css('padding', '4px 7px')
  54. .attr('title', 'enter geojson')
  55. .html('<img src="/static/img/map.png" alt="map">');
  56. },
  57. makeModal: function() {
  58. return $('<div class="modal hide geoinput-modal">'+
  59. '<div class="modal-header">'+
  60. '<h3>'+{{ _("GeoJSON Input")|js_str }}+'</h3>'+
  61. '</div>'+
  62. '<div class="modal-body">'+
  63. '<p>'+{{ _("Paste your GeoJSON here :")|js_str }}+'</p>'+
  64. '<p><textarea style="width: 97%; height: 200px"></textarea></p>'+
  65. '<p><small>'+{{ _("Accepted types: Polygon, MultiPolygon")|js_str }}+'</small></p>'+
  66. '</div>'+
  67. '<div class="modal-footer">'+
  68. '<button class="btn" data-dismiss="modal" aria-hidden="true">'+{{ _("Cancel")|js_str }}+'</button>'+
  69. '<button class="btn btn-primary">'+{{ _("Done")|js_str }}+'</button>'+
  70. '</div>'+
  71. '</div>')
  72. }
  73. }
  74. $.fn.geoinput = function(options, event) {
  75. return this.each(function() {
  76. var $this = $(this), data = $this.data('geoinput');
  77. if($this.is('input, textarea')) {
  78. $this.data('geoinput', (data = new Geoinput(this, options, event)));
  79. }
  80. });
  81. };
  82. $('.geoinput').geoinput();
  83. init_map();
  84. });
  85. function layer_from_covered_area(ca) {
  86. return L.geoJson(ca['area'], {
  87. style: {
  88. "color": "#ff7800",
  89. "weight": 5,
  90. "opacity": 0.65
  91. }
  92. });
  93. }
  94. function get_covered_areas(isp_id, cb) {
  95. if('areas' in window.isp_list[isp_id]) {
  96. cb(window.isp_list[isp_id]['areas']);
  97. return;
  98. } else {
  99. window.isp_list[isp_id]['areas']=[];
  100. }
  101. return $.getJSON('/isp/'+isp_id+'/covered_areas.json', function done(data) {
  102. $.each(data, function(k, covered_area) {
  103. if(!covered_area['area'])
  104. return;
  105. covered_area['layer']=layer_from_covered_area(covered_area);
  106. window.isp_list[isp_id]['areas'].push(
  107. covered_area
  108. );
  109. });
  110. cb(window.isp_list[isp_id]['areas']);
  111. });
  112. }
  113. L.Control.Pinpoint = L.Control.extend({
  114. options: {
  115. position: 'topleft'
  116. },
  117. onAdd: function(map) {
  118. this._map = map;
  119. this.select_mode = false;
  120. this._container = L.DomUtil.create('div', 'leaflet-control-pinpoint leaflet-bar');
  121. this._button = L.DomUtil.create('a', 'leaflet-control-pinpoint-button', this._container);
  122. this._button.href = '#';
  123. this._button.innerHTML = '<i class="icon-hand-down"></i>';
  124. this._button.style.cursor = 'pointer';
  125. this._button.title = {{ _('Find ISPs near you')|js_str }};
  126. L.DomEvent
  127. .addListener(this._button, 'click', L.DomEvent.stop)
  128. .addListener(this._button, 'click', L.DomEvent.stopPropagation)
  129. .addListener(this._button, 'click', function() {
  130. if(this.select_mode) {
  131. this._map.removeLayer(this._marker);
  132. this._disableSelect();
  133. } else {
  134. this._enableSelect();
  135. }
  136. }, this);
  137. this._icon = L.icon({
  138. iconUrl: 'static/img/marker_selector.png',
  139. iconSize: [18, 28],
  140. iconAnchor: [9, 26],
  141. });
  142. this._marker = L.marker([0, 0], {icon: this._icon, draggable: true});
  143. this._marker.on('dragend', this.findNearISP, this);
  144. return this._container;
  145. },
  146. _enableSelect: function() {
  147. this._marker.addTo(this._map);
  148. this._map.on('mousemove', this._mouseMove, this);
  149. this._map.on('click', this._setMarker, this);
  150. this._map._container.style.cursor = 'crosshair';
  151. this._marker._icon.style.cursor = 'crosshair';
  152. this.select_mode = true;
  153. },
  154. _disableSelect: function() {
  155. this._map.off('mousemove', this._mouseMove, this);
  156. this._map.off('click', this._setMarker, this);
  157. this._map._container.style.cursor = 'default';
  158. if(!!this._marker._icon)
  159. this._marker._icon.style.cursor = 'default';
  160. this.select_mode = false;
  161. },
  162. _mouseMove: function(e) {
  163. this._marker.setLatLng(e.latlng);
  164. },
  165. _setMarker: function(e) {
  166. this._disableSelect();
  167. this.findNearISP();
  168. },
  169. findNearISP: function() {
  170. var c=this._marker.getLatLng();
  171. var map=this._map;
  172. $.getJSON('/isp/find_near.json?lon='+c.lng+'&lat='+c.lat, function(data) {
  173. var bnds;
  174. if(data[0].length) {
  175. var bnds=new L.LatLngBounds;
  176. var defered=[];
  177. $.each(data[0], function(k, match) {
  178. var isp=window.isp_list[match['isp_id']];
  179. defered.push(get_covered_areas(match['isp_id'], $.noop));
  180. });
  181. $.when.apply(this, defered).done(function() {
  182. $.each(data[0], function(k, match) {
  183. var isp=window.isp_list[match['isp_id']];
  184. var ispc=isp['marker'].getLatLng();
  185. var matching=null;
  186. $.each(isp['areas'], function(j, a) {
  187. if(a['id'] == match['area']['id'])
  188. matching = a;
  189. });
  190. bnds.extend([ispc['lat'], ispc['lng']]);
  191. isp['marker'].openPopup();
  192. if(matching !== null) {
  193. bnds.extend(matching['layer'].getBounds());
  194. matching['layer'].addTo(map);
  195. }
  196. });
  197. bnds.extend(c);
  198. bnds=bnds.pad(0.3);
  199. map.fitBounds(bnds, {paddingTopLeft: [20, 20]});
  200. });
  201. } else {
  202. var r=$.map(data[1], function(match, k) {
  203. var m=window.isp_list[match['isp_id']]['marker'];
  204. var ispc=m.getLatLng();
  205. if(k == 0) {
  206. map.closePopup();
  207. m.openPopup();
  208. }
  209. return [[ispc.lat, ispc.lng]];
  210. });
  211. r.push([c.lat, c.lng])
  212. bnds=new L.LatLngBounds(r);
  213. bnds=bnds.pad(0.3);
  214. map.fitBounds(bnds, {paddingTopLeft: [20, 20]});
  215. }
  216. });
  217. }
  218. })
  219. function init_map() {
  220. var osm=L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
  221. attribution: '&copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors',
  222. subdomains: 'ab'
  223. });
  224. if(!$('#map').length)
  225. return;
  226. var legend = L.control({
  227. position: 'bottomleft'
  228. });
  229. legend.onAdd = function (map) {
  230. var div = L.DomUtil.create('div', 'info legend');
  231. div.innerHTML = '<small>'+{{ _('Legend')|js_str }}+'&thinsp;:</small>&nbsp; ';
  232. div.innerHTML += '<i style="background: #ff7900" title="'+{{ _('ISP')|js_str }}+'"></i> ';
  233. div.innerHTML += '<i style="background: #00aac9" title="'+{{ _('Member of the FDN Federation')|js_str }}+'"></i> ';
  234. $(div).children('i').tooltip({container: 'body'});
  235. return div;
  236. };
  237. var map = L.map('map', {
  238. center: new L.LatLng(46.603354, 10),
  239. zoom: 4,
  240. minZoom: 2,
  241. layers: [osm],
  242. worldCopyJump: true
  243. });
  244. map.attributionControl.setPrefix('');
  245. map.addControl(new L.Control.Pinpoint);
  246. map.addControl(legend);
  247. var icon = L.icon({
  248. iconUrl: 'static/img/marker.png',
  249. iconSize: [14, 20], // size of the icon
  250. iconAnchor: [7, 20], // point of the icon which will correspond to marker's location
  251. popupAnchor: [0, -20] // point from which the popup should open relative to the iconAnchor
  252. });
  253. var icon_ffdn = $.extend(true, {}, icon);
  254. icon_ffdn['options']['iconUrl'] = 'static/img/marker_ffdn.png';
  255. window.isp_list={};
  256. $.getJSON('/isp/map_data.json', function(data) {
  257. $.each(data, function(k, isp) {
  258. window.isp_list[isp.id]=isp;
  259. if(!('coordinates' in isp))
  260. return; // cannot display an ISP without coordinates
  261. var marker = L.marker([isp['coordinates']['latitude'], isp['coordinates']['longitude']],
  262. {'icon': isp.ffdn_member ? icon_ffdn : icon});
  263. marker.bindPopup(isp.popup);
  264. marker.getPopup().on('open', function() {
  265. get_covered_areas(isp.id, function(items) {
  266. $.each(items, function(k, ca) {
  267. ca['layer'].addTo(map);
  268. });
  269. });
  270. });
  271. marker.getPopup().on('close', function() {
  272. $.each(window.isp_list[isp.id]['areas'], function(k, ca) {
  273. map.removeLayer(ca['layer']);
  274. });
  275. });
  276. marker.addTo(map);
  277. window.isp_list[isp.id]['marker']=marker;
  278. });
  279. });
  280. }
  281. function change_input_num(li, new_num, reset) {
  282. li.find('input,select,textarea').each(function() {
  283. var id = $(this).attr('id').replace(/^(.*)-\d{1,4}/, '$1-'+new_num);
  284. $(this).attr({'name': id, 'id': id});
  285. if(!!reset)
  286. $(this).val('').removeAttr('checked');
  287. });
  288. }
  289. function append_remove_button(li) {
  290. li.children(':first').after(' <button class="btn btn-mini" type="button"><i class="icon-minus"></i></button>');
  291. li.children('button').click(function() {
  292. var ul=li.parent();
  293. li.remove();
  294. var i=0;
  295. ul.children('li').each(function() {
  296. change_input_num($(this), i);
  297. i++;
  298. });
  299. });
  300. };
  301. function clone_fieldlist(el) {
  302. var new_element = el.clone(true);
  303. var elem_id = new_element.find(':input')[0].id;
  304. var elem_num = parseInt(elem_id.replace(/^.*-(\d{1,4})/, '$1')) + 1;
  305. new_element.children('button').remove();
  306. new_element.children('.help-inline.error-list').remove();
  307. new_element.find('.bootstrap-select').remove();
  308. new_element.find('.geoinput-button').remove();
  309. new_element.find('.geoinput-modal').remove();
  310. change_input_num(new_element, elem_num, true);
  311. new_element.find('.selectpicker').data('selectpicker', null).selectpicker();
  312. new_element.find('.geoinput').geoinput();
  313. append_remove_button(new_element);
  314. el.after(new_element);
  315. }