Playlists.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  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 draggable from "vuedraggable";
  86. import { mapActions, mapState, mapGetters } from "vuex";
  87. import PlaylistItem from "@/components/PlaylistItem.vue";
  88. import SortablePlaylists from "@/mixins/SortablePlaylists.vue";
  89. import ws from "@/ws";
  90. export default {
  91. components: {
  92. PlaylistItem,
  93. draggable,
  94. CreatePlaylist: () => import("@/components/modals/CreatePlaylist.vue")
  95. },
  96. mixins: [SortablePlaylists],
  97. props: {
  98. userId: {
  99. type: String,
  100. default: ""
  101. },
  102. username: {
  103. type: String,
  104. default: ""
  105. }
  106. },
  107. computed: {
  108. ...mapState({
  109. ...mapState("modalVisibility", {
  110. modals: state => state.modals
  111. }),
  112. myUserId: state => state.user.auth.userId
  113. }),
  114. playlists: {
  115. get() {
  116. return this.$store.state.user.playlists.playlists;
  117. },
  118. set(playlists) {
  119. this.$store.commit("user/playlists/setPlaylists", playlists);
  120. }
  121. },
  122. ...mapGetters({
  123. socket: "websockets/getSocket"
  124. })
  125. },
  126. mounted() {
  127. if (
  128. this.$route.query.tab === "recent-activity" ||
  129. this.$route.query.tab === "playlists"
  130. )
  131. this.tab = this.$route.query.tab;
  132. if (this.myUserId !== this.userId) {
  133. ws.onConnect(() =>
  134. this.socket.dispatch(
  135. "apis.joinRoom",
  136. `profile-${this.userId}-playlists`,
  137. () => {}
  138. )
  139. );
  140. }
  141. this.socket.dispatch("playlists.indexForUser", this.userId, res => {
  142. if (res.status === "success") this.setPlaylists(res.data.playlists);
  143. this.orderOfPlaylists = this.calculatePlaylistOrder(); // order in regards to the database
  144. });
  145. this.socket.on("event:playlist.create", res => {
  146. this.playlists.push(res.data.playlist);
  147. });
  148. this.socket.on("event:playlist.delete", res => {
  149. this.playlists.forEach((playlist, index) => {
  150. if (playlist._id === res.data.playlistId) {
  151. this.playlists.splice(index, 1);
  152. }
  153. });
  154. });
  155. this.socket.on("event:playlist.addSong", res => {
  156. this.playlists.forEach((playlist, index) => {
  157. if (playlist._id === res.data.playlistId) {
  158. this.playlists[index].songs.push(res.data.song);
  159. }
  160. });
  161. });
  162. this.socket.on("event:playlist.removeSong", res => {
  163. this.playlists.forEach((playlist, index) => {
  164. if (playlist._id === res.data.playlistId) {
  165. this.playlists[index].songs.forEach((song, index2) => {
  166. if (song.youtubeId === res.data.youtubeId) {
  167. this.playlists[index].songs.splice(index2, 1);
  168. }
  169. });
  170. }
  171. });
  172. });
  173. this.socket.on("event:playlist.updateDisplayName", res => {
  174. this.playlists.forEach((playlist, index) => {
  175. if (playlist._id === res.data.playlistId) {
  176. this.playlists[index].displayName = res.data.displayName;
  177. }
  178. });
  179. });
  180. this.socket.on("event:playlist.updatePrivacy", res => {
  181. this.playlists.forEach((playlist, index) => {
  182. if (playlist._id === res.data.playlist._id) {
  183. this.playlists[index].privacy = res.data.playlist.privacy;
  184. }
  185. });
  186. });
  187. this.socket.on("event:user.orderOfPlaylists.changed", res => {
  188. const sortedPlaylists = [];
  189. this.playlists.forEach(playlist => {
  190. sortedPlaylists[
  191. res.data.order.indexOf(playlist._id)
  192. ] = playlist;
  193. });
  194. this.playlists = sortedPlaylists;
  195. this.orderOfPlaylists = this.calculatePlaylistOrder();
  196. });
  197. },
  198. methods: {
  199. showPlaylist(playlistId) {
  200. this.editPlaylist(playlistId);
  201. this.openModal("editPlaylist");
  202. },
  203. ...mapActions("modalVisibility", ["openModal"]),
  204. ...mapActions("user/playlists", ["editPlaylist", "setPlaylists"])
  205. }
  206. };
  207. </script>