chore: search cleanup

This commit is contained in:
Cory Dransfeldt 2024-10-19 19:42:30 -07:00
parent 6833d054cc
commit 01ed2ac3b3
No known key found for this signature in database
4 changed files with 9 additions and 31 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "1.5.9", "version": "1.5.10",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "1.5.9", "version": "1.5.10",
"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": "1.5.9", "version": "1.5.10",
"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",
"engines": { "engines": {

View file

@ -107,8 +107,9 @@ window.addEventListener("load", () => {
"total_plays", "total_plays",
], ],
searchOptions: { searchOptions: {
fields: ["title", "tags"],
prefix: true, prefix: true,
fuzzy: 0.2, fuzzy: 0,
boost: { title: 2, tags: 1.5 }, boost: { title: 2, tags: 1.5 },
sort: (a, b) => b.score - a.score, sort: (a, b) => b.score - a.score,
}, },

View file

@ -46,24 +46,6 @@ WITH search_data AS (
UNION ALL UNION ALL
SELECT
'movie' AS type,
CASE
WHEN m.rating IS NOT NULL THEN CONCAT('🎥 ', m.title, ' (', m.rating, ')')
ELSE CONCAT('🎥 ', m.title)
END AS title,
CONCAT('https://coryd.dev', m.url) AS url,
m.description AS description,
m.tags,
NULL AS genre_name,
NULL AS genre_url,
NULL::integer AS total_plays,
m.last_watched AS content_date
FROM optimized_movies m
WHERE m.last_watched IS NOT NULL
UNION ALL
SELECT SELECT
'artist' AS type, 'artist' AS type,
CONCAT(COALESCE(ar.emoji, ar.genre_emoji, '🎧'), ' ', ar.name) AS title, CONCAT(COALESCE(ar.emoji, ar.genre_emoji, '🎧'), ' ', ar.name) AS title,
@ -107,14 +89,9 @@ WITH search_data AS (
s.last_watched_at AS content_date s.last_watched_at AS content_date
FROM optimized_shows s FROM optimized_shows s
WHERE s.last_watched_at IS NOT NULL WHERE s.last_watched_at IS NOT NULL
),
search_data_with_id AS (
SELECT
ROW_NUMBER() OVER (ORDER BY content_date DESC NULLS LAST, url) AS id,
search_data.*
FROM search_data
) )
SELECT SELECT
id, url, title, description, tags, genre_name, genre_url, type, total_plays ROW_NUMBER() OVER (ORDER BY url) AS id,
FROM search_data_with_id *
ORDER BY content_date DESC NULLS LAST, url; FROM search_data;