chore: music api
This commit is contained in:
parent
09f7478113
commit
d9fdcad1f1
2 changed files with 11 additions and 0 deletions
|
@ -24,6 +24,7 @@ export default async (request) => {
|
||||||
const albums = getStore('albums')
|
const albums = getStore('albums')
|
||||||
const artistsMap = await artists.get('artists-map', { type: 'json' })
|
const artistsMap = await artists.get('artists-map', { type: 'json' })
|
||||||
const albumsMap = await albums.get('albums-map', { type: 'json' })
|
const albumsMap = await albums.get('albums-map', { type: 'json' })
|
||||||
|
const nowPlaying = await scrobbles.get('now-playing', { type: 'json'})
|
||||||
|
|
||||||
if (week) {
|
if (week) {
|
||||||
const weekData = await scrobbles.get(week, { type: 'json'})
|
const weekData = await scrobbles.get(week, { type: 'json'})
|
||||||
|
@ -35,6 +36,7 @@ export default async (request) => {
|
||||||
|
|
||||||
return new Response(JSON.stringify({
|
return new Response(JSON.stringify({
|
||||||
scrobbles: scrobbleData,
|
scrobbles: scrobbleData,
|
||||||
|
nowPlaying,
|
||||||
artists: artistsMap,
|
artists: artistsMap,
|
||||||
albums: albumsMap
|
albums: albumsMap
|
||||||
}),
|
}),
|
||||||
|
|
9
src/pages/music.liquid
Normal file
9
src/pages/music.liquid
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
---
|
||||||
|
title: Music
|
||||||
|
layout: default
|
||||||
|
permalink: /music.html
|
||||||
|
description: "See what I'm listening to."
|
||||||
|
---
|
||||||
|
{%- assign artist = music.artists | first -%}
|
||||||
|
{%- assign album = music.albums | first -%}
|
||||||
|
Lately I've been listening to a lot of <strong class="highlight-text">{{ artist.title }}</strong>, and the album <strong class="highlight-text">{{ album.title }}</strong>. The last track I listened to was <strong class="highlight-text">{{ music.nowPlaying.track }}</strong> by <strong class="highlight-text">{{ music.nowPlaying.artist }}</strong>.
|
Reference in a new issue