From 331455090b74b533dab814e1d488409a389bfc97 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Thu, 4 Apr 2024 17:03:25 -0700 Subject: [PATCH] chore: debug --- plugins/fetch-scrobbles/index.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/plugins/fetch-scrobbles/index.js b/plugins/fetch-scrobbles/index.js index d9d6ada8..18b691f3 100644 --- a/plugins/fetch-scrobbles/index.js +++ b/plugins/fetch-scrobbles/index.js @@ -7,13 +7,14 @@ const getKeys = () => { const weeks = Math.floor(currentDate.daysInMonth / 7) let count = 0 const keys = [] + while (count < weeks) { const weeks = 1 * (count + 1) const date = DateTime.now().minus({ weeks }) keys.push(`${date.year}-${date.weekNumber}`) count++; } - console.log(keys) + return keys } @@ -31,10 +32,10 @@ export const onPreBuild = async ({ constants }) => { const artistsMap = await artists.get('artists-map', { type: 'json' }) const albumsMap = await albums.get('albums-map', { type: 'json' }) const nowPlaying = await scrobbles.get('now-playing', { type: 'json'}) - keys.forEach(async key => { + for (const key of keys) { const scrobbleData = await scrobbles.get(key, { type: 'json'}) data.push(scrobbleData['data']) - }) + } console.log(chartData) fs.writeFileSync('./src/_data/json/scrobbles-window.json', JSON.stringify(windowData)) fs.writeFileSync('./src/_data/json/artists-map.json', JSON.stringify(artistsMap))