chore: pull month cart data
This commit is contained in:
parent
ca38137099
commit
c57386411d
3 changed files with 4 additions and 0 deletions
|
@ -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')
|
||||
|
|
1
src/_data/json/scrobbles-month-chart.json
Normal file
1
src/_data/json/scrobbles-month-chart.json
Normal file
File diff suppressed because one or more lines are too long
|
@ -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)
|
||||
|
|
Reference in a new issue