]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/application.js
Merge remote-tracking branch 'upstream/pull/6216'
[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.shortbread
11 //= require leaflet.maptiler
12 //= require leaflet.map
13 //= require leaflet.zoom
14 //= require leaflet.locationfilter
15 //= require i18n
16 //= require make-plural/cardinals
17 //= require matomo
18 //= require richtext
19 //= require language_selector
20
21 {
22   const application_data = $("head").data();
23   const locale = application_data.locale;
24
25   OSM.i18n.defaultLocale = OSM.DEFAULT_LOCALE;
26   OSM.i18n.locale = application_data.locale;
27
28   // '-' are replaced with '_' in https://github.com/eemeli/make-plural/tree/main/packages/plurals
29   const pluralizer = plurals[locale.replace(/\W+/g, "_")] || plurals[locale.split("-")[0]];
30   if (pluralizer) {
31     OSM.i18n.pluralization.register(locale, (_, count) => [pluralizer(count), "other"]);
32   }
33
34   OSM.preferred_editor = application_data.preferredEditor;
35   OSM.preferred_languages = application_data.preferredLanguages;
36
37   if (application_data.user) {
38     OSM.user = application_data.user;
39
40     if (application_data.userHome) {
41       OSM.home = application_data.userHome;
42     }
43   }
44
45   if (application_data.location) {
46     OSM.location = application_data.location;
47   }
48 }
49
50 /*
51  * Called as the user scrolls/zooms around to manipulate hrefs of the
52  * view tab and various other links
53  */
54 window.updateLinks = function (loc, zoom, layers, object) {
55   $(".geolink").each(function (index, link) {
56     let href = link.href.split(/[?#]/)[0];
57     const queryArgs = new URLSearchParams(link.search),
58           editlink = $(link).hasClass("editlink");
59
60     for (const arg of ["node", "way", "relation", "changeset", "note"]) {
61       queryArgs.delete(arg);
62     }
63
64     if (object && editlink) {
65       queryArgs.set(object.type, object.id);
66     }
67
68     const query = queryArgs.toString();
69     if (query) href += "?" + query;
70
71     const hashArgs = {
72       lat: loc.lat,
73       lon: "lon" in loc ? loc.lon : loc.lng,
74       zoom: zoom
75     };
76
77     if (layers && !editlink) {
78       hashArgs.layers = layers;
79     }
80
81     href += OSM.formatHash(hashArgs);
82
83     link.href = href;
84   });
85
86   // Disable the button group and also the buttons to avoid
87   // inconsistent behaviour when zooming
88   const editDisabled = zoom < 13;
89   $("#edit_tab")
90     .tooltip({ placement: "bottom" })
91     .tooltip(editDisabled ? "enable" : "disable")
92     .toggleClass("disabled", editDisabled)
93     .find("a")
94     .toggleClass("disabled", editDisabled);
95 };
96
97 $(function () {
98   // NB: Turns Turbo Drive off by default. Turbo Drive must be opt-in on a per-link and per-form basis
99   // See https://turbo.hotwired.dev/reference/drive#turbo.session.drive
100   Turbo.session.drive = false;
101
102   const $expandedSecondaryMenu = $("header nav.secondary > ul"),
103         $collapsedSecondaryMenu = $("#compact-secondary-nav > ul"),
104         secondaryMenuItems = [],
105         breakpointWidth = 768;
106   let moreItemWidth = 0;
107
108   OSM.csrf = {};
109   OSM.csrf[($("meta[name=csrf-param]").attr("content"))] = $("meta[name=csrf-token]").attr("content");
110
111   function updateHeader() {
112     const windowWidth = $(window).width();
113
114     if (windowWidth < breakpointWidth) {
115       $("body").addClass("small-nav");
116       expandAllSecondaryMenuItems();
117     } else {
118       $("body").removeClass("small-nav");
119       const availableWidth = $expandedSecondaryMenu.width();
120       secondaryMenuItems.forEach(function (item) {
121         $(item[0]).remove();
122       });
123       let runningWidth = 0,
124           i = 0,
125           requiredWidth;
126       for (; i < secondaryMenuItems.length; i++) {
127         runningWidth += secondaryMenuItems[i][1];
128         if (i < secondaryMenuItems.length - 1) {
129           requiredWidth = runningWidth + moreItemWidth;
130         } else {
131           requiredWidth = runningWidth;
132         }
133         if (requiredWidth > availableWidth) {
134           break;
135         }
136         expandSecondaryMenuItem($(secondaryMenuItems[i][0]));
137       }
138       for (; i < secondaryMenuItems.length; i++) {
139         collapseSecondaryMenuItem($(secondaryMenuItems[i][0]));
140       }
141     }
142   }
143
144   function expandAllSecondaryMenuItems() {
145     secondaryMenuItems.forEach(function (item) {
146       expandSecondaryMenuItem($(item[0]));
147     });
148   }
149
150   function expandSecondaryMenuItem($item) {
151     $item.children("a")
152       .removeClass("dropdown-item")
153       .addClass("nav-link")
154       .addClass(function () {
155         return $(this).hasClass("active") ? "text-secondary-emphasis" : "text-secondary";
156       });
157     $item.addClass("nav-item").insertBefore("#compact-secondary-nav");
158     toggleCompactSecondaryNav();
159   }
160
161   function collapseSecondaryMenuItem($item) {
162     $item.children("a")
163       .addClass("dropdown-item")
164       .removeClass("nav-link text-secondary text-secondary-emphasis");
165     $item.removeClass("nav-item").appendTo($collapsedSecondaryMenu);
166     toggleCompactSecondaryNav();
167   }
168
169   function toggleCompactSecondaryNav() {
170     $("#compact-secondary-nav").toggle(
171       $collapsedSecondaryMenu.find("li").length > 0
172     );
173   }
174
175   /*
176    * Chrome 60 and later seem to fire the "ready" callback
177    * before the DOM is fully ready causing us to measure the
178    * wrong sizes for the header elements - use a 0ms timeout
179    * to defer the measurement slightly as a workaround.
180    */
181   setTimeout(function () {
182     $expandedSecondaryMenu.find("li:not(#compact-secondary-nav)").each(function () {
183       secondaryMenuItems.push([this, $(this).width()]);
184     });
185     moreItemWidth = $("#compact-secondary-nav").width();
186
187     updateHeader();
188
189     $(window).resize(updateHeader);
190     $(document).on("turbo:render", updateHeader);
191   }, 0);
192
193   $("#menu-icon").on("click", function (e) {
194     e.preventDefault();
195     $("header").toggleClass("closed");
196   });
197
198   $("nav.primary li a").on("click", function () {
199     $("header").toggleClass("closed");
200   });
201
202   $("#edit_tab")
203     .attr("title", OSM.i18n.t("javascripts.site.edit_disabled_tooltip"));
204 });