koel/resources/assets/js/services/info/song.ts

28 lines
685 B
TypeScript
Raw Normal View History

2022-04-15 14:24:30 +00:00
import { http, albumInfo, artistInfo } from '..'
interface SongInfoResponse {
artist_info: ArtistInfo,
album_info: AlbumInfo,
youtube: {
items: YouTubeVideo[],
nextPageToken: string
},
lyrics: string
}
export const songInfo = {
fetch: async (song: Song): Promise<Song> => {
if (!song.infoRetrieved) {
const { lyrics, artist_info, album_info, youtube } = await http.get<SongInfoResponse>(`song/${song.id}/info`)
song.lyrics = lyrics
artist_info && artistInfo.merge(song.artist, artist_info)
album_info && albumInfo.merge(song.album, album_info)
song.youtube = youtube
song.infoRetrieved = true
}
return song
}
}