]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/application.js
Merge remote-tracking branch 'upstream/pull/6727'
[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 matomo
17 //= require richtext
18 //= require language_selector
19
20 {
21   const application_data = $("head").data();
22   const locale = application_data.locale;
23
24   OSM.i18n.defaultLocale = OSM.DEFAULT_LOCALE;
25   OSM.i18n.locale = application_data.locale;
26
27   import(OSM.MAKE_PLURAL_CARDINALS).then((plurals) => {
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
35   OSM.preferred_editor = application_data.preferredEditor;
36   OSM.preferred_languages = application_data.preferredLanguages;
37
38   if (application_data.user) {
39     OSM.user = application_data.user;
40
41     if (application_data.userHome) {
42       OSM.home = application_data.userHome;
43     }
44   }
45
46   if (application_data.location) {
47     OSM.location = application_data.location;
48   }
49 }
50
51 /*
52  * Called as the user scrolls/zooms around to manipulate hrefs of the
53  * view tab and various other links
54  */
55 window.updateLinks = function (loc, zoom, layers, object) {
56   $(".geolink").each(function (index, link) {
57     let href = link.href.split(/[?#]/)[0];
58     const queryArgs = new URLSearchParams(link.search),
59           editlink = $(link).hasClass("editlink");
60
61     for (const arg of ["node", "way", "relation", "changeset", "note"]) {
62       queryArgs.delete(arg);
63     }
64
65     if (object && editlink) {
66       queryArgs.set(object.type, object.id);
67     }
68
69     const query = queryArgs.toString();
70     if (query) href += "?" + query;
71
72     const hashArgs = {
73       lat: loc.lat,
74       lon: "lon" in loc ? loc.lon : loc.lng,
75       zoom: zoom
76     };
77
78     if (layers && !editlink) {
79       hashArgs.layers = layers;
80     }
81
82     href += OSM.formatHash(hashArgs);
83
84     link.href = href;
85   });
86
87   // Disable the button group and also the buttons to avoid
88   // inconsistent behaviour when zooming
89   const editDisabled = zoom < 13;
90   $("#edit_tab")
91     .tooltip({ placement: "bottom" })
92     .tooltip(editDisabled ? "enable" : "disable")
93     .toggleClass("disabled", editDisabled)
94     .find("a")
95     .toggleClass("disabled", editDisabled);
96 };
97
98 $(function () {
99   // NB: Turns Turbo Drive off by default. Turbo Drive must be opt-in on a per-link and per-form basis
100   // See https://turbo.hotwired.dev/reference/drive#turbo.session.drive
101   Turbo.session.drive = false;
102
103   const $expandedSecondaryMenu = $("header nav.secondary > ul"),
104         $collapsedSecondaryMenu = $("#compact-secondary-nav > ul"),
105         secondaryMenuItems = [],
106         breakpointWidth = 768;
107   let moreItemWidth = 0;
108
109   OSM.csrf = {};
110   OSM.csrf[($("meta[name=csrf-param]").attr("content"))] = $("meta[name=csrf-token]").attr("content");
111
112   function updateHeader() {
113     const windowWidth = $(window).width();
114
115     if (windowWidth < breakpointWidth) {
116       expandAllSecondaryMenuItems();
117     } else {
118       if (secondaryMenuItems.length === 0) {
119         $expandedSecondaryMenu.find("li:not(#compact-secondary-nav)").each(function () {
120           secondaryMenuItems.push([this, $(this).width()]);
121         });
122         moreItemWidth = $("#compact-secondary-nav").width();
123       }
124       const availableWidth = $expandedSecondaryMenu.width();
125       secondaryMenuItems.forEach(function (item) {
126         $(item[0]).remove();
127       });
128       let runningWidth = 0,
129           i = 0,
130           requiredWidth;
131       for (; i < secondaryMenuItems.length; i++) {
132         runningWidth += secondaryMenuItems[i][1];
133         if (i < secondaryMenuItems.length - 1) {
134           requiredWidth = runningWidth + moreItemWidth;
135         } else {
136           requiredWidth = runningWidth;
137         }
138         if (requiredWidth > availableWidth) {
139           break;
140         }
141         expandSecondaryMenuItem($(secondaryMenuItems[i][0]));
142       }
143       for (; i < secondaryMenuItems.length; i++) {
144         collapseSecondaryMenuItem($(secondaryMenuItems[i][0]));
145       }
146     }
147   }
148
149   function expandAllSecondaryMenuItems() {
150     secondaryMenuItems.forEach(function (item) {
151       expandSecondaryMenuItem($(item[0]));
152     });
153   }
154
155   function expandSecondaryMenuItem($item) {
156     $item.children("a")
157       .removeClass("dropdown-item")
158       .addClass("nav-link")
159       .addClass(function () {
160         return $(this).hasClass("active") ? "text-secondary-emphasis" : "text-secondary";
161       });
162     $item.addClass("nav-item").insertBefore("#compact-secondary-nav");
163     toggleCompactSecondaryNav();
164   }
165
166   function collapseSecondaryMenuItem($item) {
167     $item.children("a")
168       .addClass("dropdown-item")
169       .removeClass("nav-link text-secondary text-secondary-emphasis");
170     $item.removeClass("nav-item").appendTo($collapsedSecondaryMenu);
171     toggleCompactSecondaryNav();
172   }
173
174   function toggleCompactSecondaryNav() {
175     $("#compact-secondary-nav").toggle(
176       $collapsedSecondaryMenu.find("li").length > 0
177     );
178   }
179
180   /*
181    * Chrome 60 and later seem to fire the "ready" callback
182    * before the DOM is fully ready causing us to measure the
183    * wrong sizes for the header elements - use a 0ms timeout
184    * to defer the measurement slightly as a workaround.
185    */
186   setTimeout(function () {
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
205   document.addEventListener("turbo:frame-load", function (event) {
206     if (event.target.id === "select_language_list") {
207       const $search = $("#language_search");
208       if ($search.length) {
209         $search.off("input");
210         $search.on("input", function () {
211           const query = $(this).val().toLowerCase();
212           $(".language-item").each(function () {
213             const text = $(this).text().toLowerCase();
214             $(this).toggle(text.indexOf(query) > -1);
215           });
216         });
217       }
218       $search
219         .val("")
220         .trigger("input")
221         .trigger("focus");
222     }
223   });
224
225   $("#select_language_dialog").on("shown.bs.modal", function () {
226     $("#language_search")
227       .val("")
228       .trigger("input")
229       .trigger("focus");
230     const $frame = $("#select_language_list");
231     const originalSrc = new URL($frame.attr("src"), window.location.origin);
232
233     // Set `source` query param to current page path + query string
234     originalSrc.searchParams.set("source", window.location.pathname + window.location.search);
235
236     if ($frame.attr("src") !== originalSrc.toString()) {
237       $frame.attr("src", originalSrc.toString());
238     }
239   });
240 });