feat: associate books and movies

This commit is contained in:
Cory Dransfeldt 2024-08-24 12:40:27 -07:00
parent c83aea01f8
commit d1e3ab23bb
No known key found for this signature in database
9 changed files with 72 additions and 9 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "22.7.1", "version": "22.8.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "22.7.1", "version": "22.8.0",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.5.0", "@cdransf/api-text": "^1.5.0",

View file

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

@ -113,12 +113,23 @@
p { p {
margin: var(--sizing-base) 0; margin: var(--sizing-base) 0;
& svg {
margin-bottom: var(--inline-margin-bottom);
}
&.music { &.music {
color: var(--music); color: var(--music);
& svg { & svg {
stroke: var(--music); stroke: var(--music);
margin-bottom: var(--inline-margin-bottom); }
}
&.movies {
color: var(--tv);
& svg {
stroke: var(--tv);
} }
} }
} }

View file

@ -139,12 +139,23 @@
aspect-ratio: var(--aspect-ratio-banner); aspect-ratio: var(--aspect-ratio-banner);
} }
& p > svg {
margin-bottom: var(--inline-margin-bottom);
}
& p.music { & p.music {
color: var(--music); color: var(--music);
& svg { & svg {
stroke: var(--music); stroke: var(--music);
margin-bottom: var(--inline-margin-bottom); }
}
& p.books {
color: var(--books);
& svg {
stroke: var(--books);
} }
} }

View file

@ -27,7 +27,8 @@ const fetchAllBooks = async () => {
art, art,
favorite, favorite,
tags, tags,
artists artists,
movies
`) `)
.order('date_finished', { ascending: false }) .order('date_finished', { ascending: false })
.range(rangeStart, rangeStart + PAGE_SIZE - 1) .range(rangeStart, rangeStart + PAGE_SIZE - 1)
@ -69,6 +70,10 @@ const processBooks = (books) => {
artist['url'] = `/music/artists/${sanitizeMediaString(artist['name'])}-${sanitizeMediaString(parseCountryField(artist['country']))}` artist['url'] = `/music/artists/${sanitizeMediaString(artist['name'])}-${sanitizeMediaString(parseCountryField(artist['country']))}`
return artist return artist
}).sort((a, b) => a['name'].localeCompare(b['name'])) : null, }).sort((a, b) => a['name'].localeCompare(b['name'])) : null,
movies: book['movies']?.[0]?.['id'] ? book['movies'].map(movie => {
movie['url'] =`/watching/movies/${movie['tmdb_id']}`
return movie
}).sort((a, b) => b['year'] - a['year']) : null,
year, year,
} }
}) })

View file

@ -29,7 +29,8 @@ const fetchAllMovies = async () => {
art, art,
backdrop, backdrop,
tags, tags,
artists artists,
books
`) `)
.order('last_watched', { ascending: false }) .order('last_watched', { ascending: false })
.range(rangeStart, rangeStart + PAGE_SIZE - 1) .range(rangeStart, rangeStart + PAGE_SIZE - 1)
@ -70,6 +71,10 @@ const processMovies = (movies) => {
artist['url'] = `/music/artists/${sanitizeMediaString(artist['name'])}-${sanitizeMediaString(parseCountryField(artist['country']))}` artist['url'] = `/music/artists/${sanitizeMediaString(artist['name'])}-${sanitizeMediaString(parseCountryField(artist['country']))}`
return artist return artist
}).sort((a, b) => a['name'].localeCompare(b['name'])) : null, }).sort((a, b) => a['name'].localeCompare(b['name'])) : null,
books: item['books']?.[0]?.['id'] ? item['books'].map(book => {
book['url'] = `/books/${book['isbn']}`
return book
}).sort((a, b) => a['title'].localeCompare(b['title'])) : null,
})) }))
} }

View file

@ -73,6 +73,25 @@ schema: book
</ul> </ul>
<hr /> <hr />
{%- endif -%} {%- endif -%}
{%- if book.movies -%}
{%- capture sectionTitle -%}
{% if book.movies.size > 1 %}
I've watched movies related to this book!
{% else %}
I've watched a movie related to this book!
{%- endif -%}
{%- endcapture -%}
<hr />
<p id="movies" class="movies">
{% tablericon "device-tv-old" "Movies" %}
{{ sectionTitle }}
</p>
<ul>
{% for movie in book.movies %}
<li><a href="{{ movie.url }}">{{ movie.title }}</a> ({{ movie.year }})</li>
{% endfor %}
</ul>
{%- endif -%}
{% if book.description %} {% if book.description %}
<h3>Overview</h3> <h3>Overview</h3>
{{ book.description | markdown }} {{ book.description | markdown }}

View file

@ -105,7 +105,7 @@ schema: artist
{%- if artist.movies -%} {%- if artist.movies -%}
{%- capture sectionTitle -%} {%- capture sectionTitle -%}
{% if artist.movies.size > 1 %} {% if artist.movies.size > 1 %}
I've watched a movie about this artist! I've watched movies about this artist!
{% else %} {% else %}
I've watched a movie about this artist! I've watched a movie about this artist!
{%- endif -%} {%- endif -%}

View file

@ -69,6 +69,18 @@ schema: movie
</ul> </ul>
<hr /> <hr />
{%- endif -%} {%- endif -%}
{%- if movie.books -%}
<p id="books" class="books">
{% tablericon "books" "Books" %}
I've read about this movie!
</p>
<ul>
{% for book in movie.books %}
<li><a href="{{ book.url }}">{{ book.title }}</a> by {{ book.author }}</li>
{% endfor %}
</ul>
<hr />
{%- endif -%}
{% if movie.description %} {% if movie.description %}
<h3>Overview</h3> <h3>Overview</h3>
{{ movie.description | markdown }} {{ movie.description | markdown }}