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

27 lines
722 B
JavaScript
Raw Normal View History

2016-06-25 10:15:57 +00:00
import { http, albumInfo, artistInfo } from '..';
2016-06-05 11:29:49 +00:00
2016-06-25 10:15:57 +00:00
export const songInfo = {
2016-06-25 16:05:24 +00:00
/**
* Get extra song information (lyrics, artist info, album info).
*
* @param {Object} song
*/
2016-06-27 06:11:35 +00:00
fetch(song) {
return new Promise((resolve, reject) => {
// Check if the song's info has been retrieved before.
if (song.infoRetrieved) {
resolve(song);
return;
}
2016-06-05 11:29:49 +00:00
http.get(`${song.id}/info`, data => {
song.lyrics = data.lyrics;
data.artist_info && artistInfo.merge(song.artist, data.artist_info);
data.album_info && albumInfo.merge(song.album, data.album_info);
2016-06-27 06:11:35 +00:00
song.infoRetrieved = true;
resolve(song);
2016-06-27 06:11:35 +00:00
}, r => reject(r));
2016-06-25 16:05:24 +00:00
});
},
2016-06-05 11:29:49 +00:00
};