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 expandAllSecondaryMenuItems();
118 if (secondaryMenuItems.length === 0) {
119 $expandedSecondaryMenu.find("li:not(#compact-secondary-nav)").each(function () {
120 secondaryMenuItems.push([this, $(this).width()]);
122 moreItemWidth = $("#compact-secondary-nav").width();
124 const availableWidth = $expandedSecondaryMenu.width();
125 secondaryMenuItems.forEach(function (item) {
128 let runningWidth = 0,
131 for (; i < secondaryMenuItems.length; i++) {
132 runningWidth += secondaryMenuItems[i][1];
133 if (i < secondaryMenuItems.length - 1) {
134 requiredWidth = runningWidth + moreItemWidth;
136 requiredWidth = runningWidth;
138 if (requiredWidth > availableWidth) {
141 expandSecondaryMenuItem($(secondaryMenuItems[i][0]));
143 for (; i < secondaryMenuItems.length; i++) {
144 collapseSecondaryMenuItem($(secondaryMenuItems[i][0]));
149 function expandAllSecondaryMenuItems() {
150 secondaryMenuItems.forEach(function (item) {
151 expandSecondaryMenuItem($(item[0]));
155 function expandSecondaryMenuItem($item) {
157 .removeClass("dropdown-item")
158 .addClass("nav-link")
159 .addClass(function () {
160 return $(this).hasClass("active") ? "text-secondary-emphasis" : "text-secondary";
162 $item.addClass("nav-item").insertBefore("#compact-secondary-nav");
163 toggleCompactSecondaryNav();
166 function collapseSecondaryMenuItem($item) {
168 .addClass("dropdown-item")
169 .removeClass("nav-link text-secondary text-secondary-emphasis");
170 $item.removeClass("nav-item").appendTo($collapsedSecondaryMenu);
171 toggleCompactSecondaryNav();
174 function toggleCompactSecondaryNav() {
175 $("#compact-secondary-nav").toggle(
176 $collapsedSecondaryMenu.find("li").length > 0
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.
186 setTimeout(function () {
189 $(window).resize(updateHeader);
190 $(document).on("turbo:render", updateHeader);
193 $("#menu-icon").on("click", function (e) {
195 $("header").toggleClass("closed");
198 $("nav.primary li a").on("click", function () {
199 $("header").toggleClass("closed");
203 .attr("title", OSM.i18n.t("javascripts.site.edit_disabled_tooltip"));
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);
225 $("#select_language_dialog").on("shown.bs.modal", function () {
226 $("#language_search")
230 const $frame = $("#select_language_list");
231 const originalSrc = new URL($frame.attr("src"), window.location.origin);
233 // Set `source` query param to current page path + query string
234 originalSrc.searchParams.set("source", window.location.pathname + window.location.search);
236 if ($frame.attr("src") !== originalSrc.toString()) {
237 $frame.attr("src", originalSrc.toString());