diff --git a/src/components/nav/NavLink.astro b/src/components/nav/NavLink.astro index fa399a4..e12ac8d 100644 --- a/src/components/nav/NavLink.astro +++ b/src/components/nav/NavLink.astro @@ -1,10 +1,10 @@ --- import IconMapper from "@components/IconMapper.astro"; -import { removeTrailingSlash } from "@utils/helpers/general.js"; +import { normalizePath } from "@utils/helpers/general.js"; const { url, title, icon } = Astro.props; const isHttp = url?.startsWith("http"); -const isActive = Astro.url.pathname === removeTrailingSlash(url); +const isActive = normalizePath(Astro.url.pathname) === normalizePath(url); --- { diff --git a/src/utils/helpers/general.js b/src/utils/helpers/general.js index d160bb3..5e9bd4c 100644 --- a/src/utils/helpers/general.js +++ b/src/utils/helpers/general.js @@ -36,7 +36,7 @@ export const parseCountryField = (countryField) => { .reduce( (countries, delimiter) => countries.flatMap((country) => country.split(delimiter)), - [countryField] + [countryField], ) .map(getCountryName) .join(", "); @@ -110,7 +110,16 @@ export const md = (string) => markdown.render(string); // urls export const encodeAmp = (url) => url.replace(/&/g, "&"); -export const removeTrailingSlash = (url) => url.replace(/\/$/, ""); + +export const removeTrailingSlash = (url) => { + if (!url) return ""; + return url.replace(/\/+$/, ""); +}; + +export const normalizePath = (path) => { + if (!path) return "/"; + return removeTrailingSlash(path).toLowerCase(); +}; export const isExcludedPath = (path, exclusions) => exclusions.some((exclusion) => path.includes(exclusion));