chore: return multiple charts if available
This commit is contained in:
parent
2a486efa97
commit
404a940c8c
2 changed files with 32 additions and 18 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "14.4.0",
|
"version": "14.5.0",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -46,20 +46,22 @@ export default async function() {
|
||||||
const endOfWeekSeconds = endOfWeek.toSeconds()
|
const endOfWeekSeconds = endOfWeek.toSeconds()
|
||||||
const weekNumber = now.toFormat('kkkk-WW')
|
const weekNumber = now.toFormat('kkkk-WW')
|
||||||
|
|
||||||
let { data: existingRecord } = await supabase
|
let { data: recentCharts } = await supabase
|
||||||
.from('weekly_charts')
|
.from('weekly_charts')
|
||||||
.select('*')
|
.select('*')
|
||||||
.eq('week', weekNumber)
|
.order('date', { ascending: false })
|
||||||
.single();
|
.limit(10);
|
||||||
|
|
||||||
if (existingRecord) {
|
if (recentCharts.some(chart => chart['week'] === weekNumber)) {
|
||||||
const formattedData = formatData(JSON.parse(existingRecord['data']))
|
return recentCharts.map(chart => {
|
||||||
return [{
|
const formattedData = formatData(JSON.parse(chart['data']))
|
||||||
title: formattedData['content'],
|
return {
|
||||||
description: formattedData['description'],
|
title: formattedData['content'],
|
||||||
url: `https://coryd.dev/now?ts=${existingRecord['week']}#artists`,
|
description: formattedData['description'],
|
||||||
date: existingRecord['date']
|
url: `https://coryd.dev/now?ts=${chart['week']}#artists`,
|
||||||
}]
|
date: chart['date']
|
||||||
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fetch the listens data for the past week
|
// Fetch the listens data for the past week
|
||||||
|
@ -99,12 +101,24 @@ export default async function() {
|
||||||
.insert([{ week: weekNumber, date: now.toISODate(), data: JSON.stringify(topArtists) }])
|
.insert([{ week: weekNumber, date: now.toISODate(), data: JSON.stringify(topArtists) }])
|
||||||
if (insertError) throw insertError
|
if (insertError) throw insertError
|
||||||
const formattedData = formatData(topArtists)
|
const formattedData = formatData(topArtists)
|
||||||
return [{
|
const recentChartData = recentCharts.map(chart => {
|
||||||
title: formattedData['content'],
|
const formattedData = formatData(JSON.parse(chart['data']))
|
||||||
description: formattedData['description'],
|
return {
|
||||||
url: `https://coryd.dev/now?ts=${weekNumber}#artists`,
|
title: formattedData['content'],
|
||||||
date: now.toISODate()
|
description: formattedData['description'],
|
||||||
}]
|
url: `https://coryd.dev/now?ts=${chart['week']}#artists`,
|
||||||
|
date: chart['date']
|
||||||
|
}
|
||||||
|
})
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
title: formattedData['content'],
|
||||||
|
description: formattedData['description'],
|
||||||
|
url: `https://coryd.dev/now?ts=${weekNumber}#artists`,
|
||||||
|
date: now.toISODate()
|
||||||
|
},
|
||||||
|
...recentChartData
|
||||||
|
]
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Error:', error.message)
|
console.error('Error:', error.message)
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue