chore: pull month cart data
This commit is contained in:
parent
c57386411d
commit
466d7dd6ba
2 changed files with 3 additions and 3 deletions
|
@ -4,7 +4,7 @@ export const artistCapitalization = (artist) => artistCapitalizationPatches[arti
|
|||
|
||||
const sanitizeMediaString = (string) => string.normalize('NFD').replace(/[\u0300-\u036f\u2010—\.\?\(\)\[\]\{\}]/g, '').replace(/\.{3}/g, '').replace(/A©|é/g, 'e');
|
||||
|
||||
export const buildChart = (tracks, artists, albums, nowPlaying) => {
|
||||
export const buildChart = (tracks, artists, albums, nowPlaying = {}) => {
|
||||
const artistsData = {}
|
||||
const albumsData = {}
|
||||
const tracksData = {}
|
||||
|
|
|
@ -5,8 +5,8 @@ export default async function () {
|
|||
const monthChart = JSON.parse(await readFile('./src/_data/json/scrobbles-month-chart.json', 'utf8'));
|
||||
const artists = JSON.parse(await readFile('./src/_data/json/artists-map.json', 'utf8'));
|
||||
const albums = JSON.parse(await readFile('./src/_data/json/albums-map.json', 'utf8'));
|
||||
console.log(buildChart(monthChart['data'], artists, albums, nowPlaying))
|
||||
console.log(buildChart(monthChart['data'], artists, albums))
|
||||
return {
|
||||
month: buildChart(monthChart['data'], artists, albums, nowPlaying)
|
||||
month: buildChart(monthChart['data'], artists, albums)
|
||||
}
|
||||
}
|
Reference in a new issue