From 643aa242ffabe01d3d0901721e44e64a9b28b440 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Thu, 28 Nov 2024 13:26:55 -0800 Subject: [PATCH] chore: modularize search; deduplicate helpers --- package-lock.json | 4 +- package.json | 2 +- src/components/search/SearchForm.astro | 29 +++ src/components/search/SearchIntro.astro | 21 ++ src/components/search/SearchLogic.astro | 164 +++++++++++++++ src/layouts/Layout.astro | 2 +- src/pages/search.astro | 256 +----------------------- 7 files changed, 224 insertions(+), 254 deletions(-) create mode 100644 src/components/search/SearchForm.astro create mode 100644 src/components/search/SearchIntro.astro create mode 100644 src/components/search/SearchLogic.astro diff --git a/package-lock.json b/package-lock.json index d13cbd8..bec50df 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "1.4.0", + "version": "1.5.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "1.4.0", + "version": "1.5.0", "dependencies": { "@astrojs/check": "0.9.4", "@astrojs/cloudflare": "^11.2.0", diff --git a/package.json b/package.json index 79e2907..1c58bd4 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "coryd.dev", "type": "module", - "version": "1.4.0", + "version": "1.5.0", "scripts": { "dev": "astro dev", "start": "astro dev", diff --git a/src/components/search/SearchForm.astro b/src/components/search/SearchForm.astro new file mode 100644 index 0000000..665f9fc --- /dev/null +++ b/src/components/search/SearchForm.astro @@ -0,0 +1,29 @@ +
+ +
+ Filter by type +
+ {["post", "link", "artist", "genre", "book", "movie", "show"].map(type => ( + + ))} +
+
+ +
+ + diff --git a/src/components/search/SearchIntro.astro b/src/components/search/SearchIntro.astro new file mode 100644 index 0000000..9d58258 --- /dev/null +++ b/src/components/search/SearchIntro.astro @@ -0,0 +1,21 @@ +

Search

+

+ You can find posts, links, artists, genres, movies, shows and books via the field below (though it only surfaces + movies and shows I've watched and books I've written something about). +

+ diff --git a/src/components/search/SearchLogic.astro b/src/components/search/SearchLogic.astro new file mode 100644 index 0000000..9c2997b --- /dev/null +++ b/src/components/search/SearchLogic.astro @@ -0,0 +1,164 @@ + diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 3e62195..f6ac929 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -109,7 +109,7 @@ const pageDescription = md(description); diff --git a/src/pages/search.astro b/src/pages/search.astro index dd8fd39..0030e3e 100644 --- a/src/pages/search.astro +++ b/src/pages/search.astro @@ -1,5 +1,8 @@ --- import Layout from "@layouts/Layout.astro"; +import SearchIntro from "@components/search/SearchIntro.astro" +import SearchForm from "@components/search/SearchForm.astro" +import SearchLogic from "@components/search/SearchLogic.astro" import AddonLinks from "@components/blocks/links/AddonLinks.astro"; import { getPopularPosts } from "@utils/getPopularPosts.js"; import { fetchAllPosts } from "@data/posts.js"; @@ -24,255 +27,8 @@ const description = description={description} currentUrl={Astro.url.pathname} > -

Search

-

- You can find posts, links, artists, genres, movies, shows and books via the field below (though it only surfaces - movies and shows I've watched and books I've written something about). -

- -
- -
- Filter by type -
- - - - - - - -
-
- -
- - + + - +