editSong.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /* eslint no-param-reassign: 0 */
  2. export default {
  3. namespaced: true,
  4. state: {
  5. video: {
  6. player: null,
  7. paused: true,
  8. playerReady: false,
  9. autoPlayed: false,
  10. currentTime: 0
  11. },
  12. songId: null,
  13. song: {},
  14. originalSong: {},
  15. reports: [],
  16. tab: "discogs",
  17. newSong: false
  18. },
  19. getters: {},
  20. actions: {
  21. showTab: ({ commit }, tab) => commit("showTab", tab),
  22. editSong: ({ commit }, song) => commit("editSong", song),
  23. setSong: ({ commit }, song) => commit("setSong", song),
  24. updateOriginalSong: ({ commit }, song) =>
  25. commit("updateOriginalSong", song),
  26. resetSong: ({ commit }, songId) => commit("resetSong", songId),
  27. stopVideo: ({ commit }) => commit("stopVideo"),
  28. loadVideoById: ({ commit }, id, skipDuration) =>
  29. commit("loadVideoById", id, skipDuration),
  30. pauseVideo: ({ commit }, status) => commit("pauseVideo", status),
  31. getCurrentTime: ({ commit, state }, fixedVal) =>
  32. new Promise(resolve => {
  33. commit("getCurrentTime", fixedVal);
  34. resolve(state.video.currentTime);
  35. }),
  36. updateSongField: ({ commit }, data) => commit("updateSongField", data),
  37. selectDiscogsInfo: ({ commit }, discogsInfo) =>
  38. commit("selectDiscogsInfo", discogsInfo),
  39. updateReports: ({ commit }, reports) =>
  40. commit("updateReports", reports),
  41. resolveReport: ({ commit }, reportId) =>
  42. commit("resolveReport", reportId),
  43. updateYoutubeId: ({ commit }, youtubeId) => {
  44. commit("updateYoutubeId", youtubeId);
  45. commit("loadVideoById", youtubeId, 0);
  46. }
  47. },
  48. mutations: {
  49. showTab(state, tab) {
  50. state.tab = tab;
  51. },
  52. editSong(state, song) {
  53. state.newSong = !!song.newSong;
  54. state.songId = song.newSong ? null : song.songId;
  55. state.prefillData = song.prefill ? song.prefill : {};
  56. },
  57. setSong(state, song) {
  58. if (song.discogs === undefined) song.discogs = null;
  59. state.originalSong = JSON.parse(JSON.stringify(song));
  60. state.song = { ...song };
  61. },
  62. updateOriginalSong(state, song) {
  63. state.originalSong = JSON.parse(JSON.stringify(song));
  64. },
  65. resetSong(state, songId) {
  66. if (state.songId === songId) state.songId = "";
  67. if (state.song && state.song._id === songId) state.song = {};
  68. if (state.originalSong && state.originalSong._id === songId)
  69. state.originalSong = {};
  70. },
  71. stopVideo(state) {
  72. state.video.player.stopVideo();
  73. },
  74. loadVideoById(state, id, skipDuration) {
  75. state.song.duration = -1;
  76. state.video.player.loadVideoById(id, skipDuration);
  77. },
  78. pauseVideo(state, status) {
  79. if (status) state.video.player.pauseVideo();
  80. else state.video.player.playVideo();
  81. state.video.paused = status;
  82. },
  83. getCurrentTime(state, fixedVal) {
  84. if (!state.playerReady) state.video.currentTime = 0;
  85. else {
  86. Promise.resolve(state.video.player.getCurrentTime()).then(
  87. time => {
  88. if (fixedVal)
  89. Promise.resolve(time.toFixed(fixedVal)).then(
  90. fixedTime => {
  91. state.video.currentTime = fixedTime;
  92. }
  93. );
  94. else state.video.currentTime = time;
  95. }
  96. );
  97. }
  98. },
  99. updateSongField(state, data) {
  100. state.song[data.field] = data.value;
  101. },
  102. selectDiscogsInfo(state, discogsInfo) {
  103. state.song.discogs = discogsInfo;
  104. },
  105. updateReports(state, reports) {
  106. state.reports = reports;
  107. },
  108. resolveReport(state, reportId) {
  109. state.reports = state.reports.filter(
  110. report => report._id !== reportId
  111. );
  112. },
  113. updateYoutubeId(state, youtubeId) {
  114. state.song.youtubeId = youtubeId;
  115. }
  116. }
  117. };