koel/resources/assets/js/stores/playlist.js
2015-12-23 01:46:54 +08:00

83 lines
1.9 KiB
JavaScript

import _ from 'lodash';
import http from '../services/http';
import stub from '../stubs/playlist';
import sharedStore from './shared';
import songStore from './song';
export default {
stub,
state: {
playlists: [],
},
init() {
this.state.playlists = sharedStore.state.playlists;
_.each(this.state.playlists, this.getSongs);
},
all() {
return this.state.playlists;
},
/**
* Get all songs in a playlist.
*
* return {Array}
*/
getSongs(playlist) {
return (playlist.songs = songStore.byIds(playlist.songs));
},
store(name, songs, cb = null) {
http.post('playlist', { name, songs }, playlist => {
playlist.songs = songs;
this.getSongs(playlist);
this.state.playlists.push(playlist);
if (cb) {
cb();
}
});
},
delete(playlist, cb = null) {
http.delete(`playlist/${playlist.id}`, {}, () => {
this.state.playlists = _.without(this.state.playlists, playlist);
if (cb) {
cb();
}
});
},
addSongs(playlist, songs, cb = null) {
playlist.songs = _.union(playlist.songs, songs);
http.put(`playlist/${playlist.id}/sync`, { songs: _.pluck(playlist.songs, 'id') }, () => {
if (cb) {
cb();
}
});
},
removeSongs(playlist, songs, cb = null) {
playlist.songs = _.difference(playlist.songs, songs);
http.put(`playlist/${playlist.id}/sync`, { songs: _.pluck(playlist.songs, 'id') }, () => {
if (cb) {
cb();
}
});
},
update(playlist, cb = null) {
http.put(`playlist/${playlist.id}`, { name: playlist.name }, () => {
if (cb) {
cb();
}
});
},
};