feat: associate movies and artists

This commit is contained in:
Cory Dransfeldt 2024-08-23 21:40:13 -07:00
parent b2eb6112ec
commit 7e1a55754b
No known key found for this signature in database
8 changed files with 99 additions and 37 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "22.6.6", "version": "22.7.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

@ -33,6 +33,14 @@
} }
} }
& p.movies {
color: var(--tv);
& svg {
stroke: var(--tv);
}
}
& p > svg { & p > svg {
margin-bottom: var(--inline-margin-bottom); margin-bottom: var(--inline-margin-bottom);
} }

View file

@ -139,6 +139,15 @@
aspect-ratio: var(--aspect-ratio-banner); aspect-ratio: var(--aspect-ratio-banner);
} }
& p.music {
color: var(--music);
& svg {
stroke: var(--music);
margin-bottom: var(--inline-margin-bottom);
}
}
& .watching-meta { & .watching-meta {
display: flex; display: flex;
flex-direction: column; flex-direction: column;

View file

@ -28,7 +28,8 @@ const fetchAllArtists = async () => {
art, art,
albums, albums,
concerts, concerts,
books books,
movies
`) `)
.range(rangeStart, rangeStart + PAGE_SIZE - 1) .range(rangeStart, rangeStart + PAGE_SIZE - 1)
@ -67,14 +68,20 @@ const processArtists = (artists) => {
totalPlays: album['total_plays'], totalPlays: album['total_plays'],
art: album.art ? `/${album['art']}` : '' art: album.art ? `/${album['art']}` : ''
})).sort((a, b) => a['release_year'] - b['release_year']), })).sort((a, b) => a['release_year'] - b['release_year']),
concerts: artist['concerts']?.[0]?.id ? artist['concerts'].sort((a, b) => new Date(b['date']) - new Date(a['date'])) : null, concerts: artist['concerts']?.[0]?.['id'] ? artist['concerts'].sort((a, b) => new Date(b['date']) - new Date(a['date'])) : null,
books: artist['books']?.[0]?.id ? artist['books'].map(book => ({ books: artist['books']?.[0]?.['id'] ? artist['books'].map(book => ({
title: book['title'], title: book['title'],
author: book['author'], author: book['author'],
isbn: book['isbn'], isbn: book['isbn'],
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,
movies: artist['movies']?.[0]?.['id'] ? artist['movies'].map(movie => ({
title: movie['title'],
year: movie['year'],
tmdb_id: movie['tmdb_id'],
url: `/watching/movies/${movie['tmdb_id']}`,
})).sort((a, b) => b['year'] - a['year']) : null,
})) }))
} }

View file

@ -49,10 +49,6 @@ const processBooks = (books) => {
return books.map(book => { return books.map(book => {
const dateFinished = new Date(book['date_finished']) const dateFinished = new Date(book['date_finished'])
const year = dateFinished.getUTCFullYear() const year = dateFinished.getUTCFullYear()
const artists = book?.['artists']?.map(artist => {
artist['url'] = `/music/artists/${sanitizeMediaString(artist['name'])}-${sanitizeMediaString(parseCountryField(artist['country']))}`
return artist
}).sort((a, b) => a['name'].localeCompare(b['name']))
return { return {
title: book['title'], title: book['title'],
@ -69,7 +65,10 @@ const processBooks = (books) => {
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(',') || [], // Ensure tags is an array
isbn: book['isbn'], isbn: book['isbn'],
type: 'book', type: 'book',
artists, artists: book['artists']?.[0]?.['id'] ? book['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,
year, year,
} }
}) })

View file

@ -1,5 +1,6 @@
import { createClient } from '@supabase/supabase-js' import { createClient } from '@supabase/supabase-js'
import { DateTime } from 'luxon' import { DateTime } from 'luxon'
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
@ -27,7 +28,8 @@ const fetchAllMovies = async () => {
review, review,
art, art,
backdrop, backdrop,
tags tags,
artists
`) `)
.order('last_watched', { ascending: false }) .order('last_watched', { ascending: false })
.range(rangeStart, rangeStart + PAGE_SIZE - 1) .range(rangeStart, rangeStart + PAGE_SIZE - 1)
@ -47,11 +49,7 @@ const fetchAllMovies = async () => {
} }
const processMovies = (movies) => { const processMovies = (movies) => {
return movies.map(item => { return movies.map(item => ({
const lastWatched = DateTime.fromISO(item['last_watched'], { zone: 'utc' })
const year = DateTime.now().year
return {
title: item['title'], title: item['title'],
lastWatched: item['last_watched'], lastWatched: item['last_watched'],
dateAdded: item['last_watched'], dateAdded: item['last_watched'],
@ -68,8 +66,11 @@ const processMovies = (movies) => {
id: item['tmdb_id'], id: item['tmdb_id'],
type: 'movie', type: 'movie',
tags: item['tags'] ? item['tags'].split(',') : [], tags: item['tags'] ? item['tags'].split(',') : [],
} artists: item['artists']?.[0]?.['name'] ? item['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,
}))
} }
export default async function () { export default async function () {

View file

@ -93,7 +93,7 @@ schema: artist
{%- if artist.books -%} {%- if artist.books -%}
<hr /> <hr />
<p id="books" class="books"> <p id="books" class="books">
{% tablericon "books" "books" %} {% tablericon "books" "Books" %}
I've read about this artist! I've read about this artist!
</p> </p>
<ul> <ul>
@ -102,7 +102,26 @@ schema: artist
{% endfor %} {% endfor %}
</ul> </ul>
{%- endif -%} {%- endif -%}
{%- if artist.books or artist.concerts -%}<hr />{%- endif -%} {%- if artist.movies -%}
{%- capture sectionTitle -%}
{% if artist.movies.size > 1 %}
I've watched a movie about this artist!
{% else %}
I've watched a movie about this artist!
{%- endif -%}
{%- endcapture -%}
<hr />
<p id="movies" class="movies">
{% tablericon "device-tv-old" "Movies" %}
{{ sectionTitle}}
</p>
<ul>
{% for movie in artist.movies %}
<li><a href="{{ movie.url }}">{{ movie.title }}</a> ({{ movie.year }})</li>
{% endfor %}
</ul>
{%- endif -%}
{%- if artist.books or artist.concerts or artist.movies -%}<hr />{%- endif -%}
<table> <table>
<tr> <tr>
<th>Album</th> <th>Album</th>

View file

@ -50,6 +50,25 @@ schema: movie
{{ movie.review | markdown }} {{ movie.review | markdown }}
<hr /> <hr />
{% endif %} {% endif %}
{%- if movie.artists -%}
{%- capture sectionTitle -%}
{% if movie.artists.size > 1 %}
I listen to artists featured in this movie!
{% else %}
I listen to the artist featured in this movie!
{%- endif -%}
{%- endcapture -%}
<p id="artists" class="music">
{% tablericon "headphones" "Music" %}
{{ sectionTitle }}
</p>
<ul>
{% for artist in movie.artists %}
<li><a href="{{ artist.url }}">{{ artist.name }}</a>{%- if artist.total_plays > 0 -%}: <strong class="highlight-text">{{ artist.total_plays }} plays</strong>{%- endif -%}</li>
{% endfor %}
</ul>
<hr />
{%- endif -%}
{% if movie.description %} {% if movie.description %}
<h3>Overview</h3> <h3>Overview</h3>
{{ movie.description | markdown }} {{ movie.description | markdown }}