]> git.openstreetmap.org Git - rails.git/commitdiff
Update secondary nav active item highlight from js router
authorAnton Khorev <tony29@yandex.ru>
Wed, 29 May 2024 04:46:33 +0000 (07:46 +0300)
committerAnton Khorev <tony29@yandex.ru>
Mon, 2 Sep 2024 23:59:18 +0000 (02:59 +0300)
app/assets/javascripts/router.js

index d890f38a480a384d6edd5570e384f71916cc30bc..c4e52417004c5c50871f23fe28edf967596c68b7 100644 (file)
@@ -101,6 +101,16 @@ OSM.Router = function (map, rts) {
 
   var router = {};
 
+  function updateSecondaryNav() {
+    $("header nav.secondary > ul > li > a").each(function () {
+      var active = $(this).attr("href") === window.location.pathname;
+
+      $(this)
+        .toggleClass("text-secondary", !active)
+        .toggleClass("text-secondary-emphasis", active);
+    });
+  }
+
   $(window).on("popstate", function (e) {
     if (!e.originalEvent.state) return; // Is it a real popstate event or just a hash change?
     var path = window.location.pathname + window.location.search,
@@ -110,6 +120,7 @@ OSM.Router = function (map, rts) {
     currentPath = path;
     currentRoute = route;
     currentRoute.run("popstate", currentPath);
+    updateSecondaryNav();
     map.setState(e.originalEvent.state, { animate: false });
   });
 
@@ -124,6 +135,7 @@ OSM.Router = function (map, rts) {
     currentPath = path;
     currentRoute = route;
     currentRoute.run("pushstate", currentPath);
+    updateSecondaryNav();
     return true;
   };