chore: remove utility classes + cleanup

This commit is contained in:
Cory Dransfeldt 2024-09-15 12:49:33 -07:00
parent 4302f61f8c
commit 8a8de24caa
No known key found for this signature in database
30 changed files with 247 additions and 214 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.8.7", "version": "24.9.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.8.7", "version": "24.9.0",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.5.0", "@cdransf/api-text": "^1.5.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.8.7", "version": "24.9.0",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -83,6 +83,13 @@ p {
} }
} }
.highlight-text {
color: var(--color-lightest);
background-color: var(--accent-color);
padding: var(--spacing-xs);
border-radius: var(--border-radius-slight);
}
blockquote { blockquote {
font-size: var(--font-size-lg); font-size: var(--font-size-lg);
color: var(--gray-dark); color: var(--gray-dark);
@ -98,7 +105,7 @@ code {
border-radius: var(--border-radius-slight); border-radius: var(--border-radius-slight);
} }
p:not(.flex-centered):not(.banner p) > svg { p:not(.banner p) > svg {
margin-bottom: var(--inline-margin-bottom); margin-bottom: var(--inline-margin-bottom);
} }
@ -289,6 +296,7 @@ h6 {
} }
.section-header { .section-header {
display: flex;
margin: var(--spacing-xl) 0 var(--spacing-lg); margin: var(--spacing-xl) 0 var(--spacing-lg);
line-height: var(--line-height-sm); line-height: var(--line-height-sm);
@ -470,22 +478,32 @@ article {
} }
footer { footer {
& p:first-of-type { & .updated {
margin: var(--spacing-3xl) 0 var(--spacing-lg); text-align: center;
font-size: var(--font-size-sm); font-size: var(--font-size-sm);
margin: var(--spacing-3xl) 0 var(--spacing-lg);
} }
& nav { & nav {
&.social,
&.sub-pages {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
&.social { &.social {
gap: var(--spacing-md); gap: var(--spacing-md);
margin-bottom: var(--spacing-lg); margin-bottom: var(--spacing-lg);
width: 100%; width: 100%;
& svg { & .icon > span,
margin-top: 0; & .active > span {
display: none;
} }
& a { & .active {
display: flex; display: flex;
} }
} }
@ -510,7 +528,6 @@ footer {
article { article {
& h3 { & h3 {
margin: 0; margin: 0;
display: inline-block;
} }
& time { & time {
@ -540,29 +557,3 @@ ul, ol {
width: 100%; width: 100%;
display: block; display: block;
} }
/* utilities */
.highlight-text {
color: var(--color-lightest);
background-color: var(--accent-color);
padding: var(--spacing-xs);
border-radius: var(--border-radius-slight);
}
.hidden {
display: none !important;
}
.text-centered {
text-align: center !important;
}
.flex-centered {
display: flex;
flex-direction: row;
align-items: center;
}
.justify-centered {
justify-content: center;
}

View file

@ -2,7 +2,6 @@
display: grid; display: grid;
gap: var(--spacing-md); gap: var(--spacing-md);
grid-template-columns: repeat(3, 1fr); grid-template-columns: repeat(3, 1fr);
margin-top: var(--spacing-2xl);
@media screen and (min-width: 768px) { @media screen and (min-width: 768px) {
grid-template-columns: repeat(4, 1fr); grid-template-columns: repeat(4, 1fr);

View file

@ -15,9 +15,6 @@ button,
border-radius: var(--border-radius-full); border-radius: var(--border-radius-full);
padding: var(--spacing-xs) var(--spacing-md); padding: var(--spacing-xs) var(--spacing-md);
cursor: pointer; cursor: pointer;
display: inline-flex;
flex-direction: row;
justify-content: center;
font-size: var(--font-size-base); font-size: var(--font-size-base);
font-weight: var(--font-weight-bold); font-weight: var(--font-weight-bold);
line-height: var(--line-height-base); line-height: var(--line-height-base);

View file

@ -7,9 +7,7 @@ input[type="text"],
input[type="email"], input[type="email"],
input[type="search"], input[type="search"],
textarea { textarea {
font-family: var(--font-mono); font: var(--font-weight-base) var(--font-size-base) var(--font-mono);
font-size: var(--font-size-base);
font-weight: var(--font-weight-base);
line-height: var(--line-height-base); line-height: var(--line-height-base);
color: var(--text-color); color: var(--text-color);
background-color: var(--background-color); background-color: var(--background-color);
@ -47,7 +45,7 @@ select:focus-within {
select { select {
color: var(--text-color); color: var(--text-color);
border: 1px solid var(--text-color); border: var(--border-gray);
border-radius: var(--border-radius-slight); border-radius: var(--border-radius-slight);
background-color: var(--background-color); background-color: var(--background-color);
padding: var(--spacing-xs) var(--spacing-sm); padding: var(--spacing-xs) var(--spacing-sm);
@ -55,12 +53,17 @@ select {
.search__form { .search__form {
margin-top: 0; margin-top: 0;
& .search__form--input::-webkit-search-cancel-button {
cursor: pointer;
}
} }
.search__results { .search__results {
margin: 0 0 var(--spacing-base); margin: 0 0 var(--spacing-base);
padding: 0; padding: 0;
list-style: none; list-style: none;
display: none;
& li { & li {
margin: var(--spacing-sm) 0; margin: var(--spacing-sm) 0;

View file

@ -66,9 +66,7 @@
height: 100%; height: 100%;
border: var(--border-default); border: var(--border-default);
border-radius: var(--border-radius-slight); border-radius: var(--border-radius-slight);
transition-property: border-color; transition: border-color var(--transition-duration-default) var(--transition-ease-in-out);
transition-timing-function: var(--transition-ease-in-out);
transition-duration: var(--transition-duration-default);
} }
} }
@ -104,8 +102,8 @@
display: -webkit-box; display: -webkit-box;
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
-webkit-line-clamp: 6; -webkit-line-clamp: 6;
overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
overflow: hidden;
} }
} }
} }

View file

@ -1,4 +1,9 @@
.menu-primary { menu {
display: flex;
flex-direction: row;
align-items: center;
& .menu-primary {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
list-style: none; list-style: none;
@ -22,7 +27,7 @@
} }
} }
.menu-button-container { & .menu-button-container {
display: none; display: none;
outline: none; outline: none;
margin-left: var(--spacing-md); margin-left: var(--spacing-md);
@ -45,7 +50,7 @@
} }
} }
#menu-toggle { & #menu-toggle {
display: none; display: none;
&:checked + .menu-button-container { &:checked + .menu-button-container {
@ -139,3 +144,4 @@
height: var(--sizing-svg-base); height: var(--sizing-svg-base);
} }
} }
}

View file

@ -2,7 +2,7 @@
width: 100%; width: 100%;
height: 100%; height: 100%;
inset: 0; inset: 0;
background: #000000b3; background: var(--gray-overlay);
position: fixed; position: fixed;
z-index: 3; z-index: 3;

View file

@ -1,4 +1,7 @@
.pagination { .pagination {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between; justify-content: space-between;
& button { & button {
@ -11,6 +14,11 @@
display: flex; display: flex;
} }
& p {
text-align: center;
margin: 0;
}
& span.disabled svg[data-tablericon-name^="arrow-"] { & span.disabled svg[data-tablericon-name^="arrow-"] {
cursor: not-allowed; cursor: not-allowed;
stroke: color-mix(in srgb, var(--text-color), transparent 50%); stroke: color-mix(in srgb, var(--text-color), transparent 50%);

View file

@ -2,7 +2,7 @@
display: flex; display: flex;
height: var(--sizing-lg); height: var(--sizing-lg);
width: 100%; width: 100%;
background-color: #d9dee499; background-color: var(--gray-background-transparent);
border-radius: var(--border-radius-full); border-radius: var(--border-radius-full);
& .progress-bar { & .progress-bar {

View file

@ -1,3 +1,5 @@
#tracks-recent,
#tracks-window,
#tracks-recent ~ .tracks-recent, #tracks-recent ~ .tracks-recent,
#tracks-window ~ .tracks-window { #tracks-window ~ .tracks-window {
display: none; display: none;
@ -8,9 +10,9 @@
display: block; display: block;
} }
input[id="tracks-recent"] ~ [for="tracks-recent"], input[id="tracks-recent"] ~ .tracks-recent,
input[id="tracks-window"] ~ [for="tracks-window"] { input[id="tracks-window"] ~ .tracks-window {
margin-bottom: var(--spacing-base); margin-top: var(--spacing-base);
} }
input[id="tracks-recent"] ~ [for="tracks-recent"]:has(+ [for="tracks-window"]) { input[id="tracks-recent"] ~ [for="tracks-recent"]:has(+ [for="tracks-window"]) {

View file

@ -1,5 +1,5 @@
@font-face { @font-face {
font-family: MonoLisa; font-family: MonoLisa;
src: url('/assets/fonts/MonoLisa.min.woff2') format('woff2'); src: url('/assets/fonts/MonoLisa.min.woff2') format('woff2');
font-display: optional font-display: optional;
} }

View file

@ -30,6 +30,10 @@
--gray-lighter: var(--gray-100); --gray-lighter: var(--gray-100);
--gray-dark: var(--gray-950); --gray-dark: var(--gray-950);
/* semi-transparent overlay color */
--gray-overlay: #000000b3;
--gray-background-transparent: #d9dee499;
/* base theme */ /* base theme */
--color-lightest: var(--gray-50); --color-lightest: var(--gray-50);
--color-darkest: var(--gray-1000); --color-darkest: var(--gray-1000);

View file

@ -7,9 +7,12 @@
} }
.avatar-wrapper { .avatar-wrapper {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
margin-bottom: var(--spacing-sm); margin-bottom: var(--spacing-sm);
width: 100%; width: 100%;
justify-content: center;
& .interior { & .interior {
display: flex; display: flex;
@ -21,3 +24,7 @@
} }
} }
} }
.about-title {
text-align: center;
}

View file

@ -6,6 +6,11 @@
flex-direction: row; flex-direction: row;
} }
& label.hp,
& label > span {
display: none;
}
& textarea { & textarea {
height: calc(var(--sizing-3xl) * 5); height: calc(var(--sizing-3xl) * 5);
resize: none; resize: none;

View file

@ -126,6 +126,8 @@ a:active > .watching.hero::after {
} }
.subheader { .subheader {
display: flex;
align-items: center;
gap: var(--spacing-xs); gap: var(--spacing-xs);
} }

View file

@ -1,7 +1,15 @@
.webring-wrapper { .webring-wrapper {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
margin: var(--margin-vertical-base-horizontal-zero); margin: var(--margin-vertical-base-horizontal-zero);
& .webring-navigation { & .webring-navigation {
display: flex;
align-items: center;
justify-content: center;
gap: var(--spacing-sm); gap: var(--spacing-sm);
& a { & a {

View file

@ -1,4 +1,4 @@
<div class="avatar-wrapper flex-centered"> <div class="avatar-wrapper">
<div class="interior"> <div class="interior">
<img <img
srcset=" srcset="

View file

@ -1,13 +1,13 @@
<footer{% unless updated %} style="margin-top:var(--spacing-3xl)"{% endunless %}> <footer{% unless updated %} style="margin-top:var(--spacing-3xl)"{% endunless %}>
{%- if updated -%} {%- if updated -%}
<p class="text-centered"><em>This page was last updated on {{ updated | strip }}.</em></p> <p class="updated"><em>This page was last updated on {{ updated | strip }}.</em></p>
{%- endif -%} {%- endif -%}
<nav aria-label="Social icons" class="social flex-centered justify-centered text-centered"> <nav aria-label="Social icons" class="social">
{%- for link in nav.footer_icons -%} {%- for link in nav.footer_icons -%}
{% render "partials/nav/linked-icon.liquid", title:link.title, url:link.permalink, icon:link.icon %} {% render "partials/nav/link.liquid", page:page, title:link.title, url:link.permalink, icon:link.icon %}
{%- endfor -%} {%- endfor -%}
</nav> </nav>
<nav aria-label="Secondary site navigation" class="sub-pages flex-centered justify-centered text-centered"> <nav aria-label="Secondary site navigation" class="sub-pages">
{%- for link in nav.footer_text -%} {%- for link in nav.footer_text -%}
{% render "partials/nav/link.liquid", page:page, title:link.title, url:link.permalink, icon:link.icon %} {% render "partials/nav/link.liquid", page:page, title:link.title, url:link.permalink, icon:link.icon %}
{% if not forloop.last %}<span>/</span>{% endif %} {% if not forloop.last %}<span>/</span>{% endif %}

View file

@ -1,7 +1,7 @@
{%- assign posts = postData | filterByPostType: postType %} {%- assign posts = postData | filterByPostType: postType %}
<div class="article-widget-wrapper"> <div class="article-widget-wrapper">
<div class="section-header-wrapper"> <div class="section-header-wrapper">
<h2 class="section-header posts flex-centered"> <h2 class="section-header posts">
{% tablericon icon title %} {% tablericon icon title %}
{{ title }} {{ title }}
</h2> </h2>
@ -14,8 +14,6 @@
<a href="{{ post.slug }}"> <a href="{{ post.slug }}">
<h3>{{ post.title }}</h3> <h3>{{ post.title }}</h3>
</a> </a>
<span class="p-author h-card hidden">{{ globals.site_name }}</span>
<div class="p-summary hidden">{{ post.data.post_excerpt }}</div>
{{ post.description | normalize_whitespace | markdown | truncatewords: 50 }} {{ post.description | normalize_whitespace | markdown | truncatewords: 50 }}
</article> </article>
{%- endfor -%} {%- endfor -%}

View file

@ -8,7 +8,7 @@
<div class="meta-text"> <div class="meta-text">
{%- if item.type == 'movie' -%} {%- if item.type == 'movie' -%}
<div class="header">{{ item.title }}</div> <div class="header">{{ item.title }}</div>
<div class="subheader flex-centered"> <div class="subheader">
{%- if item.rating -%} {%- if item.rating -%}
<span class="rating"> {{ item.rating }}</span> <span class="rating"> {{ item.rating }}</span>
{%- endif -%} {%- endif -%}
@ -16,7 +16,7 @@
</div> </div>
{%- else -%} {%- else -%}
<div class="header">{{ item.name }}</div> <div class="header">{{ item.name }}</div>
<div class="subheader flex-centered">({{ item.year }})</div> <div class="subheader">({{ item.year }})</div>
{%- endif -%} {%- endif -%}
</div> </div>
{%- assign loadingStrategy = loading | default: 'lazy' -%} {%- assign loadingStrategy = loading | default: 'lazy' -%}

View file

@ -1,4 +1,4 @@
<div class="flex-centered"> <menu>
<input id="menu-toggle" type="checkbox" aria-hidden="true" /> <input id="menu-toggle" type="checkbox" aria-hidden="true" />
<label class="menu-button-container" for="menu-toggle" tabindex="0"> <label class="menu-button-container" for="menu-toggle" tabindex="0">
<div class="menu-closed" aria-hidden="true">{% tablericon "menu-2" "Menu closed" %}</div> <div class="menu-closed" aria-hidden="true">{% tablericon "menu-2" "Menu closed" %}</div>
@ -10,4 +10,4 @@
{%- endfor -%} {%- endfor -%}
</ul> </ul>
{% render "partials/nav/theme-toggle.liquid" %} {% render "partials/nav/theme-toggle.liquid" %}
</div> </menu>

View file

@ -1,5 +1,5 @@
<script type="module" src="/assets/scripts/components/select-pagination.js?v={% appVersion %}"></script> <script type="module" src="/assets/scripts/components/select-pagination.js?v={% appVersion %}"></script>
<nav aria-label="Pagination" class="pagination flex-centered"> <nav aria-label="Pagination" class="pagination">
{%- if pagination.href.previous -%} {%- if pagination.href.previous -%}
<a href="{{ pagination.href.previous }}" aria-label="Previous page"> <a href="{{ pagination.href.previous }}" aria-label="Previous page">
{% tablericon "arrow-left" "Previous" %} {% tablericon "arrow-left" "Previous" %}
@ -19,9 +19,9 @@
{%- endfor -%} {%- endfor -%}
</select> </select>
<noscript> <noscript>
<div class="text-centered"> <p>
<span aria-current="page">{{ pagination.pageNumber | plus: 1 }}</span> of {{ pagination.links.size }} <span aria-current="page">{{ pagination.pageNumber | plus: 1 }}</span> of {{ pagination.links.size }}
</div> </p>
</noscript> </noscript>
</select-pagination> </select-pagination>
{%- if pagination.href.next -%} {%- if pagination.href.next -%}

View file

@ -1,8 +1,8 @@
<div class="webring-wrapper"> <div class="webring-wrapper">
<a href="https://cs.sjoy.lol"> <h3>
<h3 class="text-centered">CSS JOY Webring</h3> <a href="https://cs.sjoy.lol">CSS JOY Webring</a>
</a> </h3>
<div class="webring-navigation flex-centered justify-centered"> <div class="webring-navigation">
<a href="https://webri.ng/webring/cssjoy/previous?via=https://coryd.dev/webrings"> <a href="https://webri.ng/webring/cssjoy/previous?via=https://coryd.dev/webrings">
{% tablericon "arrow-left" "Previous site" %} {% tablericon "arrow-left" "Previous site" %}
</a> </a>

View file

@ -1,5 +1,4 @@
<div class="webring-wrapper"> <div class="webring-wrapper">
<div class="flex-centered justify-centered">
<img <img
srcset=" srcset="
https://cdn.coryd.dev/{{ logo }}?class=w200&type=webp 200w, https://cdn.coryd.dev/{{ logo }}?class=w200&type=webp 200w,
@ -18,11 +17,10 @@
width="200" width="200"
height="169" height="169"
/> />
</div> <h3>The Claw Webring</h3>
<h3 class="text-centered">The Claw Webring</h3> <p>
<div class="flex-centered justify-centered">
<strong> <strong>
<a class="no-underline" href="https://github.com/whitep4nth3r/the-claw-webring">Join!</a> <a class="no-underline" href="https://github.com/whitep4nth3r/the-claw-webring">Join!</a>
</strong> </strong>
</div> </p>
</div> </div>

View file

@ -26,7 +26,7 @@ schema: music-index
</a> </a>
</h3> </h3>
{% render "partials/media/grid.liquid", data:music.week.albums, shape: "square", count: 8 %} {% render "partials/media/grid.liquid", data:music.week.albums, shape: "square", count: 8 %}
<div class="section-header-wrapper flex-centered"> <div class="section-header-wrapper">
<h3 id="tracks" class="section-header"> <h3 id="tracks" class="section-header">
<a class="icon-link" href="/music/tracks/this-week"> <a class="icon-link" href="/music/tracks/this-week">
{% tablericon "playlist" "Tracks" %} {% tablericon "playlist" "Tracks" %}
@ -35,8 +35,8 @@ schema: music-index
</h3> </h3>
</div> </div>
<div class="track-display"> <div class="track-display">
<input id="tracks-recent" name="track-options" class="hidden" type="radio" aria-hidden="true" checked /> <input id="tracks-recent" name="track-options" type="radio" aria-hidden="true" checked />
<input id="tracks-window" name="track-options" class="hidden" type="radio" aria-hidden="true" /> <input id="tracks-window" name="track-options" type="radio" aria-hidden="true" />
<label for="tracks-recent" class="button" data-toggle="tracks-recent">Recent</label> <label for="tracks-recent" class="button" data-toggle="tracks-recent">Recent</label>
<label for="tracks-window" class="button" data-toggle="tracks-window">This week</label> <label for="tracks-window" class="button" data-toggle="tracks-window">This week</label>
<div class="tracks-recent"> <div class="tracks-recent">
@ -47,7 +47,7 @@ schema: music-index
</div> </div>
</div> </div>
{% if albumReleases.size > 0 %} {% if albumReleases.size > 0 %}
<h3 id="album-releases" class="section-header flex-centered"> <h3 id="album-releases" class="section-header">
{% tablericon "calendar-time" "Anticipated albums" %} {% tablericon "calendar-time" "Anticipated albums" %}
Anticipated albums Anticipated albums
</h3> </h3>

View file

@ -6,7 +6,7 @@ permalink: /about.html
{%- assign artist = music.week.artists | first -%} {%- assign artist = music.week.artists | first -%}
{%- assign book = books.all | bookStatus: 'started' | reverse | first -%} {%- assign book = books.all | bookStatus: 'started' | reverse | first -%}
{%- assign show = tv.recentlyWatched | first -%} {%- assign show = tv.recentlyWatched | first -%}
<div class="avatar-wrapper flex-centered"> <div class="avatar-wrapper">
<div class="interior"> <div class="interior">
{%- capture about_alt -%}{{ globals.site_name }} - image by @joel@fosstodon.org{%- endcapture -%} {%- capture about_alt -%}{{ globals.site_name }} - image by @joel@fosstodon.org{%- endcapture -%}
<img <img
@ -25,7 +25,7 @@ permalink: /about.html
/> />
</div> </div>
</div> </div>
<h2 class="text-centered">Hi, I'm Cory</h2> <h2 class="about-title">Hi, I'm Cory</h2>
<strong class="highlight-text">I'm a software developer based in Camarillo, California</strong>. I enjoy hanging out with my beautiful family and 3 rescue dogs, technology, automation, [music](https://coryd.dev/music), [writing](https://coryd.dev/posts), [reading](https://coryd.dev/books), [tv](https://coryd.dev/watching#tv) and [movies](https://coryd.dev/watching#movies). Lately I've been listening to a lot of <strong class="highlight-text">{{ artist.title }}</strong>, reading <strong class="highlight-text">{{ book.title }}</strong> and watching <strong class="highlight-text">{{ show.name }}</strong>. <strong class="highlight-text">I'm a software developer based in Camarillo, California</strong>. I enjoy hanging out with my beautiful family and 3 rescue dogs, technology, automation, [music](https://coryd.dev/music), [writing](https://coryd.dev/posts), [reading](https://coryd.dev/books), [tv](https://coryd.dev/watching#tv) and [movies](https://coryd.dev/watching#movies). Lately I've been listening to a lot of <strong class="highlight-text">{{ artist.title }}</strong>, reading <strong class="highlight-text">{{ book.title }}</strong> and watching <strong class="highlight-text">{{ show.name }}</strong>.

View file

@ -16,20 +16,18 @@ description: How to contact me.
</ul> </ul>
</div> </div>
<form data-form="contact" class="column" method="POST" action="https://coryd.dev/api/contact" name="contact"> <form data-form="contact" class="column" method="POST" action="https://coryd.dev/api/contact" name="contact">
<label class="hidden"> <label class="hp">
Don't fill this out if you're human: <input type="text" name="hp_name"> Don't fill this out if you're human: <input type="text" name="hp_name">
</label> </label>
<label> <label>
<span class="hidden">Name</span> <span>Name</span>
<input type="text" name="name" placeholder="Name" required /> <input type="text" name="name" placeholder="Name" required />
</label> </label>
<label> <label>
<span class="hidden">Email</span> <span>Email</span>
<input type="email" name="email" placeholder="Email" required /> <input type="email" name="email" placeholder="Email" required />
</label> </label>
<textarea name="message" placeholder="Message" required></textarea> <textarea name="message" placeholder="Message" required></textarea>
<div class="flex-centered justify-centered">
<button type="submit">Send message</button> <button type="submit">Send message</button>
</div>
</form> </form>
</div> </div>

View file

@ -31,9 +31,13 @@ permalink: /search.html
$input.addEventListener('input', () => { $input.addEventListener('input', () => {
const query = $input.value const query = $input.value
const results = (query.length > 1) ? getSearchResults(query) : [] const results = (query.length > 1) ? getSearchResults(query) : []
if (query === '') renderSearchResults([]) if (query.length === 0) {
// Clear the results when input is empty
renderSearchResults([])
} else {
if (query.length > 1 && window?.umami) umami.trackEvent('Search', { query: query }) if (query.length > 1 && window?.umami) umami.trackEvent('Search', { query: query })
renderSearchResults(results) renderSearchResults(results, query)
}
}) })
$input.addEventListener('keydown', (event) => { $input.addEventListener('keydown', (event) => {
@ -41,15 +45,20 @@ permalink: /search.html
}) })
const getSearchResults = (query) => miniSearch.search(query, { prefix: true, fuzzy: 0.2, boost: { title: 2 } }).map(({ id }) => resultsById[id]) const getSearchResults = (query) => miniSearch.search(query, { prefix: true, fuzzy: 0.2, boost: { title: 2 } }).map(({ id }) => resultsById[id])
const renderSearchResults = (results) => {
const renderSearchResults = (results, query = '') => {
if (results.length > 0) {
$results.innerHTML = results.map(({ title, url }) => { $results.innerHTML = results.map(({ title, url }) => {
return `<li class="search__results--result"><a href="${url}">${title}</a></li>` return `<li class="search__results--result"><a href="${url}">${title}</a></li>`
}).join('\n') }).join('\n')
$results.style.display = 'block'
if (results.length > 0) {
$results.classList.remove('hidden')
} else { } else {
$results.classList.add('hidden') if (query.trim() !== '') {
$results.innerHTML = `<li class="search__results--no-results">No results found for "${query}"</li>`
} else {
$results.innerHTML = ''
}
$results.style.display = 'block'
} }
} }
})() })()
@ -64,4 +73,4 @@ permalink: /search.html
<input class="search__form--input" placeholder="Search" type="search" name="q" autocomplete="off" autofocus> <input class="search__form--input" placeholder="Search" type="search" name="q" autocomplete="off" autofocus>
<input class="search__form--fallback" type="hidden" placeholder="Type away..." name="sites" value="coryd.dev"> <input class="search__form--fallback" type="hidden" placeholder="Type away..." name="sites" value="coryd.dev">
</form> </form>
<ul class="search__results hidden"></ul> <ul class="search__results"></ul>