fix: restore rating on movie pages + syndication feed

This commit is contained in:
Cory Dransfeldt 2024-10-26 17:38:51 -07:00
parent 59e37a8fe8
commit ab2d732ec5
No known key found for this signature in database
2 changed files with 12 additions and 4 deletions

View file

@ -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;

View file

@ -435,6 +435,7 @@ export const generateWatchingHTML = (media, globals, type) => {
<p class="title"><strong>${media["title"]}</strong> (${
media["year"]
})</p>
${media["rating"] ? `<p>${media["rating"]}</p>` : ""}
${
media["favorite"]
? `<p class="sub-meta favorite">${ICON_MAP["heart"]} This is one of my favorite ${label}s!</p>`