feat: related posts + show tags

This commit is contained in:
Cory Dransfeldt 2024-08-25 10:44:47 -07:00
parent 9111405c3f
commit 510e07da4f
No known key found for this signature in database
19 changed files with 215 additions and 79 deletions

10
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "23.0.1", "version": "24.0.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "23.0.1", "version": "24.0.0",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.5.0", "@cdransf/api-text": "^1.5.0",
@ -792,9 +792,9 @@
} }
}, },
"node_modules/caniuse-lite": { "node_modules/caniuse-lite": {
"version": "1.0.30001651", "version": "1.0.30001653",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001651.tgz", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001653.tgz",
"integrity": "sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg==", "integrity": "sha512-XGWQVB8wFQ2+9NZwZ10GxTYC5hk0Fa+q8cSkr0tgvMhYhMHP/QC+WTgrePMDBWiWc/pV+1ik82Al20XOK25Gcw==",
"dev": true, "dev": true,
"funding": [ "funding": [
{ {

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "23.0.1", "version": "24.0.0",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -141,6 +141,14 @@ p.music {
} }
} }
p.posts {
color: var(--posts);
& svg {
stroke: var(--posts);
}
}
p.tattoo { p.tattoo {
color: var(--tattoo); color: var(--tattoo);

View file

@ -74,6 +74,7 @@
/* borders */ /* borders */
--border-default: 1px solid var(--accent-color); --border-default: 1px solid var(--accent-color);
--border-gray: 1px solid var(--gray-light);
/* fonts */ /* fonts */
--font-mono: MonoLisa, Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, ui-monospace, monospace; --font-mono: MonoLisa, Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, ui-monospace, monospace;

View file

@ -1,3 +1,15 @@
article.standalone .associated-media:last-of-type > hr {
display: none;
}
p + .associated-media,
img + .associated-media,
.banner + .associated-media,
youtube-video + .associated-media {
margin-top: var(--sizing-base);
border-top: var(--border-gray)
}
.footnotes { .footnotes {
& .footnotes-list { & .footnotes-list {
margin-bottom: 0; margin-bottom: 0;
@ -11,6 +23,15 @@
display: inline; display: inline;
} }
} }
& ~ youtube-video {
margin-top: var(--sizing-base);
}
& + .associated-media {
margin-top: var(--sizing-base);
border-top: var(--border-gray);
}
} }
sup.footnote-ref { sup.footnote-ref {

View file

@ -29,7 +29,8 @@ const fetchAllArtists = async () => {
albums, albums,
concerts, concerts,
books, books,
movies movies,
posts
`) `)
.range(rangeStart, rangeStart + PAGE_SIZE - 1) .range(rangeStart, rangeStart + PAGE_SIZE - 1)
@ -82,6 +83,13 @@ const processArtists = (artists) => {
tmdb_id: movie['tmdb_id'], tmdb_id: movie['tmdb_id'],
url: `/watching/movies/${movie['tmdb_id']}`, url: `/watching/movies/${movie['tmdb_id']}`,
})).sort((a, b) => b['year'] - a['year']) : null, })).sort((a, b) => b['year'] - a['year']) : null,
posts: artist['posts']?.[0]?.['id'] ? artist['posts'].map(post => ({
id: post['id'],
title: post['title'],
date: post['date'],
slug: post['slug'],
url: post['slug'],
})).sort((a, b) => new Date(b['date']) - new Date(a['date'])) : null,
})) }))
} }

View file

@ -32,7 +32,8 @@ const fetchAllBooks = async () => {
artists, artists,
movies, movies,
genres, genres,
shows shows,
posts
`) `)
.order('date_finished', { ascending: false }) .order('date_finished', { ascending: false })
.range(rangeStart, rangeStart + PAGE_SIZE - 1) .range(rangeStart, rangeStart + PAGE_SIZE - 1)
@ -68,7 +69,7 @@ const processBooks = (books) => {
date: book['date_finished'], date: book['date_finished'],
status: book['read_status'], status: book['read_status'],
progress: book['progress'], progress: book['progress'],
tags: Array.isArray(book['tags']) ? book['tags'] : book['tags']?.split(',') || [], // Ensure tags is an array tags: Array.isArray(book['tags']) ? book['tags'] : book['tags']?.split(',') || [],
isbn: book['isbn'], isbn: book['isbn'],
type: 'book', type: 'book',
artists: book['artists']?.[0]?.['id'] ? book['artists'].map(artist => { artists: book['artists']?.[0]?.['id'] ? book['artists'].map(artist => {
@ -87,6 +88,13 @@ const processBooks = (books) => {
show['url'] = `/watching/shows/${show['tmdb_id']}` show['url'] = `/watching/shows/${show['tmdb_id']}`
return show return show
}).sort((a, b) => b['year'] - a['year']) : null, }).sort((a, b) => b['year'] - a['year']) : null,
posts: book['posts']?.[0]?.['id'] ? book['posts'].map(post => ({
id: post['id'],
title: post['title'],
date: post['date'],
slug: post['slug'],
url: post['slug'],
})).sort((a, b) => new Date(b['date']) - new Date(a['date'])) : null,
year, year,
} }
}) })

View file

@ -23,7 +23,8 @@ const fetchGenresWithArtists = async () => {
favorite favorite
), ),
books, books,
movies movies,
posts
`) `)
.order('id', { ascending: true }) .order('id', { ascending: true })
@ -52,6 +53,13 @@ const fetchGenresWithArtists = async () => {
tmdb_id: movie['tmdb_id'], tmdb_id: movie['tmdb_id'],
url: `/watching/movies/${movie['tmdb_id']}`, url: `/watching/movies/${movie['tmdb_id']}`,
})).sort((a, b) => b['year'] - a['year']) : null, })).sort((a, b) => b['year'] - a['year']) : null,
posts: genre['posts']?.[0]?.['id'] ? genre['posts'].map(post => ({
id: post['id'],
title: post['title'],
date: post['date'],
slug: post['slug'],
url: post['slug'],
})).sort((a, b) => new Date(b['date']) - new Date(a['date'])) : null,
})) }))
} }

View file

@ -34,7 +34,8 @@ const fetchAllMovies = async () => {
artists, artists,
books, books,
genres, genres,
shows shows,
posts
`) `)
.order('last_watched', { ascending: false }) .order('last_watched', { ascending: false })
.range(rangeStart, rangeStart + PAGE_SIZE - 1) .range(rangeStart, rangeStart + PAGE_SIZE - 1)
@ -88,6 +89,13 @@ const processMovies = (movies) => {
show['url'] = `/watching/shows/${show['tmdb_id']}` show['url'] = `/watching/shows/${show['tmdb_id']}`
return show return show
}).sort((a, b) => b['year'] - a['year']) : null, }).sort((a, b) => b['year'] - a['year']) : null,
posts: item['posts']?.[0]?.['id'] ? item['posts'].map(post => ({
id: post['id'],
title: post['title'],
date: post['date'],
slug: post['slug'],
url: post['slug'],
})).sort((a, b) => new Date(b['date']) - new Date(a['date'])) : null,
})) }))
} }

View file

@ -1,4 +1,6 @@
import { createClient } from '@supabase/supabase-js' import { createClient } from '@supabase/supabase-js'
import slugify from 'slugify'
import { sanitizeMediaString, parseCountryField } from '../../config/utilities/index.js'
const SUPABASE_URL = process.env['SUPABASE_URL'] const SUPABASE_URL = process.env['SUPABASE_URL']
const SUPABASE_KEY = process.env['SUPABASE_KEY'] const SUPABASE_KEY = process.env['SUPABASE_KEY']
@ -92,9 +94,11 @@ const fetchAllPosts = async () => {
const processPosts = async (posts, tagsByPostId, blocksByPostId) => { const processPosts = async (posts, tagsByPostId, blocksByPostId) => {
return Promise.all(posts.map(async post => { return Promise.all(posts.map(async post => {
// tags
post['tags'] = tagsByPostId[post['id']] || [] post['tags'] = tagsByPostId[post['id']] || []
const blocks = blocksByPostId[post['id']] || []
// blocks
const blocks = blocksByPostId[post['id']] || []
post['blocks'] = await Promise.all(blocks.map(async block => { post['blocks'] = await Promise.all(blocks.map(async block => {
const blockData = await fetchBlockData(block['collection'], block['item']) const blockData = await fetchBlockData(block['collection'], block['item'])
if (!blockData) return null if (!blockData) return null
@ -105,7 +109,42 @@ const processPosts = async (posts, tagsByPostId, blocksByPostId) => {
} }
})).then(blocks => blocks.filter(block => block !== null)) })).then(blocks => blocks.filter(block => block !== null))
// artists
post['artists'] = post['artists']?.[0]?.['id'] ? post['artists'].map(artist => {
artist['url'] = `/music/artists/${sanitizeMediaString(artist['name'])}-${sanitizeMediaString(parseCountryField(artist['country']))}`
return artist
}).sort((a, b) => a['name'].localeCompare(b['name'])) : null
// books
post['books'] = post['books']?.[0]?.['id'] ? post['books'].map(book => ({
title: book['title'],
author: book['author'],
isbn: book['isbn'],
description: book['description'],
url: `/books/${book['isbn']}`,
})).sort((a, b) => a['title'].localeCompare(b['title'])) : null
// movies
post['movies'] = post['movies']?.[0]?.['id'] ? post['movies'].map(movie => {
movie['url'] = `/watching/movies/${movie['tmdb_id']}`
return movie
}).sort((a, b) => b['year'] - a['year']) : null
// genres
post['genres'] = post['genres']?.[0]?.['id'] ? post['genres'].map(genre => {
genre['url'] = `/music/genres/${slugify(genre['name'].replace('/', '-').toLowerCase())}`
return genre
}).sort((a, b) => a['name'].localeCompare(b['name'])) : null
// shows
post['shows'] = post['shows']?.[0]?.['id'] ? post['shows'].map(show => {
show['url'] = `/watching/shows/${show['tmdb_id']}`
return show
}).sort((a, b) => b['year'] - a['year']) : null
// image
if (post['image']) post['image'] = post['image']['filename_disk'] if (post['image']) post['image'] = post['image']['filename_disk']
return post return post
})) }))
} }

View file

@ -25,9 +25,11 @@ const fetchAllShows = async () => {
review, review,
art, art,
backdrop, backdrop,
tags,
episodes, episodes,
movies, movies,
books books,
posts
`) `)
.range(rangeStart, rangeStart + PAGE_SIZE - 1) .range(rangeStart, rangeStart + PAGE_SIZE - 1)
@ -51,6 +53,7 @@ const prepareShowData = (show) => ({
url: `/watching/shows/${show['tmdb_id']}`, url: `/watching/shows/${show['tmdb_id']}`,
episodes: show['episodes'] || [], episodes: show['episodes'] || [],
tattoo: show['tattoo'], tattoo: show['tattoo'],
tags: Array.isArray(show['tags']) ? show['tags'] : show['tags']?.split(',') || [],
movies: show['movies']?.[0]?.['id'] ? show['movies'].map(movie => { movies: show['movies']?.[0]?.['id'] ? show['movies'].map(movie => {
movie['url'] = `/watching/movies/${movie['tmdb_id']}` movie['url'] = `/watching/movies/${movie['tmdb_id']}`
return movie return movie
@ -62,6 +65,13 @@ const prepareShowData = (show) => ({
description: book['description'], description: book['description'],
url: `/books/${book['isbn']}`, url: `/books/${book['isbn']}`,
})).sort((a, b) => a['title'].localeCompare(b['title'])) : null, })).sort((a, b) => a['title'].localeCompare(b['title'])) : null,
posts: show['posts']?.[0]?.['id'] ? show['posts'].map(post => ({
id: post['id'],
title: post['title'],
date: post['date'],
slug: post['slug'],
url: post['slug'],
})).sort((a, b) => new Date(b['date']) - new Date(a['date'])) : null,
}) })
const prepareEpisodeData = (show) => show['episodes'].map(episode => ({ const prepareEpisodeData = (show) => show['episodes'].map(episode => ({

View file

@ -1,5 +1,6 @@
{% comment %} render related artists {% endcomment %} {% if artists or books or genres or movies or posts or shows %}<div class="associated-media">{% endif %}
{%- if artists -%} {% comment %} render related artists {% endcomment %}
{%- if artists -%}
<p id="artists" class="music"> <p id="artists" class="music">
{% tablericon "headphones" "Related artist(s)" %} {% tablericon "headphones" "Related artist(s)" %}
Related artist(s) Related artist(s)
@ -10,9 +11,9 @@
{% endfor %} {% endfor %}
</ul> </ul>
<hr /> <hr />
{%- endif -%} {%- endif -%}
{% comment %} render related books {% endcomment %} {% comment %} render related books {% endcomment %}
{%- if books -%} {%- if books -%}
<p id="books" class="books"> <p id="books" class="books">
{% tablericon "books" "Related book(s)" %} {% tablericon "books" "Related book(s)" %}
Related book(s) Related book(s)
@ -23,9 +24,9 @@
{% endfor %} {% endfor %}
</ul> </ul>
<hr /> <hr />
{%- endif -%} {%- endif -%}
{% comment %} render related genres {% endcomment %} {% comment %} render related genres {% endcomment %}
{%- if genres -%} {%- if genres -%}
<p id="genres" class="music"> <p id="genres" class="music">
{% tablericon "headphones" "Genre(s)" %} {% tablericon "headphones" "Genre(s)" %}
Related genre(s) Related genre(s)
@ -36,9 +37,9 @@
{% endfor %} {% endfor %}
</ul> </ul>
<hr /> <hr />
{%- endif -%} {%- endif -%}
{% comment %} render related movies {% endcomment %} {% comment %} render related movies {% endcomment %}
{%- if movies -%} {%- if movies -%}
<p id="movies" class="movies"> <p id="movies" class="movies">
{% tablericon "movie" "Related movie(s)" %} {% tablericon "movie" "Related movie(s)" %}
Related movie(s) Related movie(s)
@ -49,9 +50,22 @@
{% endfor %} {% endfor %}
</ul> </ul>
<hr /> <hr />
{%- endif -%} {%- endif -%}
{% comment %} render related shows {% endcomment %} {% comment %} render related posts {% endcomment %}
{%- if shows -%} {%- if posts -%}
<p id="posts" class="posts">
{% tablericon "article" "Related post(s)" %}
Related post(s)
</p>
<ul>
{% for post in posts %}
<li><a href="{{ post.url }}">{{ post.title }}</a> ({{ post.date | date: "%B %e, %Y" }})</li>
{% endfor %}
</ul>
<hr />
{%- endif -%}
{% comment %} render related shows {% endcomment %}
{%- if shows -%}
<p id="tv" class="tv"> <p id="tv" class="tv">
{% tablericon "device-tv-old" "Related show(s)" %} {% tablericon "device-tv-old" "Related show(s)" %}
Related show(s) Related show(s)
@ -62,4 +76,5 @@
{% endfor %} {% endfor %}
</ul> </ul>
<hr /> <hr />
{%- endif -%} {%- endif -%}
{% if artists or books or genres or movies or posts or shows %}</div>{% endif %}

View file

@ -1,3 +1,3 @@
<script type="module" src="/assets/scripts/components/youtube-video-element.js?v={% appVersion %}"></script> <script type="module" src="/assets/scripts/components/youtube-video-element.js?v={% appVersion %}"></script>
<style>youtube-video{aspect-ratio:16/9;width:100%;margin-bottom:var(--sizing-base)}</style> <style>youtube-video{aspect-ratio:16/9;width:100%}</style>
<youtube-video controls src="{{ url }}"></youtube-video> <youtube-video controls src="{{ url }}"></youtube-video>

View file

@ -60,6 +60,7 @@ schema: book
{{ book.review | markdown }} {{ book.review | markdown }}
<hr /> <hr />
{% endif %} {% endif %}
{% render "partials/blocks/associated-media.liquid", posts:book.posts %}
{% render "partials/blocks/associated-media.liquid", artists:book.artists %} {% render "partials/blocks/associated-media.liquid", artists:book.artists %}
{% render "partials/blocks/associated-media.liquid", movies:book.movies %} {% render "partials/blocks/associated-media.liquid", movies:book.movies %}
{% render "partials/blocks/associated-media.liquid", shows:book.shows %} {% render "partials/blocks/associated-media.liquid", shows:book.shows %}

View file

@ -58,6 +58,7 @@ schema: artist
</p> </p>
</div> </div>
</div> </div>
{% render "partials/blocks/associated-media.liquid", posts:artist.posts %}
{% render "partials/blocks/associated-media.liquid", books:artist.books %} {% render "partials/blocks/associated-media.liquid", books:artist.books %}
{% render "partials/blocks/associated-media.liquid", movies:artist.movies %} {% render "partials/blocks/associated-media.liquid", movies:artist.movies %}
{%- if artist.description -%} {%- if artist.description -%}

View file

@ -29,6 +29,7 @@ schema: genre
<p>My top <strong class="highlight-text">{{ genre.name }}</strong> artists {{ connectingWord }} {{ mediaLinks }}. I've listened to <strong class="highlight-text">{{ genre.total_plays | formatNumber }}</strong> tracks form this genre.</p> <p>My top <strong class="highlight-text">{{ genre.name }}</strong> artists {{ connectingWord }} {{ mediaLinks }}. I've listened to <strong class="highlight-text">{{ genre.total_plays | formatNumber }}</strong> tracks form this genre.</p>
<hr /> <hr />
{%- endif -%} {%- endif -%}
{% render "partials/blocks/associated-media.liquid", posts:genre.posts %}
{% render "partials/blocks/associated-media.liquid", books:genre.books %} {% render "partials/blocks/associated-media.liquid", books:genre.books %}
{% render "partials/blocks/associated-media.liquid", movies:genre.movies %} {% render "partials/blocks/associated-media.liquid", movies:genre.movies %}
{%- if genre.description -%} {%- if genre.description -%}

View file

@ -37,5 +37,10 @@ schema: blog
{%- endif -%} {%- endif -%}
{{ post.content | markdown }} {{ post.content | markdown }}
{% render "partials/blocks/index.liquid", blocks:post.blocks %} {% render "partials/blocks/index.liquid", blocks:post.blocks %}
{% render "partials/blocks/associated-media.liquid", artists:post.artists %}
{% render "partials/blocks/associated-media.liquid", books:post.books %}
{% render "partials/blocks/associated-media.liquid", genres:post.genres %}
{% render "partials/blocks/associated-media.liquid", movie:post.movies %}
{% render "partials/blocks/associated-media.liquid", shows:post.shows %}
</div> </div>
</article> </article>

View file

@ -56,6 +56,7 @@ schema: movie
{{ movie.review | markdown }} {{ movie.review | markdown }}
<hr /> <hr />
{% endif %} {% endif %}
{% render "partials/blocks/associated-media.liquid", posts:movie.posts %}
{% render "partials/blocks/associated-media.liquid", shows:movie.shows %} {% render "partials/blocks/associated-media.liquid", shows:movie.shows %}
{% render "partials/blocks/associated-media.liquid", artists:movie.artists %} {% render "partials/blocks/associated-media.liquid", artists:movie.artists %}
{% render "partials/blocks/associated-media.liquid", books:movie.books %} {% render "partials/blocks/associated-media.liquid", books:movie.books %}

View file

@ -58,6 +58,7 @@ schema: show
{{ show.review | markdown }} {{ show.review | markdown }}
<hr /> <hr />
{% endif %} {% endif %}
{% render "partials/blocks/associated-media.liquid", posts:show.posts %}
{% render "partials/blocks/associated-media.liquid", movies:show.movies %} {% render "partials/blocks/associated-media.liquid", movies:show.movies %}
{% render "partials/blocks/associated-media.liquid", books:show.books %} {% render "partials/blocks/associated-media.liquid", books:show.books %}
{% if show.description %} {% if show.description %}