admin.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. const state = {};
  2. const getters = {};
  3. const actions = {};
  4. const mutations = {};
  5. const modules = {
  6. songs: {
  7. namespaced: true,
  8. state: {
  9. video: {
  10. player: null,
  11. paused: true,
  12. playerReady: false,
  13. autoPlayed: false,
  14. currentTime: 0
  15. },
  16. editing: {}
  17. },
  18. getters: {},
  19. actions: {
  20. editSong: ({ commit }, song) => commit("editSong", song),
  21. stopVideo: ({ commit }) => commit("stopVideo"),
  22. loadVideoById: ({ commit }, id, skipDuration) =>
  23. commit("loadVideoById", id, skipDuration),
  24. pauseVideo: ({ commit }, status) => commit("pauseVideo", status),
  25. getCurrentTime: ({ commit, state }, fixedVal) => {
  26. return new Promise(resolve => {
  27. commit("getCurrentTime", fixedVal);
  28. resolve(state.video.currentTime);
  29. });
  30. }
  31. },
  32. mutations: {
  33. editSong(state, song) {
  34. state.editing = { ...song };
  35. },
  36. stopVideo(state) {
  37. state.video.player.stopVideo();
  38. },
  39. loadVideoById(state, id, skipDuration) {
  40. state.video.player.loadVideoById(id, skipDuration);
  41. },
  42. pauseVideo(state, status) {
  43. if (status) state.video.player.pauseVideo();
  44. else state.video.player.playVideo();
  45. state.video.paused = status;
  46. },
  47. getCurrentTime(state, fixedVal) {
  48. Promise.resolve(state.video.player.getCurrentTime()).then(
  49. time => {
  50. if (fixedVal)
  51. Promise.resolve(time.toFixed(fixedVal)).then(
  52. fixedTime => {
  53. state.video.currentTime = fixedTime;
  54. }
  55. );
  56. else state.video.currentTime = time;
  57. }
  58. );
  59. }
  60. }
  61. },
  62. stations: {
  63. namespaced: true,
  64. state: {
  65. station: {},
  66. editing: {}
  67. },
  68. getters: {},
  69. actions: {
  70. editStation: ({ commit }, station) => commit("editStation", station)
  71. },
  72. mutations: {
  73. editStation(state, station) {
  74. state.editing = state.station = station;
  75. }
  76. }
  77. },
  78. punishments: {
  79. namespaced: true,
  80. state: {
  81. punishment: {}
  82. },
  83. getters: {},
  84. actions: {
  85. viewPunishment: ({ commit }, punishment) =>
  86. commit("viewPunishment", punishment)
  87. },
  88. mutations: {
  89. viewPunishment(state, punishment) {
  90. state.punishment = punishment;
  91. }
  92. }
  93. },
  94. users: {
  95. namespaced: true,
  96. state: {
  97. editing: {}
  98. },
  99. getters: {},
  100. actions: {
  101. editUser: ({ commit }, user) => commit("editUser", user)
  102. },
  103. mutations: {
  104. editUser(state, user) {
  105. state.editing = user;
  106. }
  107. }
  108. }
  109. };
  110. export default {
  111. namespaced: true,
  112. state,
  113. getters,
  114. actions,
  115. mutations,
  116. modules
  117. };