From ab2d732ec5e6e224a581f15c19b6d6e6f7be9609 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 26 Oct 2024 17:38:51 -0700 Subject: [PATCH] fix: restore rating on movie pages + syndication feed --- queries/views/feeds/syndication.psql | 15 +++++++++++---- workers/dynamic-pages/utils/generators.js | 1 + 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/queries/views/feeds/syndication.psql b/queries/views/feeds/syndication.psql index 45baeed1..e8561e55 100644 --- a/queries/views/feeds/syndication.psql +++ b/queries/views/feeds/syndication.psql @@ -37,7 +37,11 @@ WITH syndication_data AS ( CONCAT('https://coryd.dev', b.url) AS url, b.tags, CASE WHEN LOWER(b.status) = 'finished' THEN - json_build_object('title', CONCAT('📖 ', b.title, ' ',( + json_build_object('title', CONCAT('📖 ', b.title, CASE WHEN b.rating IS NOT NULL THEN + ' (' || b.rating || ')' + ELSE + '' + END, ' ',( SELECT array_to_string(array_agg('#' || initcap(replace(t.name, ' ', ''))), ' ') FROM unnest(b.tags) AS t(name))), 'description', b.description, 'url', CONCAT('https://coryd.dev', b.url), 'date', b.date_finished) @@ -54,7 +58,11 @@ WITH syndication_data AS ( CONCAT('https://coryd.dev', m.url) AS url, m.tags, CASE WHEN m.last_watched IS NOT NULL THEN - json_build_object('title', CONCAT('🎥 ', m.title, ' ',( + json_build_object('title', CONCAT('🎥 ', m.title, CASE WHEN m.rating IS NOT NULL THEN + ' (' || m.rating || ')' + ELSE + '' + END, ' ',( SELECT array_to_string(array_agg('#' || initcap(replace(t.name, ' ', ''))), ' ') FROM unnest(m.tags) AS t(name))), 'description', m.description, 'url', CONCAT('https://coryd.dev', m.url), 'date', m.last_watched) @@ -75,5 +83,4 @@ FROM ( syndication IS NOT NULL ORDER BY content_date DESC - LIMIT 20) AS limited_data; - + LIMIT 20) AS limited_data; \ No newline at end of file diff --git a/workers/dynamic-pages/utils/generators.js b/workers/dynamic-pages/utils/generators.js index 7ef6a29d..87e7d251 100644 --- a/workers/dynamic-pages/utils/generators.js +++ b/workers/dynamic-pages/utils/generators.js @@ -435,6 +435,7 @@ export const generateWatchingHTML = (media, globals, type) => {

${media["title"]} (${ media["year"] })

+ ${media["rating"] ? `

${media["rating"]}

` : ""} ${ media["favorite"] ? `

${ICON_MAP["heart"]} This is one of my favorite ${label}s!

`