From 76a172bb74a9a25da0af058c1b8044c36b7679cb Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sun, 13 Oct 2024 15:51:27 -0700 Subject: [PATCH] chore: remove old filters, hardcoded types, old post status from view --- config/filters/dates.js | 16 ---------------- src/includes/base.liquid | 2 +- .../partials/blocks/banners/old-post.liquid | 1 - src/pages/dynamic/music/artists/artist.html | 6 +++--- src/pages/dynamic/posts/post.html | 2 +- views/content/posts.psql | 6 ++++++ views/feeds/all-content.psql | 4 ---- views/feeds/search.psql | 6 ------ views/feeds/sitemap.psql | 5 ----- views/feeds/syndication.psql | 4 ---- views/globals/pages.psql | 2 +- views/media/books.psql | 1 - views/media/movies.psql | 1 - views/media/music/artists.psql | 6 +++--- views/media/shows.psql | 1 - 15 files changed, 15 insertions(+), 48 deletions(-) diff --git a/config/filters/dates.js b/config/filters/dates.js index 5aedb0dd..6028aad9 100644 --- a/config/filters/dates.js +++ b/config/filters/dates.js @@ -1,20 +1,4 @@ -import { DateTime } from 'luxon' - export default { - isoDateOnly: (date, separator) => { - let d = new Date(date) - let month = '' + (d.getMonth() + 1) - let day = '' + d.getDate() - let year = d.getFullYear() - - if (month.length < 2) month = '0' + month - if (day.length < 2) day = '0' + day - - return [year, month, day].join(separator) - }, - oldPost: (date) => { - return DateTime.now().diff(DateTime.fromJSDate(new Date(date)), 'years').years > 3 - }, stringToRFC822Date: (dateString) => { const date = new Date(Date.parse(dateString)) const dayStrings = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'] diff --git a/src/includes/base.liquid b/src/includes/base.liquid index 2199d2b3..60fa5594 100644 --- a/src/includes/base.liquid +++ b/src/includes/base.liquid @@ -142,7 +142,7 @@ "inLanguage": "{{ globals.locale }}", "publisher": { "@type": "{{ globals.site_type }}", "name": "{{ globals.author }}", "url": "{{ globals.url }}" }, "author": { "@type": "Person", "name": "{{ globals.author }}" }, - "datePublished": "{{ page.date | isoDateOnly: '.' }}" + "datePublished": "{{ page.date | date: "%Y.%m.%d" }}" } {%- endif -%} ] diff --git a/src/includes/partials/blocks/banners/old-post.liquid b/src/includes/partials/blocks/banners/old-post.liquid index 50545181..c0b26e89 100644 --- a/src/includes/partials/blocks/banners/old-post.liquid +++ b/src/includes/partials/blocks/banners/old-post.liquid @@ -1,4 +1,3 @@ -{%- assign isOldPost = date | oldPost -%} {%- if isOldPost -%}