123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <template>
- <tippy
- class="addToPlaylistDropdown"
- interactive="true"
- :placement="placement"
- theme="addToPlaylist"
- trigger="click"
- append-to="parent"
- @show="
- () => {
- $parent.showPlaylistDropdown = true;
- }
- "
- @hide="
- () => {
- $parent.showPlaylistDropdown = false;
- }
- "
- >
- <template #trigger>
- <slot name="button" />
- </template>
- <div class="nav-dropdown-items" v-if="playlists.length > 0">
- <button
- class="nav-item"
- href="#"
- v-for="(playlist, index) in playlists"
- :key="index"
- @click.prevent="toggleSongInPlaylist(index, playlist._id)"
- :title="playlist.displayName"
- >
- <p class="control is-expanded checkbox-control">
- <input
- type="checkbox"
- :id="index"
- v-model="playlist.hasSong"
- />
- <label :for="index">
- <span></span>
- <p>{{ playlist.displayName }}</p>
- </label>
- </p>
- </button>
- </div>
- <p v-else>You haven't created any playlists.</p>
- </tippy>
- </template>
- <script>
- import { mapGetters } from "vuex";
- import Toast from "toasters";
- export default {
- props: {
- song: {
- type: Object,
- default: () => {}
- },
- placement: {
- type: String,
- default: "left"
- }
- },
- data() {
- return {
- playlists: []
- };
- },
- computed: mapGetters({
- socket: "websockets/getSocket"
- }),
- mounted() {
- this.socket.dispatch("playlists.indexMyPlaylists", false, res => {
- if (res.status === "success") {
- this.playlists = res.data;
- this.checkIfPlaylistsHaveSong();
- }
- });
- this.socket.on("event:songs.next", () => {
- this.checkIfPlaylistsHaveSong();
- });
- this.socket.on("event:playlist.create", playlist => {
- this.playlists.push(playlist);
- });
- this.socket.on("event:playlist.delete", playlistId => {
- this.playlists.forEach((playlist, index) => {
- if (playlist._id === playlistId) {
- this.playlists.splice(index, 1);
- }
- });
- });
- this.socket.on("event:playlist.updateDisplayName", data => {
- this.playlists.forEach((playlist, index) => {
- if (playlist._id === data.playlistId) {
- this.playlists[index].displayName = data.displayName;
- }
- });
- });
- },
- methods: {
- toggleSongInPlaylist(index, playlistId) {
- if (!this.playlists[index].hasSong) {
- this.socket.dispatch(
- "playlists.addSongToPlaylist",
- false,
- this.song.songId,
- playlistId,
- res => {
- new Toast({ content: res.message, timeout: 4000 });
- if (res.status === "success") {
- this.playlists[index].songs.push(this.song);
- this.playlists[index].hasSong = true;
- }
- }
- );
- } else {
- this.socket.dispatch(
- "playlists.removeSongFromPlaylist",
- this.song.songId,
- playlistId,
- res => {
- new Toast({ content: res.message, timeout: 4000 });
- if (res.status === "success") {
- this.playlists[index].songs.forEach(
- (song, songIndex) => {
- if (song.songId === this.song.songId)
- this.playlists[index].songs.splice(
- songIndex,
- 1
- );
- }
- );
- this.playlists[index].hasSong = false;
- }
- }
- );
- }
- },
- checkIfPlaylistsHaveSong() {
- this.playlists.forEach((playlist, index) => {
- let hasSong = false;
- for (let song = 0; song < playlist.songs.length; song += 1) {
- if (playlist.songs[song].songId === this.song.songId)
- hasSong = true;
- }
- this.$set(this.playlists[index], "hasSong", hasSong);
- });
- }
- }
- };
- </script>
|