chore: improve nav active state checking
This commit is contained in:
parent
3cff5d47e6
commit
f39f5ee2ff
3 changed files with 9 additions and 3 deletions
|
@ -37,6 +37,12 @@ export default {
|
||||||
},
|
},
|
||||||
replaceQuotes: (string) => string.replace(/"/g, "'"),
|
replaceQuotes: (string) => string.replace(/"/g, "'"),
|
||||||
|
|
||||||
|
// navigation
|
||||||
|
isLinkActive: (category, page) => {
|
||||||
|
const normalizedPage = page.includes('.html') ? page.replace('.html', '/') : page
|
||||||
|
return !!normalizedPage && normalizedPage.includes(category) && !/\d+/.test(normalizedPage);
|
||||||
|
},
|
||||||
|
|
||||||
// analytics
|
// analytics
|
||||||
getPopularPosts: (posts, analytics) => {
|
getPopularPosts: (posts, analytics) => {
|
||||||
return posts
|
return posts
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "8.1.4",
|
"version": "8.2.4",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{%- capture pageUrl %}/{{ link | downcase }}/{% endcapture -%}
|
{%- capture categoryUrl %}/{{ link | downcase }}/{% endcapture -%}
|
||||||
{% if pageUrl contains page.fileSlug and page.fileSlug %}
|
{% if categoryUrl | isLinkActive: page.url %}
|
||||||
<span class="active {{ class }}" aria-current="page">
|
<span class="active {{ class }}" aria-current="page">
|
||||||
{% if icon %}
|
{% if icon %}
|
||||||
{% tablericon icon link %}
|
{% tablericon icon link %}
|
||||||
|
|
Reference in a new issue