mirror of
https://github.com/koel/koel
synced 2024-12-21 18:13:13 +00:00
170 lines
3.7 KiB
JavaScript
170 lines
3.7 KiB
JavaScript
import {
|
|
each,
|
|
map,
|
|
difference,
|
|
union,
|
|
without
|
|
} from 'lodash';
|
|
import NProgress from 'nprogress';
|
|
|
|
import http from '../services/http';
|
|
import stub from '../stubs/playlist';
|
|
import songStore from './song';
|
|
|
|
export default {
|
|
stub,
|
|
|
|
state: {
|
|
playlists: [],
|
|
},
|
|
|
|
init(playlists) {
|
|
this.all = playlists;
|
|
each(this.all, this.getSongs);
|
|
},
|
|
|
|
/**
|
|
* All playlists of the current user.
|
|
*
|
|
* @return {Array.<Object>}
|
|
*/
|
|
get all() {
|
|
return this.state.playlists;
|
|
},
|
|
|
|
/**
|
|
* Set all playlists.
|
|
*
|
|
* @param {Array.<Object>} value
|
|
*/
|
|
set all(value) {
|
|
this.state.playlists = value;
|
|
},
|
|
|
|
/**
|
|
* Get all songs in a playlist.
|
|
*
|
|
* return {Array.<Object>}
|
|
*/
|
|
getSongs(playlist) {
|
|
return (playlist.songs = songStore.byIds(playlist.songs));
|
|
},
|
|
|
|
/**
|
|
* Add a playlist/playlists into the store.
|
|
*
|
|
* @param {Array.<Object>|Object} playlists
|
|
*/
|
|
add(playlists) {
|
|
this.all = union(this.all, [].concat(playlists));
|
|
},
|
|
|
|
/**
|
|
* Remove a playlist/playlists from the store.
|
|
*
|
|
* @param {Array.<Object>|Object} playlist
|
|
*/
|
|
remove(playlists) {
|
|
this.all = difference(this.all, [].concat(playlists));
|
|
},
|
|
|
|
/**
|
|
* Create a new playlist, optionally with its songs.
|
|
*
|
|
* @param {String} name Name of the playlist
|
|
* @param {Array.<Object>} songs An array of song objects
|
|
* @param {?Function} cb
|
|
*/
|
|
store(name, songs, cb = null) {
|
|
if (songs.length) {
|
|
// Extract the IDs from the song objects.
|
|
songs = map(songs, 'id');
|
|
}
|
|
|
|
NProgress.start();
|
|
|
|
http.post('playlist', { name, songs }, response => {
|
|
const playlist = response.data;
|
|
playlist.songs = songs;
|
|
this.getSongs(playlist);
|
|
this.add(playlist);
|
|
|
|
if (cb) {
|
|
cb();
|
|
}
|
|
});
|
|
},
|
|
|
|
/**
|
|
* Delete a playlist.
|
|
*
|
|
* @param {Object} playlist
|
|
* @param {?Function} cb
|
|
*/
|
|
delete(playlist, cb = null) {
|
|
NProgress.start();
|
|
|
|
http.delete(`playlist/${playlist.id}`, {}, () => {
|
|
this.remove(playlist);
|
|
|
|
if (cb) {
|
|
cb();
|
|
}
|
|
});
|
|
},
|
|
|
|
/**
|
|
* Add songs into a playlist.
|
|
*
|
|
* @param {Object} playlist
|
|
* @param {Array.<Object>} songs
|
|
* @param {?Function} cb
|
|
*/
|
|
addSongs(playlist, songs, cb = null) {
|
|
const count = playlist.songs.length;
|
|
playlist.songs = union(playlist.songs, songs);
|
|
|
|
if (count === playlist.songs.length) {
|
|
return;
|
|
}
|
|
|
|
http.put(`playlist/${playlist.id}/sync`, { songs: map(playlist.songs, 'id') }, () => {
|
|
if (cb) {
|
|
cb();
|
|
}
|
|
});
|
|
},
|
|
|
|
/**
|
|
* Remove songs from a playlist.
|
|
*
|
|
* @param {Object} playlist
|
|
* @param {Array.<Object>} songs
|
|
* @param {?Function} cb
|
|
*/
|
|
removeSongs(playlist, songs, cb = null) {
|
|
playlist.songs = difference(playlist.songs, songs);
|
|
|
|
http.put(`playlist/${playlist.id}/sync`, { songs: map(playlist.songs, 'id') }, () => {
|
|
if (cb) {
|
|
cb();
|
|
}
|
|
});
|
|
},
|
|
|
|
/**
|
|
* Update a playlist (just change its name).
|
|
*
|
|
* @param {Object} playlist
|
|
* @param {?Function} cb
|
|
*/
|
|
update(playlist, cb = null) {
|
|
NProgress.start();
|
|
|
|
http.put(`playlist/${playlist.id}`, { name: playlist.name }, () => {
|
|
if (cb) {
|
|
cb();
|
|
}
|
|
});
|
|
},
|
|
};
|