admin.js 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. /* eslint no-param-reassign: 0 */
  2. const state = {};
  3. const getters = {};
  4. const actions = {};
  5. const mutations = {};
  6. const modules = {
  7. songs: {
  8. namespaced: true,
  9. state: {
  10. video: {
  11. player: null,
  12. paused: true,
  13. playerReady: false,
  14. autoPlayed: false,
  15. currentTime: 0
  16. },
  17. editing: {},
  18. songs: []
  19. },
  20. getters: {},
  21. actions: {
  22. editSong: ({ commit }, song) => commit("editSong", song),
  23. stopVideo: ({ commit }) => commit("stopVideo"),
  24. loadVideoById: ({ commit }, id, skipDuration) =>
  25. commit("loadVideoById", id, skipDuration),
  26. pauseVideo: ({ commit }, status) => commit("pauseVideo", status),
  27. getCurrentTime: ({ commit, state }, fixedVal) => {
  28. return new Promise(resolve => {
  29. commit("getCurrentTime", fixedVal);
  30. resolve(state.video.currentTime);
  31. });
  32. },
  33. addSong: ({ commit }, song) => commit("addSong", song),
  34. removeSong: ({ commit }, songId) => commit("removeSong", songId),
  35. updateSong: ({ commit }, updatedSong) =>
  36. commit("updateSong", updatedSong)
  37. },
  38. mutations: {
  39. editSong(state, song) {
  40. state.editing = { ...song };
  41. },
  42. stopVideo(state) {
  43. state.video.player.stopVideo();
  44. },
  45. loadVideoById(state, id, skipDuration) {
  46. state.video.player.loadVideoById(id, skipDuration);
  47. },
  48. pauseVideo(state, status) {
  49. if (status) state.video.player.pauseVideo();
  50. else state.video.player.playVideo();
  51. state.video.paused = status;
  52. },
  53. getCurrentTime(state, fixedVal) {
  54. if (!state.playerReady) state.video.currentTime = 0;
  55. else {
  56. Promise.resolve(state.video.player.getCurrentTime()).then(
  57. time => {
  58. if (fixedVal)
  59. Promise.resolve(time.toFixed(fixedVal)).then(
  60. fixedTime => {
  61. state.video.currentTime = fixedTime;
  62. }
  63. );
  64. else state.video.currentTime = time;
  65. }
  66. );
  67. }
  68. },
  69. addSong(state, song) {
  70. state.songs.push(song);
  71. },
  72. removeSong(state, songId) {
  73. state.songs = state.songs.filter(song => {
  74. return song._id !== songId;
  75. });
  76. },
  77. updateSong(state, updatedSong) {
  78. state.songs.forEach((song, index) => {
  79. if (song._id === updatedSong._id)
  80. state.songs.$set(index, updatedSong);
  81. });
  82. }
  83. }
  84. },
  85. stations: {
  86. namespaced: true,
  87. state: {
  88. station: {},
  89. editing: {}
  90. },
  91. getters: {},
  92. actions: {
  93. editStation: ({ commit }, station) => commit("editStation", station)
  94. },
  95. mutations: {
  96. editStation(state, station) {
  97. state.station = station;
  98. state.editing = JSON.parse(JSON.stringify(station));
  99. }
  100. }
  101. },
  102. reports: {
  103. namespaced: true,
  104. state: {
  105. report: {}
  106. },
  107. getters: {},
  108. actions: {
  109. viewReport: ({ commit }, report) => commit("viewReport", report)
  110. },
  111. mutations: {
  112. viewReport(state, report) {
  113. state.report = report;
  114. }
  115. }
  116. },
  117. punishments: {
  118. namespaced: true,
  119. state: {
  120. punishment: {}
  121. },
  122. getters: {},
  123. actions: {
  124. viewPunishment: ({ commit }, punishment) =>
  125. commit("viewPunishment", punishment)
  126. },
  127. mutations: {
  128. viewPunishment(state, punishment) {
  129. state.punishment = punishment;
  130. }
  131. }
  132. },
  133. users: {
  134. namespaced: true,
  135. state: {
  136. editing: {}
  137. },
  138. getters: {},
  139. actions: {
  140. editUser: ({ commit }, user) => commit("editUser", user)
  141. },
  142. mutations: {
  143. editUser(state, user) {
  144. state.editing = user;
  145. }
  146. }
  147. },
  148. news: {
  149. namespaced: true,
  150. state: {
  151. editing: {}
  152. },
  153. getters: {},
  154. actions: {
  155. editNews: ({ commit }, news) => commit("editNews", news),
  156. addNews: ({ commit }, type, change) =>
  157. commit("addChange", type, change),
  158. removeChange: ({ commit }, type, index) =>
  159. commit("removeChange", type, index)
  160. },
  161. mutations: {
  162. editNews(state, news) {
  163. state.editing = news;
  164. },
  165. addChange(state, type, change) {
  166. state.editing[type].push(change);
  167. },
  168. removeChange(state, type, index) {
  169. state.editing[type].splice(index, 1);
  170. }
  171. }
  172. }
  173. };
  174. export default {
  175. namespaced: true,
  176. state,
  177. getters,
  178. actions,
  179. mutations,
  180. modules
  181. };