koel/resources/assets/js/stores/playlist.js

84 lines
1.9 KiB
JavaScript
Raw Normal View History

2015-12-13 04:42:28 +00:00
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.
*
2015-12-22 17:46:54 +00:00
* return {Array}
2015-12-13 04:42:28 +00:00
*/
getSongs(playlist) {
2015-12-14 13:13:12 +00:00
return (playlist.songs = songStore.byIds(playlist.songs));
2015-12-13 04:42:28 +00:00
},
store(name, songs, cb = null) {
http.post('playlist', { name, songs }, playlist => {
2015-12-14 04:29:16 +00:00
playlist.songs = songs;
2015-12-13 04:42:28 +00:00
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();
}
});
},
};