Playlists.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <template>
  2. <div class="content playlists-tab">
  3. <create-playlist v-if="modals.createPlaylist" />
  4. <div v-if="playlists.length > 0">
  5. <h4 class="section-title">
  6. {{ myUserId === userId ? "My" : null }}
  7. Playlists
  8. </h4>
  9. <p class="section-description">
  10. View
  11. {{
  12. userId === myUserId
  13. ? "and manage your personal"
  14. : `${username}'s`
  15. }}
  16. playlists.
  17. </p>
  18. <hr class="section-horizontal-rule" />
  19. <draggable
  20. class="menu-list scrollable-list"
  21. v-if="playlists.length > 0"
  22. v-model="playlists"
  23. v-bind="dragOptions"
  24. @start="drag = true"
  25. @end="drag = false"
  26. @change="savePlaylistOrder"
  27. >
  28. <transition-group
  29. type="transition"
  30. :name="!drag ? 'draggable-list-transition' : null"
  31. >
  32. <div
  33. :class="{
  34. item: true,
  35. 'item-draggable': myUserId === userId
  36. }"
  37. v-for="playlist in playlists"
  38. :key="playlist._id"
  39. >
  40. <playlist-item
  41. v-if="
  42. playlist.privacy === 'public' ||
  43. (playlist.privacy === 'private' &&
  44. playlist.createdBy === userId)
  45. "
  46. :playlist="playlist"
  47. >
  48. <div slot="actions">
  49. <i
  50. v-if="myUserId === userId"
  51. @click="showPlaylist(playlist._id)"
  52. class="material-icons edit-icon"
  53. content="Edit Playlist"
  54. v-tippy
  55. >edit</i
  56. >
  57. <i
  58. v-else
  59. @click="showPlaylist(playlist._id)"
  60. class="material-icons view-icon"
  61. content="View Playlist"
  62. v-tippy
  63. >visibility</i
  64. >
  65. </div>
  66. </playlist-item>
  67. </div>
  68. </transition-group>
  69. </draggable>
  70. <button
  71. v-if="myUserId === userId"
  72. class="button is-primary"
  73. id="create-new-playlist-button"
  74. @click="openModal('createPlaylist')"
  75. >
  76. Create new playlist
  77. </button>
  78. </div>
  79. <div v-else>
  80. <h3>No playlists here.</h3>
  81. </div>
  82. </div>
  83. </template>
  84. <script>
  85. import { mapActions, mapState, mapGetters } from "vuex";
  86. import PlaylistItem from "@/components/PlaylistItem.vue";
  87. import SortablePlaylists from "@/mixins/SortablePlaylists.vue";
  88. import ws from "@/ws";
  89. export default {
  90. components: {
  91. PlaylistItem,
  92. CreatePlaylist: () => import("@/components/modals/CreatePlaylist.vue")
  93. },
  94. mixins: [SortablePlaylists],
  95. props: {
  96. userId: {
  97. type: String,
  98. default: ""
  99. },
  100. username: {
  101. type: String,
  102. default: ""
  103. }
  104. },
  105. computed: {
  106. ...mapState({
  107. ...mapState("modalVisibility", {
  108. modals: state => state.modals
  109. })
  110. }),
  111. ...mapGetters({
  112. socket: "websockets/getSocket"
  113. })
  114. },
  115. mounted() {
  116. if (
  117. this.$route.query.tab === "recent-activity" ||
  118. this.$route.query.tab === "playlists"
  119. )
  120. this.tab = this.$route.query.tab;
  121. if (this.myUserId !== this.userId) {
  122. ws.onConnect(() =>
  123. this.socket.dispatch(
  124. "apis.joinRoom",
  125. `profile-${this.userId}-playlists`,
  126. () => {}
  127. )
  128. );
  129. }
  130. this.socket.dispatch("playlists.indexForUser", this.userId, res => {
  131. if (res.status === "success") this.setPlaylists(res.data.playlists);
  132. this.orderOfPlaylists = this.calculatePlaylistOrder(); // order in regards to the database
  133. });
  134. },
  135. methods: {
  136. showPlaylist(playlistId) {
  137. this.editPlaylist(playlistId);
  138. this.openModal("editPlaylist");
  139. },
  140. ...mapActions("modalVisibility", ["openModal"]),
  141. ...mapActions("user/playlists", ["editPlaylist", "setPlaylists"])
  142. }
  143. };
  144. </script>