chore: debug
This commit is contained in:
parent
d0b2ac85bf
commit
331455090b
1 changed files with 4 additions and 3 deletions
|
@ -7,13 +7,14 @@ const getKeys = () => {
|
||||||
const weeks = Math.floor(currentDate.daysInMonth / 7)
|
const weeks = Math.floor(currentDate.daysInMonth / 7)
|
||||||
let count = 0
|
let count = 0
|
||||||
const keys = []
|
const keys = []
|
||||||
|
|
||||||
while (count < weeks) {
|
while (count < weeks) {
|
||||||
const weeks = 1 * (count + 1)
|
const weeks = 1 * (count + 1)
|
||||||
const date = DateTime.now().minus({ weeks })
|
const date = DateTime.now().minus({ weeks })
|
||||||
keys.push(`${date.year}-${date.weekNumber}`)
|
keys.push(`${date.year}-${date.weekNumber}`)
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
console.log(keys)
|
|
||||||
return keys
|
return keys
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,10 +32,10 @@ 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'})
|
||||||
keys.forEach(async key => {
|
for (const key of keys) {
|
||||||
const scrobbleData = await scrobbles.get(key, { type: 'json'})
|
const scrobbleData = await scrobbles.get(key, { type: 'json'})
|
||||||
data.push(scrobbleData['data'])
|
data.push(scrobbleData['data'])
|
||||||
})
|
}
|
||||||
console.log(chartData)
|
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))
|
||||||
|
|
Reference in a new issue