fix: upcoming albums
This commit is contained in:
parent
8fd2e34341
commit
7aada933da
3 changed files with 8 additions and 9 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "20.0.1",
|
"version": "20.0.2",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "20.0.1",
|
"version": "20.0.2",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.4.0",
|
"@cdransf/api-text": "^1.4.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "20.0.1",
|
"version": "20.0.2",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -13,11 +13,11 @@ export default async function () {
|
||||||
.select(`
|
.select(`
|
||||||
name,
|
name,
|
||||||
key,
|
key,
|
||||||
image,
|
|
||||||
release_date,
|
release_date,
|
||||||
release_link,
|
release_link,
|
||||||
total_plays,
|
total_plays,
|
||||||
artists (name_string, mbid, country)
|
art(filename_disk),
|
||||||
|
artists(name_string, mbid, country)
|
||||||
`)
|
`)
|
||||||
.gt('release_date', today)
|
.gt('release_date', today)
|
||||||
|
|
||||||
|
@ -26,17 +26,16 @@ export default async function () {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
return data.filter(album => !album['total_plays'] || !album['total_plays'] > 0).map(album => {
|
return data.filter(album => !album['total_plays'] || !album['total_plays'] > 0).map(album => ({
|
||||||
return {
|
|
||||||
artist: album['artists']['name_string'],
|
artist: album['artists']['name_string'],
|
||||||
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'],
|
||||||
image: album['image'],
|
image: `/${album?.['art']?.['filename_disk']}` || '',
|
||||||
artist_url: `/music/artists/${sanitizeMediaString(album['artists']['name_string'])}-${sanitizeMediaString(parseCountryField(album['artists']['country']))}`,
|
artist_url: `/music/artists/${sanitizeMediaString(album['artists']['name_string'])}-${sanitizeMediaString(parseCountryField(album['artists']['country']))}`,
|
||||||
mbid: album['artists']['mbid'],
|
mbid: album['artists']['mbid'],
|
||||||
timestamp: DateTime.fromISO(album['release_date']).toSeconds(),
|
timestamp: DateTime.fromISO(album['release_date']).toSeconds(),
|
||||||
type: 'album-release'
|
type: 'album-release'
|
||||||
}
|
}
|
||||||
}).sort((a, b) => a.timestamp - b.timestamp)
|
)).sort((a, b) => a.timestamp - b.timestamp)
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue