AddToPlaylistDropdown.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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="index"
  29. @click.prevent="toggleSongInPlaylist(index, playlist._id)"
  30. :title="playlist.displayName"
  31. >
  32. <p class="control is-expanded checkbox-control">
  33. <input
  34. type="checkbox"
  35. :id="index"
  36. v-model="playlist.hasSong"
  37. />
  38. <label :for="index">
  39. <span></span>
  40. <p>{{ playlist.displayName }}</p>
  41. </label>
  42. </p>
  43. </button>
  44. </div>
  45. <p v-else>You haven't created any playlists.</p>
  46. </tippy>
  47. </template>
  48. <script>
  49. import { mapGetters } from "vuex";
  50. import Toast from "toasters";
  51. export default {
  52. props: {
  53. song: {
  54. type: Object,
  55. default: () => {}
  56. },
  57. placement: {
  58. type: String,
  59. default: "left"
  60. }
  61. },
  62. data() {
  63. return {
  64. playlists: []
  65. };
  66. },
  67. computed: mapGetters({
  68. socket: "websockets/getSocket"
  69. }),
  70. mounted() {
  71. this.socket.dispatch("playlists.indexMyPlaylists", false, res => {
  72. if (res.status === "success") {
  73. this.playlists = res.data;
  74. this.checkIfPlaylistsHaveSong();
  75. }
  76. });
  77. this.socket.on("event:songs.next", () => {
  78. this.checkIfPlaylistsHaveSong();
  79. });
  80. this.socket.on("event:playlist.create", playlist => {
  81. this.playlists.push(playlist);
  82. });
  83. this.socket.on("event:playlist.delete", playlistId => {
  84. this.playlists.forEach((playlist, index) => {
  85. if (playlist._id === playlistId) {
  86. this.playlists.splice(index, 1);
  87. }
  88. });
  89. });
  90. this.socket.on("event:playlist.updateDisplayName", data => {
  91. this.playlists.forEach((playlist, index) => {
  92. if (playlist._id === data.playlistId) {
  93. this.playlists[index].displayName = data.displayName;
  94. }
  95. });
  96. });
  97. },
  98. methods: {
  99. toggleSongInPlaylist(index, playlistId) {
  100. if (!this.playlists[index].hasSong) {
  101. this.socket.dispatch(
  102. "playlists.addSongToPlaylist",
  103. false,
  104. this.song.songId,
  105. playlistId,
  106. res => {
  107. new Toast({ content: res.message, timeout: 4000 });
  108. if (res.status === "success") {
  109. this.playlists[index].songs.push(this.song);
  110. this.playlists[index].hasSong = true;
  111. }
  112. }
  113. );
  114. } else {
  115. this.socket.dispatch(
  116. "playlists.removeSongFromPlaylist",
  117. this.song.songId,
  118. playlistId,
  119. res => {
  120. new Toast({ content: res.message, timeout: 4000 });
  121. if (res.status === "success") {
  122. this.playlists[index].songs.forEach(
  123. (song, songIndex) => {
  124. if (song.songId === this.song.songId)
  125. this.playlists[index].songs.splice(
  126. songIndex,
  127. 1
  128. );
  129. }
  130. );
  131. this.playlists[index].hasSong = false;
  132. }
  133. }
  134. );
  135. }
  136. },
  137. checkIfPlaylistsHaveSong() {
  138. this.playlists.forEach((playlist, index) => {
  139. let hasSong = false;
  140. for (let song = 0; song < playlist.songs.length; song += 1) {
  141. if (playlist.songs[song].songId === this.song.songId)
  142. hasSong = true;
  143. }
  144. this.$set(this.playlists[index], "hasSong", hasSong);
  145. });
  146. }
  147. }
  148. };
  149. </script>