chore: pull month cart data
This commit is contained in:
parent
64b442f615
commit
4f674fb17d
1 changed files with 2 additions and 1 deletions
|
@ -32,11 +32,12 @@ export const onPreBuild = async ({ constants }) => {
|
||||||
const artistsMap = await artists.get('artists-map', { type: 'json' })
|
const artistsMap = await artists.get('artists-map', { type: 'json' })
|
||||||
const albumsMap = await albums.get('albums-map', { type: 'json' })
|
const albumsMap = await albums.get('albums-map', { type: 'json' })
|
||||||
const nowPlaying = await scrobbles.get('now-playing', { type: 'json'})
|
const nowPlaying = await scrobbles.get('now-playing', { type: 'json'})
|
||||||
|
|
||||||
for (const key of keys) {
|
for (const key of keys) {
|
||||||
const scrobbleData = await scrobbles.get(key, { type: 'json'})
|
const scrobbleData = await scrobbles.get(key, { type: 'json'})
|
||||||
chartData['data'].push(...scrobbleData['data'])
|
chartData['data'].push(...scrobbleData['data'])
|
||||||
}
|
}
|
||||||
console.log(chartData)
|
|
||||||
fs.writeFileSync('./src/_data/json/scrobbles-window.json', JSON.stringify(windowData))
|
fs.writeFileSync('./src/_data/json/scrobbles-window.json', JSON.stringify(windowData))
|
||||||
fs.writeFileSync('./src/_data/json/artists-map.json', JSON.stringify(artistsMap))
|
fs.writeFileSync('./src/_data/json/artists-map.json', JSON.stringify(artistsMap))
|
||||||
fs.writeFileSync('./src/_data/json/albums-map.json', JSON.stringify(albumsMap))
|
fs.writeFileSync('./src/_data/json/albums-map.json', JSON.stringify(albumsMap))
|
||||||
|
|
Reference in a new issue