chore: pull month cart data

This commit is contained in:
Cory Dransfeldt 2024-04-04 17:16:25 -07:00
parent ca38137099
commit c57386411d
No known key found for this signature in database
3 changed files with 4 additions and 0 deletions

View file

@ -23,6 +23,7 @@ export const onPreBuild = async ({ constants }) => {
siteID: constants.SITE_ID,
token: constants.NETLIFY_API_TOKEN,
})
const keys = getKeys()
const chartData = { data: [] }
const scrobbles = getStore('scrobbles')

File diff suppressed because one or more lines are too long

View file

@ -3,6 +3,8 @@ import { buildChart } from './helpers/music.js'
export default async function () {
const monthChart = JSON.parse(await readFile('./src/_data/json/scrobbles-month-chart.json', 'utf8'));
const artists = JSON.parse(await readFile('./src/_data/json/artists-map.json', 'utf8'));
const albums = JSON.parse(await readFile('./src/_data/json/albums-map.json', 'utf8'));
console.log(buildChart(monthChart['data'], artists, albums, nowPlaying))
return {
month: buildChart(monthChart['data'], artists, albums, nowPlaying)