AddToPlaylistDropdown.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <template>
  2. <tippy
  3. class="addToPlaylistDropdown"
  4. interactive="true"
  5. :placement="placement"
  6. theme="addToPlaylist"
  7. trigger="click"
  8. append-to="parent"
  9. @show="
  10. () => {
  11. $parent.showPlaylistDropdown = true;
  12. }
  13. "
  14. @hide="
  15. () => {
  16. $parent.showPlaylistDropdown = false;
  17. }
  18. "
  19. >
  20. <template #trigger>
  21. <slot name="button" />
  22. </template>
  23. <div class="nav-dropdown-items" v-if="playlists.length > 0">
  24. <button
  25. class="nav-item"
  26. href="#"
  27. v-for="(playlist, index) in playlists"
  28. :key="playlist._id"
  29. @click.prevent="toggleSongInPlaylist(index)"
  30. :title="playlist.displayName"
  31. >
  32. <p class="control is-expanded checkbox-control">
  33. <input
  34. type="checkbox"
  35. :id="index"
  36. :checked="hasSong(playlist)"
  37. @click="toggleSongInPlaylist(index)"
  38. />
  39. <label :for="index">
  40. <span></span>
  41. <p>{{ playlist.displayName }}</p>
  42. </label>
  43. </p>
  44. </button>
  45. </div>
  46. <p v-else>You haven't created any playlists.</p>
  47. </tippy>
  48. </template>
  49. <script>
  50. import { mapGetters, mapState, mapActions } from "vuex";
  51. import Toast from "toasters";
  52. export default {
  53. props: {
  54. song: {
  55. type: Object,
  56. default: () => {}
  57. },
  58. placement: {
  59. type: String,
  60. default: "left"
  61. }
  62. },
  63. computed: {
  64. ...mapGetters({
  65. socket: "websockets/getSocket"
  66. }),
  67. ...mapState({
  68. fetchedPlaylists: state => state.user.playlists.fetchedPlaylists
  69. }),
  70. playlists: {
  71. get() {
  72. return this.$store.state.user.playlists.playlists;
  73. },
  74. set(playlists) {
  75. this.$store.commit("user/playlists/setPlaylists", playlists);
  76. }
  77. }
  78. },
  79. mounted() {
  80. if (!this.fetchedPlaylists)
  81. this.socket.dispatch("playlists.indexMyPlaylists", false, res => {
  82. if (res.status === "success")
  83. this.setPlaylists(res.data.playlists);
  84. });
  85. this.socket.on(
  86. "event:playlist.created",
  87. res => this.playlists.push(res.data.playlist),
  88. { replaceable: true }
  89. );
  90. this.socket.on(
  91. "event:playlist.deleted",
  92. res => {
  93. this.playlists.forEach((playlist, index) => {
  94. if (playlist._id === res.data.playlistId) {
  95. this.playlists.splice(index, 1);
  96. }
  97. });
  98. },
  99. { replaceable: true }
  100. );
  101. this.socket.on(
  102. "event:playlist.displayName.updated",
  103. res => {
  104. this.playlists.forEach((playlist, index) => {
  105. if (playlist._id === res.data.playlistId) {
  106. this.playlists[index].displayName =
  107. res.data.displayName;
  108. }
  109. });
  110. },
  111. { replaceable: true }
  112. );
  113. },
  114. methods: {
  115. toggleSongInPlaylist(playlistIndex) {
  116. const playlist = this.playlists[playlistIndex];
  117. if (!this.hasSong(playlist)) {
  118. this.socket.dispatch(
  119. "playlists.addSongToPlaylist",
  120. false,
  121. this.song.youtubeId,
  122. playlist._id,
  123. res => {
  124. new Toast(res.message);
  125. if (res.status === "success") {
  126. this.playlists[playlistIndex].songs.push(this.song);
  127. }
  128. }
  129. );
  130. } else {
  131. this.socket.dispatch(
  132. "playlists.removeSongFromPlaylist",
  133. this.song.youtubeId,
  134. playlist._id,
  135. res => {
  136. new Toast(res.message);
  137. if (res.status === "success") {
  138. this.playlists[playlistIndex].songs.forEach(
  139. (song, songIndex) => {
  140. if (song.youtubeId === this.song.youtubeId)
  141. this.playlists[
  142. playlistIndex
  143. ].songs.splice(songIndex, 1);
  144. }
  145. );
  146. }
  147. }
  148. );
  149. }
  150. },
  151. hasSong(playlist) {
  152. return (
  153. playlist.songs.map(song => song._id).indexOf(this.song._id) !==
  154. -1
  155. );
  156. },
  157. ...mapActions("user/playlists", ["setPlaylists"])
  158. }
  159. };
  160. </script>