editPlaylist.js 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* eslint no-param-reassign: 0 */
  2. export default {
  3. namespaced: true,
  4. state: {
  5. playlistId: null,
  6. tab: "settings",
  7. playlist: { songs: [] }
  8. },
  9. getters: {},
  10. actions: {
  11. init: ({ commit }, data) => commit("init", data),
  12. showTab: ({ commit }, tab) => commit("showTab", tab),
  13. setPlaylist: ({ commit }, playlist) => commit("setPlaylist", playlist),
  14. clearPlaylist: ({ commit }) => commit("clearPlaylist"),
  15. addSong: ({ commit }, song) => commit("addSong", song),
  16. removeSong: ({ commit }, youtubeId) => commit("removeSong", youtubeId),
  17. updatePlaylistSongs: ({ commit }, playlistSongs) =>
  18. commit("updatePlaylistSongs", playlistSongs),
  19. repositionedSong: ({ commit }, song) => commit("repositionedSong", song)
  20. },
  21. mutations: {
  22. init(state, { playlistId }) {
  23. state.playlistId = playlistId;
  24. },
  25. showTab(state, tab) {
  26. state.tab = tab;
  27. },
  28. setPlaylist(state, playlist) {
  29. state.playlist = { ...playlist };
  30. state.playlist.songs.sort((a, b) => a.position - b.position);
  31. },
  32. clearPlaylist(state) {
  33. state.playlist = { songs: [] };
  34. },
  35. addSong(state, song) {
  36. state.playlist.songs.push(song);
  37. },
  38. removeSong(state, youtubeId) {
  39. state.playlist.songs = state.playlist.songs.filter(
  40. song => song.youtubeId !== youtubeId
  41. );
  42. },
  43. updatePlaylistSongs(state, playlistSongs) {
  44. state.playlist.songs = playlistSongs;
  45. },
  46. repositionedSong(state, song) {
  47. if (
  48. state.playlist.songs[song.newIndex] &&
  49. state.playlist.songs[song.newIndex].youtubeId === song.youtubeId
  50. )
  51. return;
  52. state.playlist.songs.splice(
  53. song.newIndex,
  54. 0,
  55. state.playlist.songs.splice(song.oldIndex, 1)[0]
  56. );
  57. }
  58. }
  59. };