chore: debug

This commit is contained in:
Cory Dransfeldt 2024-04-03 20:40:31 -07:00
parent 825762a469
commit 1e249af415
No known key found for this signature in database
2 changed files with 7 additions and 20 deletions

View file

@ -1,13 +1,10 @@
import EleventyFetch from '@11ty/eleventy-fetch'; import { readFile } from 'fs/promises'
import { buildChart } from './helpers/music.js' import { buildChart } from './helpers/music.js'
export default async function () { export default async function () {
const API_KEY_MUSIC = process.env.API_KEY_MUSIC; const window = JSON.parse(await readFile('./src/_data/json/scrobbles-window.json', 'utf8'));
const url = `https://coryd.dev/api/music?key=${API_KEY_MUSIC}`; const artists = JSON.parse(await readFile('./src/_data/json/artists-map.json', 'utf8'));
const res = EleventyFetch(url, { const albums = JSON.parse(await readFile('./src/_data/json/albums-map.json', 'utf8'));
duration: '1h', const nowPlaying = JSON.parse(await readFile('./src/_data/json/now-playing.json', 'utf8'));
type: 'json', return buildChart(window['data'], artists, albums, nowPlaying)
}).catch();
const resObj = await res;
return buildChart(resObj['scrobbles'], resObj['artists'], resObj['albums'], resObj['nowPlaying'])
} }

View file

@ -1,10 +0,0 @@
import { readFile } from 'fs/promises'
import { buildChart } from './helpers/music.js'
export default async function () {
const window = JSON.parse(await readFile('./src/_data/json/scrobbles-window.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'));
const nowPlaying = JSON.parse(await readFile('./src/_data/json/now-playing.json', 'utf8'));
return buildChart(window['data'], artists, albums, nowPlaying)
}