Merge branch 'main' of github.com:cdransf/coryd.dev
This commit is contained in:
commit
57999c989e
1 changed files with 21 additions and 9 deletions
|
@ -52,24 +52,36 @@ export const onPreBuild = async ({ constants }) => {
|
|||
const nowPlaying = await scrobbles.get('now-playing', { type: 'json'})
|
||||
|
||||
for (const key of monthKeys) {
|
||||
const scrobbleData = await scrobbles.get(key, { type: 'json'})
|
||||
monthChartData['data'].push(...scrobbleData['data'])
|
||||
let scrobbleData
|
||||
try {
|
||||
scrobbleData = await scrobbles.get(key, { type: 'json'})
|
||||
} catch (err) {
|
||||
console.log('Error fetching scrobble data using monthKeys')
|
||||
break
|
||||
}
|
||||
if (scrobbleData) monthChartData?.['data']?.push(...scrobbleData?.['data'])
|
||||
}
|
||||
|
||||
for (const key of threeMonthKeys) {
|
||||
const scrobbleData = await scrobbles.get(key, { type: 'json'})
|
||||
threeMonthChartData['data'].push(...scrobbleData['data'])
|
||||
let scrobbleData
|
||||
try {
|
||||
scrobbleData = await scrobbles.get(key, { type: 'json'})
|
||||
} catch (err) {
|
||||
console.log('Error fetching scrobble data using threeMonthKeys')
|
||||
break
|
||||
}
|
||||
if (scrobbleData) threeMonthChartData?.['data']?.push(...scrobbleData?.['data'])
|
||||
}
|
||||
|
||||
for (const key of yearKeys) {
|
||||
let scrobbleData;
|
||||
let scrobbleData
|
||||
try {
|
||||
scrobbleData = await scrobbles?.get(key, { type: 'json'})
|
||||
} catch (error) {
|
||||
console.log("Error: can't get more scrobbles.")
|
||||
break;
|
||||
} catch (err) {
|
||||
console.log('Error fetching scrobble data using yearKeys')
|
||||
break
|
||||
}
|
||||
yearChartData['data'].push(...scrobbleData['data'])
|
||||
if (scrobbleData) yearChartData?.['data']?.push(...scrobbleData?.['data'])
|
||||
}
|
||||
|
||||
fs.writeFileSync('./src/_data/json/weekly-top-artists-chart.json', JSON.stringify({...weeklyChartData, timestamp: `${lastWeek.set({ hour: 8, minute: 0, second: 0, millisecond: 0 }).toMillis()}` }))
|
||||
|
|
Reference in a new issue