chore: debug
This commit is contained in:
parent
825762a469
commit
1e249af415
2 changed files with 7 additions and 20 deletions
|
@ -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'])
|
|
||||||
}
|
|
|
@ -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)
|
|
||||||
}
|
|
Reference in a new issue