]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/application.js
Remove jQuery.timers plugin
[rails.git] / app / assets / javascripts / application.js
1 //= require jquery3
2 //= require jquery_ujs
3 //= require jquery.throttle-debounce
4 //= require js-cookie/dist/js.cookie
5 //= require popper
6 //= require bootstrap-sprockets
7 //= require osm
8 //= require leaflet/dist/leaflet-src
9 //= require leaflet.osm
10 //= require leaflet.map
11 //= require leaflet.zoom
12 //= require leaflet.locationfilter
13 //= require i18n
14 //= require oauth
15 //= require matomo
16 //= require richtext
17 //= require qs/dist/qs
18
19 /*
20  * Called as the user scrolls/zooms around to manipulate hrefs of the
21  * view tab and various other links
22  */
23 window.updateLinks = function (loc, zoom, layers, object) {
24   $(".geolink").each(function (index, link) {
25     var href = link.href.split(/[?#]/)[0],
26         args = Qs.parse(link.search.substring(1)),
27         editlink = $(link).hasClass("editlink");
28
29     delete args.node;
30     delete args.way;
31     delete args.relation;
32     delete args.changeset;
33     delete args.note;
34
35     if (object && editlink) {
36       args[object.type] = object.id;
37     }
38
39     var query = Qs.stringify(args);
40     if (query) href += "?" + query;
41
42     args = {
43       lat: loc.lat,
44       lon: "lon" in loc ? loc.lon : loc.lng,
45       zoom: zoom
46     };
47
48     if (layers && !editlink) {
49       args.layers = layers;
50     }
51
52     href += OSM.formatHash(args);
53
54     link.href = href;
55   });
56
57   // Disable the button group and also the buttons to avoid
58   // inconsistent behaviour when zooming
59   var editDisabled = zoom < 13;
60   $("#edit_tab")
61     .tooltip({ placement: "bottom" })
62     .tooltip(editDisabled ? "enable" : "disable")
63     .toggleClass("disabled", editDisabled)
64     .find("a")
65     .toggleClass("disabled", editDisabled);
66 };
67
68 $(document).ready(function () {
69   // NB: Turns Turbo Drive off by default. Turbo Drive must be opt-in on a per-link and per-form basis
70   // See https://turbo.hotwired.dev/reference/drive#turbo.session.drive
71   Turbo.session.drive = false;
72
73   var headerWidth = 0,
74       compactWidth = 0;
75
76   function updateHeader() {
77     var windowWidth = $(window).width();
78
79     if (windowWidth < compactWidth) {
80       $("body").removeClass("compact-nav").addClass("small-nav");
81     } else if (windowWidth < headerWidth) {
82       $("body").addClass("compact-nav").removeClass("small-nav");
83     } else {
84       $("body").removeClass("compact-nav").removeClass("small-nav");
85     }
86   }
87
88   /*
89    * Chrome 60 and later seem to fire the "ready" callback
90    * before the DOM is fully ready causing us to measure the
91    * wrong sizes for the header elements - use a 0ms timeout
92    * to defer the measurement slightly as a workaround.
93    */
94   setTimeout(function () {
95     $("header").children(":visible").each(function (i, e) {
96       headerWidth = headerWidth + $(e).outerWidth();
97     });
98
99     $("body").addClass("compact-nav");
100
101     $("header").children(":visible").each(function (i, e) {
102       compactWidth = compactWidth + $(e).outerWidth();
103     });
104
105     $("body").removeClass("compact-nav");
106
107     $("header").removeClass("text-nowrap");
108     $("header nav.secondary > ul").removeClass("flex-nowrap");
109
110     updateHeader();
111
112     $(window).resize(updateHeader);
113     $(document).on("turbo:render", updateHeader);
114   }, 0);
115
116   $("#menu-icon").on("click", function (e) {
117     e.preventDefault();
118     $("header").toggleClass("closed");
119   });
120
121   $("nav.primary li a").on("click", function () {
122     $("header").toggleClass("closed");
123   });
124
125   var application_data = $("head").data();
126
127   I18n.default_locale = OSM.DEFAULT_LOCALE;
128   I18n.locale = application_data.locale;
129   I18n.fallbacks = true;
130
131   OSM.preferred_editor = application_data.preferredEditor;
132   OSM.preferred_languages = application_data.preferredLanguages;
133
134   if (application_data.user) {
135     OSM.user = application_data.user;
136
137     if (application_data.userHome) {
138       OSM.home = application_data.userHome;
139     }
140   }
141
142   if (application_data.location) {
143     OSM.location = application_data.location;
144   }
145
146   $("#edit_tab")
147     .attr("title", I18n.t("javascripts.site.edit_disabled_tooltip"));
148 });