Playlists.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. <template>
  2. <div>
  3. <metadata title="Admin | Playlists" />
  4. <div class="container">
  5. <button
  6. class="button is-primary"
  7. @click="deleteOrphanedStationPlaylists()"
  8. >
  9. Delete orphaned station playlists
  10. </button>
  11. <button
  12. class="button is-primary"
  13. @click="deleteOrphanedGenrePlaylists()"
  14. >
  15. Delete orphaned genre playlists
  16. </button>
  17. <button
  18. class="button is-primary"
  19. @click="requestOrphanedPlaylistSongs()"
  20. >
  21. Request orphaned playlist songs
  22. </button>
  23. <button
  24. class="button is-primary"
  25. @click="clearAndRefillAllStationPlaylists()"
  26. >
  27. Clear and refill all station playlists
  28. </button>
  29. <button
  30. class="button is-primary"
  31. @click="clearAndRefillAllGenrePlaylists()"
  32. >
  33. Clear and refill all genre playlists
  34. </button>
  35. <br />
  36. <br />
  37. <table class="table is-striped">
  38. <thead>
  39. <tr>
  40. <td>Display name</td>
  41. <td>Type</td>
  42. <td>Is user modifiable</td>
  43. <td>Songs #</td>
  44. <td>Playlist length</td>
  45. <td>Created by</td>
  46. <td>Created at</td>
  47. <td>Created for</td>
  48. <td>Playlist id</td>
  49. <td>Options</td>
  50. </tr>
  51. </thead>
  52. <tbody>
  53. <tr v-for="playlist in playlists" :key="playlist._id">
  54. <td>{{ playlist.displayName }}</td>
  55. <td>{{ playlist.type }}</td>
  56. <td>{{ playlist.isUserModifiable }}</td>
  57. <td>{{ playlist.songs.length }}</td>
  58. <td>{{ totalLengthForPlaylist(playlist.songs) }}</td>
  59. <td v-if="playlist.createdBy === 'Musare'">Musare</td>
  60. <td v-else>
  61. <user-id-to-username
  62. :user-id="playlist.createdBy"
  63. :link="true"
  64. />
  65. </td>
  66. <td :title="new Date(playlist.createdAt)">
  67. {{ getDateFormatted(playlist.createdAt) }}
  68. </td>
  69. <td>{{ playlist.createdFor }}</td>
  70. <td>{{ playlist._id }}</td>
  71. <td>
  72. <button
  73. class="button is-primary"
  74. @click="edit(playlist._id)"
  75. >
  76. View
  77. </button>
  78. </td>
  79. </tr>
  80. </tbody>
  81. </table>
  82. </div>
  83. <edit-playlist v-if="modals.editPlaylist" sector="admin" />
  84. <report v-if="modals.report" />
  85. <edit-song v-if="modals.editSong" song-type="songs" />
  86. </div>
  87. </template>
  88. <script>
  89. import { mapState, mapActions, mapGetters } from "vuex";
  90. import Toast from "toasters";
  91. import UserIdToUsername from "@/components/UserIdToUsername.vue";
  92. import ws from "@/ws";
  93. import utils from "../../../../js/utils";
  94. export default {
  95. components: {
  96. EditPlaylist: () => import("@/components/modals/EditPlaylist.vue"),
  97. UserIdToUsername,
  98. Report: () => import("@/components/modals/Report.vue"),
  99. EditSong: () => import("@/components/modals/EditSong.vue")
  100. },
  101. data() {
  102. return {
  103. utils,
  104. playlists: []
  105. };
  106. },
  107. computed: {
  108. ...mapState("modalVisibility", {
  109. modals: state => state.modals
  110. }),
  111. ...mapGetters({
  112. socket: "websockets/getSocket"
  113. })
  114. },
  115. mounted() {
  116. if (this.socket.readyState === 1) this.init();
  117. ws.onConnect(() => this.init());
  118. },
  119. methods: {
  120. edit(playlistId) {
  121. this.editPlaylist(playlistId);
  122. this.openModal("editPlaylist");
  123. },
  124. init() {
  125. this.socket.dispatch("playlists.index", res => {
  126. if (res.status === "success") {
  127. this.playlists = res.data.playlists;
  128. // if (this.$route.query.userId) {
  129. // const user = this.users.find(
  130. // user => user._id === this.$route.query.userId
  131. // );
  132. // if (user) this.edit(user);
  133. // }
  134. }
  135. });
  136. this.socket.dispatch("apis.joinAdminRoom", "playlists", () => {});
  137. },
  138. getDateFormatted(createdAt) {
  139. const date = new Date(createdAt);
  140. const year = date.getFullYear();
  141. const month = `${date.getMonth() + 1}`.padStart(2, 0);
  142. const day = `${date.getDate()}`.padStart(2, 0);
  143. const hour = `${date.getHours()}`.padStart(2, 0);
  144. const minute = `${date.getMinutes()}`.padStart(2, 0);
  145. return `${year}-${month}-${day} ${hour}:${minute}`;
  146. },
  147. totalLengthForPlaylist(songs) {
  148. let length = 0;
  149. songs.forEach(song => {
  150. length += song.duration;
  151. });
  152. return this.utils.formatTimeLong(length);
  153. },
  154. deleteOrphanedStationPlaylists() {
  155. this.socket.dispatch(
  156. "playlists.deleteOrphanedStationPlaylists",
  157. res => {
  158. if (res.status === "success") new Toast(res.message);
  159. else new Toast(`Error: ${res.message}`);
  160. }
  161. );
  162. },
  163. deleteOrphanedGenrePlaylists() {
  164. this.socket.dispatch(
  165. "playlists.deleteOrphanedGenrePlaylists",
  166. res => {
  167. if (res.status === "success") new Toast(res.message);
  168. else new Toast(`Error: ${res.message}`);
  169. }
  170. );
  171. },
  172. requestOrphanedPlaylistSongs() {
  173. this.socket.dispatch(
  174. "playlists.requestOrphanedPlaylistSongs",
  175. res => {
  176. if (res.status === "success") new Toast(res.message);
  177. else new Toast(`Error: ${res.message}`);
  178. }
  179. );
  180. },
  181. clearAndRefillAllStationPlaylists() {
  182. this.socket.dispatch(
  183. "playlists.clearAndRefillAllStationPlaylists",
  184. res => {
  185. if (res.status === "success")
  186. new Toast({ content: res.message, timeout: 4000 });
  187. else
  188. new Toast({
  189. content: `Error: ${res.message}`,
  190. timeout: 4000
  191. });
  192. }
  193. );
  194. },
  195. clearAndRefillAllGenrePlaylists() {
  196. this.socket.dispatch(
  197. "playlists.clearAndRefillAllGenrePlaylists",
  198. res => {
  199. if (res.status === "success")
  200. new Toast({ content: res.message, timeout: 4000 });
  201. else
  202. new Toast({
  203. content: `Error: ${res.message}`,
  204. timeout: 4000
  205. });
  206. }
  207. );
  208. },
  209. ...mapActions("modalVisibility", ["openModal"]),
  210. ...mapActions("user/playlists", ["editPlaylist"])
  211. }
  212. };
  213. </script>
  214. <style lang="scss" scoped>
  215. .night-mode {
  216. .table {
  217. color: var(--light-grey-2);
  218. background-color: var(--dark-grey-3);
  219. thead tr {
  220. background: var(--dark-grey-3);
  221. td {
  222. color: var(--white);
  223. }
  224. }
  225. tbody tr:hover {
  226. background-color: var(--dark-grey-4) !important;
  227. }
  228. tbody tr:nth-child(even) {
  229. background-color: var(--dark-grey-2);
  230. }
  231. strong {
  232. color: var(--light-grey-2);
  233. }
  234. }
  235. }
  236. body {
  237. font-family: "Hind", sans-serif;
  238. }
  239. td {
  240. vertical-align: middle;
  241. }
  242. .is-primary:focus {
  243. background-color: var(--primary-color) !important;
  244. }
  245. </style>