fix: restore rating on movie pages + syndication feed
This commit is contained in:
parent
59e37a8fe8
commit
ab2d732ec5
2 changed files with 12 additions and 4 deletions
|
@ -37,7 +37,11 @@ WITH syndication_data AS (
|
||||||
CONCAT('https://coryd.dev', b.url) AS url,
|
CONCAT('https://coryd.dev', b.url) AS url,
|
||||||
b.tags,
|
b.tags,
|
||||||
CASE WHEN LOWER(b.status) = 'finished' THEN
|
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
|
SELECT
|
||||||
array_to_string(array_agg('#' || initcap(replace(t.name, ' ', ''))), ' ')
|
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)
|
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,
|
CONCAT('https://coryd.dev', m.url) AS url,
|
||||||
m.tags,
|
m.tags,
|
||||||
CASE WHEN m.last_watched IS NOT NULL THEN
|
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
|
SELECT
|
||||||
array_to_string(array_agg('#' || initcap(replace(t.name, ' ', ''))), ' ')
|
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)
|
FROM unnest(m.tags) AS t(name))), 'description', m.description, 'url', CONCAT('https://coryd.dev', m.url), 'date', m.last_watched)
|
||||||
|
@ -76,4 +84,3 @@ FROM (
|
||||||
ORDER BY
|
ORDER BY
|
||||||
content_date DESC
|
content_date DESC
|
||||||
LIMIT 20) AS limited_data;
|
LIMIT 20) AS limited_data;
|
||||||
|
|
||||||
|
|
|
@ -435,6 +435,7 @@ export const generateWatchingHTML = (media, globals, type) => {
|
||||||
<p class="title"><strong>${media["title"]}</strong> (${
|
<p class="title"><strong>${media["title"]}</strong> (${
|
||||||
media["year"]
|
media["year"]
|
||||||
})</p>
|
})</p>
|
||||||
|
${media["rating"] ? `<p>${media["rating"]}</p>` : ""}
|
||||||
${
|
${
|
||||||
media["favorite"]
|
media["favorite"]
|
||||||
? `<p class="sub-meta favorite">${ICON_MAP["heart"]} This is one of my favorite ${label}s!</p>`
|
? `<p class="sub-meta favorite">${ICON_MAP["heart"]} This is one of my favorite ${label}s!</p>`
|
||||||
|
|
Reference in a new issue