]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/application.js
Remove ad concept
[rails.git] / app / assets / javascripts / application.js
1 //= require jquery
2 //= require jquery_ujs
3 //= require jquery.timers
4 //= require jquery.cookie
5 //= require jquery.throttle-debounce
6 //= require bootstrap.tooltip
7 //= require bootstrap.dropdown
8 //= require augment
9 //= require osm
10 //= require leaflet
11 //= require leaflet.osm
12 //= require leaflet.hash
13 //= require leaflet.zoom
14 //= require leaflet.extend
15 //= require leaflet.locationfilter
16 //= require i18n/translations
17 //= require oauth
18 //= require piwik
19 //= require map
20 //= require richtext
21 //= require querystring
22
23 var querystring = require('querystring-component');
24
25 function zoomPrecision(zoom) {
26     return Math.max(0, Math.ceil(Math.log(zoom) / Math.LN2));
27 }
28
29 function remoteEditHandler(bbox, select) {
30   var loaded = false,
31       query = {
32           left: bbox.getWest() - 0.0001,
33           top: bbox.getNorth() + 0.0001,
34           right: bbox.getEast() + 0.0001,
35           bottom: bbox.getSouth() - 0.0001
36       };
37
38   if (select) query.select = select;
39
40   var iframe = $('<iframe>')
41     .hide()
42     .appendTo('body')
43     .attr("src", "http://127.0.0.1:8111/load_and_zoom?" + querystring.stringify(query))
44     .on('load', function() {
45       $(this).remove();
46       loaded = true;
47     });
48
49   setTimeout(function () {
50     if (!loaded) {
51       alert(I18n.t('site.index.remote_failed'));
52       iframe.remove();
53     }
54   }, 1000);
55
56   return false;
57 }
58
59 /*
60  * Called as the user scrolls/zooms around to maniplate hrefs of the
61  * view tab and various other links
62  */
63 function updatelinks(loc, zoom, layers, object) {
64   $(".geolink").each(function(index, link) {
65     var href = link.href.split(/[?#]/)[0],
66         args = querystring.parse(link.search.substring(1));
67
68     if (object && $(link).hasClass("object")) args[object.type] = object.id;
69
70     var query = querystring.stringify(args);
71     if (query) href += '?' + query;
72
73     args = {
74       lat: loc.lat,
75       lon: loc.lon || loc.lng,
76       zoom: zoom
77     };
78
79     if (layers && $(link).hasClass("layers")) {
80       args.layers = layers;
81     }
82
83     href += OSM.formatHash(args);
84
85     link.href = href;
86   });
87
88   var editDisabled = zoom < 13;
89   $('#edit_tab')
90     .tooltip({placement: 'bottom'})
91     .off('click.minzoom')
92     .on('click.minzoom', function() { return !editDisabled; })
93     .toggleClass('disabled', editDisabled)
94     .attr('data-original-title', editDisabled ?
95       I18n.t('javascripts.site.edit_disabled_tooltip') : '');
96 }
97
98 // generate a cookie-safe string of map state
99 function cookieContent(map) {
100   var center = map.getCenter().wrap();
101   return [center.lng, center.lat, map.getZoom(), map.getLayersCode()].join('|');
102 }
103
104 function escapeHTML(string) {
105   var htmlEscapes = {
106     '&': '&amp;',
107     '<': '&lt;',
108     '>': '&gt;',
109     '"': '&quot;',
110     "'": '&#x27;'
111   };
112   return string == null ? '' : (string + '').replace(/[&<>"']/g, function(match) {
113       return htmlEscapes[match];
114   });
115 }
116
117 function maximiseMap() {
118   $("#content").addClass("maximised");
119 }
120
121 function minimiseMap() {
122   $("#content").removeClass("maximised");
123 }
124
125 /*
126  * Forms which have been cached by rails may have the wrong
127  * authenticity token, so patch up any forms with the correct
128  * token taken from the page header.
129  */
130 $(document).ready(function () {
131   var auth_token = $("meta[name=csrf-token]").attr("content");
132   $("form input[name=authenticity_token]").val(auth_token);
133
134   $("#menu-icon").on("click", function() {
135     $("header").toggleClass("closed");
136   });
137 });