From d213d4380aa6c99c0df6d8f28dde6692f2fdac30 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 12 Oct 2024 20:19:47 -0700 Subject: [PATCH] chore: align query count with template limit --- src/data/activity.js | 1 + src/data/syndication.js | 1 + views/feeds/all-content.psql | 12 +++++++++--- views/feeds/syndication.psql | 10 ++++++++-- 4 files changed, 19 insertions(+), 5 deletions(-) diff --git a/src/data/activity.js b/src/data/activity.js index 97f69c8b..068d73db 100644 --- a/src/data/activity.js +++ b/src/data/activity.js @@ -15,5 +15,6 @@ export default async function fetchSyndication() { } const [{ feed } = {}] = data + return feed?.filter(item => item['feed'] !== null) || [] } \ No newline at end of file diff --git a/src/data/syndication.js b/src/data/syndication.js index 57a09edd..63d3834d 100644 --- a/src/data/syndication.js +++ b/src/data/syndication.js @@ -15,5 +15,6 @@ export default async function fetchSyndication() { } const [{ syndication } = {}] = data + return syndication?.filter(item => item['syndication'] !== null) || [] } \ No newline at end of file diff --git a/views/feeds/all-content.psql b/views/feeds/all-content.psql index d5fa13eb..ed534c27 100644 --- a/views/feeds/all-content.psql +++ b/views/feeds/all-content.psql @@ -22,14 +22,14 @@ WITH feed_data AS ( SELECT l.date AS content_date, 'link' AS content_type, - CONCAT(l.title, ' via ', l.name) AS title, + l.title, l.description, l.link AS url, NULL AS image, NULL AS rating, l.tags, json_build_object( - 'title', CONCAT(l.title, ' via ', l.name), + 'title', l.title, 'url', l.link, 'description', l.description, 'date', l.date @@ -86,4 +86,10 @@ WITH feed_data AS ( ) SELECT json_agg(feed_data.* ORDER BY feed_data.content_date DESC) AS feed -FROM feed_data; \ No newline at end of file +FROM ( + SELECT * + FROM feed_data + WHERE feed IS NOT NULL + ORDER BY content_date DESC + LIMIT 20 +) AS feed_data; \ No newline at end of file diff --git a/views/feeds/syndication.psql b/views/feeds/syndication.psql index 17933f95..1eaedcc1 100644 --- a/views/feeds/syndication.psql +++ b/views/feeds/syndication.psql @@ -99,5 +99,11 @@ WITH syndication_data AS ( FROM optimized_movies m ) -SELECT json_agg(syndication_data.* ORDER BY syndication_data.content_date DESC) AS syndication -FROM syndication_data; \ No newline at end of file +SELECT json_agg(limited_data.*) AS syndication +FROM ( + SELECT * + FROM syndication_data + WHERE syndication IS NOT NULL + ORDER BY content_date DESC + LIMIT 20 +) AS limited_data;