modalVisibility.js 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /* eslint no-param-reassign: 0 */
  2. import ws from "@/ws";
  3. import editUser from "./modals/editUser";
  4. import whatIsNew from "./modals/whatIsNew";
  5. import createStation from "./modals/createStation";
  6. import editNews from "./modals/editNews";
  7. import manageStation from "./modals/manageStation";
  8. import importPlaylist from "./modals/importPlaylist";
  9. const state = {
  10. modals: {
  11. editPlaylist: false,
  12. createPlaylist: false,
  13. report: false,
  14. removeAccount: false,
  15. editSong: false,
  16. editSongs: false,
  17. importAlbum: false,
  18. viewReport: false,
  19. viewPunishment: false,
  20. confirm: false,
  21. editSongConfirm: false,
  22. editSongsConfirm: false,
  23. bulkActions: false
  24. },
  25. currentlyActive: [],
  26. new: {
  27. activeModals: [],
  28. modalMap: {}
  29. }
  30. };
  31. const modalModules = {
  32. editUser,
  33. whatIsNew,
  34. createStation,
  35. editNews,
  36. manageStation,
  37. importPlaylist
  38. };
  39. const migratedModules = {
  40. whatIsNew: true,
  41. manageStation: true,
  42. login: true,
  43. register: true,
  44. createStation: true,
  45. importPlaylist: true,
  46. editPlaylist: false,
  47. createPlaylist: false,
  48. report: false,
  49. removeAccount: false,
  50. editNews: true,
  51. editSong: false,
  52. editSongs: false,
  53. editUser: true,
  54. importAlbum: false,
  55. viewReport: false,
  56. viewPunishment: false,
  57. confirm: false,
  58. editSongConfirm: false,
  59. editSongsConfirm: false,
  60. bulkActions: false
  61. };
  62. const getters = {};
  63. const actions = {
  64. closeModal: ({ commit }, modal) => {
  65. if (modal === "register")
  66. lofig.get("recaptcha.enabled").then(enabled => {
  67. if (enabled) window.location.reload();
  68. });
  69. commit("closeModal", modal);
  70. },
  71. openModal: ({ commit }, dataOrModal) =>
  72. new Promise(resolve => {
  73. const uuid = "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(
  74. /[xy]/g,
  75. symbol => {
  76. let array;
  77. if (symbol === "y") {
  78. array = ["8", "9", "a", "b"];
  79. return array[Math.floor(Math.random() * array.length)];
  80. }
  81. array = new Uint8Array(1);
  82. window.crypto.getRandomValues(array);
  83. return (array[0] % 16).toString(16);
  84. }
  85. );
  86. if (typeof dataOrModal === "string")
  87. commit("openModal", { modal: dataOrModal, uuid });
  88. else commit("openModal", { ...dataOrModal, uuid });
  89. resolve({ uuid });
  90. }),
  91. closeCurrentModal: ({ commit }) => {
  92. commit("closeCurrentModal");
  93. }
  94. };
  95. const mutations = {
  96. closeModal(state, modal) {
  97. if (!migratedModules[modal]) {
  98. state.modals[modal] = false;
  99. const index = state.currentlyActive.indexOf(modal);
  100. if (index > -1) state.currentlyActive.splice(index, 1);
  101. } else {
  102. Object.entries(state.new.modalMap).forEach(([uuid, _modal]) => {
  103. if (modal === _modal) {
  104. state.new.activeModals.splice(
  105. state.new.activeModals.indexOf(uuid),
  106. 1
  107. );
  108. state.currentlyActive.splice(
  109. state.currentlyActive.indexOf(`${modal}-${uuid}`),
  110. 1
  111. );
  112. delete state.new.modalMap[uuid];
  113. }
  114. });
  115. }
  116. },
  117. openModal(state, { modal, uuid, data }) {
  118. if (!migratedModules[modal]) {
  119. state.modals[modal] = true;
  120. state.currentlyActive.push(modal);
  121. } else {
  122. state.new.modalMap[uuid] = modal;
  123. if (modalModules[modal]) {
  124. this.registerModule(
  125. ["modals", modal, uuid],
  126. modalModules[modal]
  127. );
  128. if (data) this.dispatch(`modals/${modal}/${uuid}/init`, data);
  129. }
  130. state.new.activeModals.push(uuid);
  131. state.currentlyActive.push(`${modal}-${uuid}`);
  132. }
  133. },
  134. closeCurrentModal(state) {
  135. const currentlyActiveModal =
  136. state.currentlyActive[state.currentlyActive.length - 1];
  137. // TODO: make sure to only destroy/register modal listeners for a unique modal
  138. // remove any websocket listeners for the modal
  139. ws.destroyModalListeners(currentlyActiveModal);
  140. if (
  141. !migratedModules[
  142. currentlyActiveModal.substring(
  143. 0,
  144. currentlyActiveModal.indexOf("-")
  145. )
  146. ]
  147. ) {
  148. state.modals[currentlyActiveModal] = false;
  149. state.currentlyActive.pop();
  150. } else {
  151. state.currentlyActive.pop();
  152. state.new.activeModals.pop();
  153. // const modal = currentlyActiveModal.substring(
  154. // 0,
  155. // currentlyActiveModal.indexOf("-")
  156. // );
  157. const uuid = currentlyActiveModal.substring(
  158. currentlyActiveModal.indexOf("-") + 1
  159. );
  160. delete state.new.modalMap[uuid];
  161. }
  162. }
  163. };
  164. export default {
  165. namespaced: true,
  166. state,
  167. getters,
  168. actions,
  169. mutations
  170. };