fix: checks

This commit is contained in:
Cory Dransfeldt 2024-04-28 17:25:07 -07:00
parent f1ffcfbff8
commit 538f529961

View file

@ -52,24 +52,18 @@ export const onPreBuild = async ({ constants }) => {
const nowPlaying = await scrobbles.get('now-playing', { type: 'json'}) const nowPlaying = await scrobbles.get('now-playing', { type: 'json'})
for (const key of monthKeys) { for (const key of monthKeys) {
const scrobbleData = await scrobbles.get(key, { type: 'json'}) || [] const scrobbleData = await scrobbles.get(key, { type: 'json'})
monthChartData?.['data']?.push(...scrobbleData?.['data']) if (scrobbleData) monthChartData?.['data']?.push(...scrobbleData?.['data'])
} }
for (const key of threeMonthKeys) { for (const key of threeMonthKeys) {
const scrobbleData = await scrobbles.get(key, { type: 'json'}) || [] const scrobbleData = await scrobbles.get(key, { type: 'json'})
threeMonthChartData?.['data']?.push(...scrobbleData?.['data']) if (scrobbleData) threeMonthChartData?.['data']?.push(...scrobbleData?.['data'])
} }
for (const key of yearKeys) { for (const key of yearKeys) {
let scrobbleData const scrobbleData = await scrobbles?.get(key, { type: 'json'})
try { if (scrobbleData) yearChartData?.['data']?.push(...scrobbleData?.['data'])
scrobbleData = await scrobbles?.get(key, { type: 'json'})
} catch (error) {
console.log("Error: can't get more scrobbles.")
break;
}
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()}` })) 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()}` }))