3 //= require jquery.throttle-debounce
4 //= require js-cookie/dist/js.cookie
6 //= require bootstrap-sprockets
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
18 //= require language_selector
21 const application_data = $("head").data();
22 const locale = application_data.locale;
24 OSM.i18n.defaultLocale = OSM.DEFAULT_LOCALE;
25 OSM.i18n.locale = application_data.locale;
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]];
31 OSM.i18n.pluralization.register(locale, (_, count) => [pluralizer(count), "other"]);
35 OSM.preferred_editor = application_data.preferredEditor;
36 OSM.preferred_languages = application_data.preferredLanguages;
38 if (application_data.user) {
39 OSM.user = application_data.user;
41 if (application_data.userHome) {
42 OSM.home = application_data.userHome;
46 if (application_data.location) {
47 OSM.location = application_data.location;
52 * Called as the user scrolls/zooms around to manipulate hrefs of the
53 * view tab and various other links
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");
61 for (const arg of ["node", "way", "relation", "changeset", "note"]) {
62 queryArgs.delete(arg);
65 if (object && editlink) {
66 queryArgs.set(object.type, object.id);
69 const query = queryArgs.toString();
70 if (query) href += "?" + query;
74 lon: "lon" in loc ? loc.lon : loc.lng,
78 if (layers && !editlink) {
79 hashArgs.layers = layers;
82 href += OSM.formatHash(hashArgs);
87 // Disable the button group and also the buttons to avoid
88 // inconsistent behaviour when zooming
89 const editDisabled = zoom < 13;
91 .tooltip({ placement: "bottom" })
92 .tooltip(editDisabled ? "enable" : "disable")
93 .toggleClass("disabled", editDisabled)
95 .toggleClass("disabled", editDisabled);
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;
103 const $expandedSecondaryMenu = $("header nav.secondary > ul"),
104 $collapsedSecondaryMenu = $("#compact-secondary-nav > ul"),
105 secondaryMenuItems = [],
106 breakpointWidth = 768;
107 let moreItemWidth = 0;
110 OSM.csrf[($("meta[name=csrf-param]").attr("content"))] = $("meta[name=csrf-token]").attr("content");
112 function updateHeader() {
113 const windowWidth = $(window).width();
115 if (windowWidth < breakpointWidth) {
116 $("body").addClass("small-nav");
117 expandAllSecondaryMenuItems();
119 $("body").removeClass("small-nav");
120 const availableWidth = $expandedSecondaryMenu.width();
121 secondaryMenuItems.forEach(function (item) {
124 let runningWidth = 0,
127 for (; i < secondaryMenuItems.length; i++) {
128 runningWidth += secondaryMenuItems[i][1];
129 if (i < secondaryMenuItems.length - 1) {
130 requiredWidth = runningWidth + moreItemWidth;
132 requiredWidth = runningWidth;
134 if (requiredWidth > availableWidth) {
137 expandSecondaryMenuItem($(secondaryMenuItems[i][0]));
139 for (; i < secondaryMenuItems.length; i++) {
140 collapseSecondaryMenuItem($(secondaryMenuItems[i][0]));
145 function expandAllSecondaryMenuItems() {
146 secondaryMenuItems.forEach(function (item) {
147 expandSecondaryMenuItem($(item[0]));
151 function expandSecondaryMenuItem($item) {
153 .removeClass("dropdown-item")
154 .addClass("nav-link")
155 .addClass(function () {
156 return $(this).hasClass("active") ? "text-secondary-emphasis" : "text-secondary";
158 $item.addClass("nav-item").insertBefore("#compact-secondary-nav");
159 toggleCompactSecondaryNav();
162 function collapseSecondaryMenuItem($item) {
164 .addClass("dropdown-item")
165 .removeClass("nav-link text-secondary text-secondary-emphasis");
166 $item.removeClass("nav-item").appendTo($collapsedSecondaryMenu);
167 toggleCompactSecondaryNav();
170 function toggleCompactSecondaryNav() {
171 $("#compact-secondary-nav").toggle(
172 $collapsedSecondaryMenu.find("li").length > 0
177 * Chrome 60 and later seem to fire the "ready" callback
178 * before the DOM is fully ready causing us to measure the
179 * wrong sizes for the header elements - use a 0ms timeout
180 * to defer the measurement slightly as a workaround.
182 setTimeout(function () {
183 $expandedSecondaryMenu.find("li:not(#compact-secondary-nav)").each(function () {
184 secondaryMenuItems.push([this, $(this).width()]);
186 moreItemWidth = $("#compact-secondary-nav").width();
190 $(window).resize(updateHeader);
191 $(document).on("turbo:render", updateHeader);
194 $("#menu-icon").on("click", function (e) {
196 $("header").toggleClass("closed");
199 $("nav.primary li a").on("click", function () {
200 $("header").toggleClass("closed");
204 .attr("title", OSM.i18n.t("javascripts.site.edit_disabled_tooltip"));
206 document.addEventListener("turbo:frame-load", function (event) {
207 if (event.target.id === "select_language_list") {
208 const $search = $("#language_search");
209 if ($search.length) {
210 $search.off("input");
211 $search.on("input", function () {
212 const query = $(this).val().toLowerCase();
213 $(".language-item").each(function () {
214 const text = $(this).text().toLowerCase();
215 $(this).toggle(text.indexOf(query) > -1);
226 $("#select_language_dialog").on("shown.bs.modal", function () {
227 $("#language_search")
231 const $frame = $("#select_language_list");
232 const originalSrc = new URL($frame.attr("src"), window.location.origin);
234 // Set `source` query param to current page path + query string
235 originalSrc.searchParams.set("source", window.location.pathname + window.location.search);
237 if ($frame.attr("src") !== originalSrc.toString()) {
238 $frame.attr("src", originalSrc.toString());