fix: reference
This commit is contained in:
parent
ca94df3b61
commit
45eb72e886
3 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "9.8.0",
|
"version": "9.8.1",
|
||||||
"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": {
|
||||||
|
|
|
@ -76,7 +76,7 @@ export const buildChart = (tracks, artists, albums, nowPlaying = {}) => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export const buildTracksWithArt = (tracks, albums) => {
|
export const buildTracksWithArt = (tracks, artists, albums) => {
|
||||||
tracks.forEach(track => {
|
tracks.forEach(track => {
|
||||||
track['image'] = albums[albumSanitizedKey(track['album'])]?.['image'] || `https://cdn.coryd.dev/albums/${sanitizeMediaString(track['artist']).replace(/\s+/g, '-').toLowerCase()}-${sanitizeMediaString(track['album'].replace(/[:\/\\,'']+/g
|
track['image'] = albums[albumSanitizedKey(track['album'])]?.['image'] || `https://cdn.coryd.dev/albums/${sanitizeMediaString(track['artist']).replace(/\s+/g, '-').toLowerCase()}-${sanitizeMediaString(track['album'].replace(/[:\/\\,'']+/g
|
||||||
, '').replace(/\s+/g, '-').toLowerCase())}.jpg`
|
, '').replace(/\s+/g, '-').toLowerCase())}.jpg`
|
||||||
|
|
|
@ -8,7 +8,7 @@ export default async function () {
|
||||||
const albums = JSON.parse(await readFile('./src/_data/json/albums-map.json', 'utf8'));
|
const albums = JSON.parse(await readFile('./src/_data/json/albums-map.json', 'utf8'));
|
||||||
const recent = JSON.parse(await readFile('./src/_data/json/scrobbles-window.json', 'utf8'))['data'].reverse().splice(0,10)
|
const recent = JSON.parse(await readFile('./src/_data/json/scrobbles-window.json', 'utf8'))['data'].reverse().splice(0,10)
|
||||||
return {
|
return {
|
||||||
recent: buildTracksWithArt(recent, albums),
|
recent: buildTracksWithArt(recent, artists, albums),
|
||||||
month: buildChart(monthChart['data'], artists, albums),
|
month: buildChart(monthChart['data'], artists, albums),
|
||||||
threeMonthChart: buildChart(threeMonthChart['data'], artists, albums),
|
threeMonthChart: buildChart(threeMonthChart['data'], artists, albums),
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue