chore: release urls
This commit is contained in:
parent
b21c969079
commit
6e0d76d8b6
2 changed files with 5 additions and 3 deletions
|
@ -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
|
||||||
|
@ -15,7 +16,7 @@ export default async function () {
|
||||||
image,
|
image,
|
||||||
release_date,
|
release_date,
|
||||||
release_link,
|
release_link,
|
||||||
artists (name_string, genre, mbid)
|
artists (name_string, genre, mbid, country)
|
||||||
`)
|
`)
|
||||||
.gt('release_date', today)
|
.gt('release_date', today)
|
||||||
|
|
||||||
|
@ -30,6 +31,7 @@ export default async function () {
|
||||||
title: album['name'],
|
title: album['name'],
|
||||||
date: DateTime.fromISO(album['release_date']).toLocaleString(DateTime.DATE_FULL),
|
date: DateTime.fromISO(album['release_date']).toLocaleString(DateTime.DATE_FULL),
|
||||||
url: album['release_link'],
|
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'],
|
genre: album['artists']['genre'],
|
||||||
mbid: album['artists']['mbid'],
|
mbid: album['artists']['mbid'],
|
||||||
timestamp: DateTime.fromISO(album['release_date']).toSeconds()
|
timestamp: DateTime.fromISO(album['release_date']).toSeconds()
|
||||||
|
|
|
@ -11,10 +11,10 @@
|
||||||
{{ album.title }}
|
{{ album.title }}
|
||||||
</a>
|
</a>
|
||||||
<span> by </span>
|
<span> by </span>
|
||||||
<a href="https://musicbrainz.org/artist/{{ album.mbid }}">
|
<a href="{{ album.artist_url }}">
|
||||||
{{ album.artist }}
|
{{ album.artist }}
|
||||||
</a>
|
</a>
|
||||||
<span> • {{ album.genre }}</span>
|
<span> • <a href="https://coryd.dev/music/genres/{{ album.genre | slugify | downcase }}">{{ album.genre }}</a></span>
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
Reference in a new issue