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

49 lines
1.1 KiB
JavaScript
Raw Normal View History

2016-06-05 11:29:49 +00:00
import { each } from 'lodash';
2016-06-25 05:24:55 +00:00
import { secondsToHis } from '../../utils';
2016-06-25 10:15:57 +00:00
import { http } from '..';
2016-06-05 11:29:49 +00:00
2016-06-25 10:15:57 +00:00
export const albumInfo = {
2016-06-25 16:05:24 +00:00
/**
* Get extra album info (from Last.fm).
*
* @param {Object} album
*/
2016-06-27 06:11:35 +00:00
fetch(album) {
return new Promise((resolve, reject) => {
if (album.info) {
resolve(album);
return;
2016-06-25 16:05:24 +00:00
}
2016-06-27 06:11:35 +00:00
http.get(`album/${album.id}/info`, r => {
r.data && this.merge(album, r.data);
resolve(album);
}, r => reject(r));
2016-06-25 16:05:24 +00:00
});
},
/**
* Merge the (fetched) info into an album.
*
* @param {Object} album
* @param {Object} info
*/
merge(album, info) {
// Convert the duration into i:s
info.tracks && each(info.tracks, track => track.fmtLength = secondsToHis(track.length));
// If the album cover is not in a nice form, discard.
if (typeof info.image !== 'string') {
info.image = null;
}
// Set the album cover on the client side to the retrieved image from server.
if (info.cover) {
album.cover = info.cover;
}
album.info = info;
},
2016-06-05 11:29:49 +00:00
};