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'
export default async function () {
const API_KEY_MUSIC = process.env.API_KEY_MUSIC;
const url = `https://coryd.dev/api/music?key=${API_KEY_MUSIC}`;
const res = EleventyFetch(url, {
duration: '1h',
type: 'json',
}).catch();
const resObj = await res;
return buildChart(resObj['scrobbles'], resObj['artists'], resObj['albums'], resObj['nowPlaying'])
}
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)
}

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)
}