chore: release urls

This commit is contained in:
Cory Dransfeldt 2024-05-26 17:05:11 -07:00
parent b21c969079
commit 6e0d76d8b6
No known key found for this signature in database
2 changed files with 5 additions and 3 deletions

View file

@ -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
@ -15,7 +16,7 @@ export default async function () {
image,
release_date,
release_link,
artists (name_string, genre, mbid)
artists (name_string, genre, mbid, country)
`)
.gt('release_date', today)
@ -30,6 +31,7 @@ export default async function () {
title: album['name'],
date: DateTime.fromISO(album['release_date']).toLocaleString(DateTime.DATE_FULL),
url: album['release_link'],
artist_url: `https://coryd.dev/music/artists/${sanitizeMediaString(album['artists']['name_string'])}-${sanitizeMediaString(parseCountryField(album['artists']['country']))}`,
genre: album['artists']['genre'],
mbid: album['artists']['mbid'],
timestamp: DateTime.fromISO(album['release_date']).toSeconds()

View file

@ -11,10 +11,10 @@
{{ album.title }}
</a>
<span> by </span>
<a href="https://musicbrainz.org/artist/{{ album.mbid }}">
<a href="{{ album.artist_url }}">
{{ album.artist }}
</a>
<span> • {{ album.genre }}</span>
<span> • <a href="https://coryd.dev/music/genres/{{ album.genre | slugify | downcase }}">{{ album.genre }}</a></span>
</li>
{% endfor %}
</ul>