feat: associate movies and artists
This commit is contained in:
parent
b2eb6112ec
commit
7e1a55754b
8 changed files with 99 additions and 37 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "22.6.6",
|
||||
"version": "22.7.0",
|
||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
|
@ -33,6 +33,14 @@
|
|||
}
|
||||
}
|
||||
|
||||
& p.movies {
|
||||
color: var(--tv);
|
||||
|
||||
& svg {
|
||||
stroke: var(--tv);
|
||||
}
|
||||
}
|
||||
|
||||
& p > svg {
|
||||
margin-bottom: var(--inline-margin-bottom);
|
||||
}
|
||||
|
|
|
@ -139,6 +139,15 @@
|
|||
aspect-ratio: var(--aspect-ratio-banner);
|
||||
}
|
||||
|
||||
& p.music {
|
||||
color: var(--music);
|
||||
|
||||
& svg {
|
||||
stroke: var(--music);
|
||||
margin-bottom: var(--inline-margin-bottom);
|
||||
}
|
||||
}
|
||||
|
||||
& .watching-meta {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
|
@ -28,7 +28,8 @@ const fetchAllArtists = async () => {
|
|||
art,
|
||||
albums,
|
||||
concerts,
|
||||
books
|
||||
books,
|
||||
movies
|
||||
`)
|
||||
.range(rangeStart, rangeStart + PAGE_SIZE - 1)
|
||||
|
||||
|
@ -67,14 +68,20 @@ const processArtists = (artists) => {
|
|||
totalPlays: album['total_plays'],
|
||||
art: album.art ? `/${album['art']}` : ''
|
||||
})).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,
|
||||
books: artist['books']?.[0]?.id ? artist['books'].map(book => ({
|
||||
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 => ({
|
||||
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
|
||||
})).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,
|
||||
}))
|
||||
}
|
||||
|
||||
|
|
|
@ -49,10 +49,6 @@ const processBooks = (books) => {
|
|||
return books.map(book => {
|
||||
const dateFinished = new Date(book['date_finished'])
|
||||
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 {
|
||||
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
|
||||
isbn: book['isbn'],
|
||||
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,
|
||||
}
|
||||
})
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import { createClient } from '@supabase/supabase-js'
|
||||
import { DateTime } from 'luxon'
|
||||
import { sanitizeMediaString, parseCountryField } from '../../config/utilities/index.js'
|
||||
|
||||
const SUPABASE_URL = process.env.SUPABASE_URL
|
||||
const SUPABASE_KEY = process.env.SUPABASE_KEY
|
||||
|
@ -27,7 +28,8 @@ const fetchAllMovies = async () => {
|
|||
review,
|
||||
art,
|
||||
backdrop,
|
||||
tags
|
||||
tags,
|
||||
artists
|
||||
`)
|
||||
.order('last_watched', { ascending: false })
|
||||
.range(rangeStart, rangeStart + PAGE_SIZE - 1)
|
||||
|
@ -47,11 +49,7 @@ const fetchAllMovies = async () => {
|
|||
}
|
||||
|
||||
const processMovies = (movies) => {
|
||||
return movies.map(item => {
|
||||
const lastWatched = DateTime.fromISO(item['last_watched'], { zone: 'utc' })
|
||||
const year = DateTime.now().year
|
||||
|
||||
return {
|
||||
return movies.map(item => ({
|
||||
title: item['title'],
|
||||
lastWatched: item['last_watched'],
|
||||
dateAdded: item['last_watched'],
|
||||
|
@ -68,8 +66,11 @@ const processMovies = (movies) => {
|
|||
id: item['tmdb_id'],
|
||||
type: 'movie',
|
||||
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 () {
|
||||
|
|
|
@ -93,7 +93,7 @@ schema: artist
|
|||
{%- if artist.books -%}
|
||||
<hr />
|
||||
<p id="books" class="books">
|
||||
{% tablericon "books" "books" %}
|
||||
{% tablericon "books" "Books" %}
|
||||
I've read about this artist!
|
||||
</p>
|
||||
<ul>
|
||||
|
@ -102,7 +102,26 @@ schema: artist
|
|||
{% endfor %}
|
||||
</ul>
|
||||
{%- 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>
|
||||
<tr>
|
||||
<th>Album</th>
|
||||
|
|
|
@ -50,6 +50,25 @@ schema: movie
|
|||
{{ movie.review | markdown }}
|
||||
<hr />
|
||||
{% 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 %}
|
||||
<h3>Overview</h3>
|
||||
{{ movie.description | markdown }}
|
||||
|
|
Reference in a new issue