123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- <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="playlist._id"
- @click.prevent="toggleSongInPlaylist(index)"
- :title="playlist.displayName"
- >
- <p class="control is-expanded checkbox-control">
- <input
- type="checkbox"
- :id="index"
- :checked="hasSong(playlist)"
- @click="toggleSongInPlaylist(index)"
- />
- <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, mapState, mapActions } from "vuex";
- import Toast from "toasters";
- export default {
- props: {
- song: {
- type: Object,
- default: () => {}
- },
- placement: {
- type: String,
- default: "left"
- }
- },
- computed: {
- ...mapGetters({
- socket: "websockets/getSocket"
- }),
- ...mapState({
- fetchedPlaylists: state => state.user.playlists.fetchedPlaylists
- }),
- playlists: {
- get() {
- return this.$store.state.user.playlists.playlists;
- },
- set(playlists) {
- this.$store.commit("user/playlists/setPlaylists", playlists);
- }
- }
- },
- mounted() {
- if (!this.fetchedPlaylists)
- this.socket.dispatch("playlists.indexMyPlaylists", false, res => {
- if (res.status === "success")
- this.setPlaylists(res.data.playlists);
- });
- this.socket.on(
- "event:playlist.created",
- res => this.playlists.push(res.data.playlist),
- { replaceable: true }
- );
- this.socket.on(
- "event:playlist.deleted",
- res => {
- this.playlists.forEach((playlist, index) => {
- if (playlist._id === res.data.playlistId) {
- this.playlists.splice(index, 1);
- }
- });
- },
- { replaceable: true }
- );
- this.socket.on(
- "event:playlist.displayName.updated",
- res => {
- this.playlists.forEach((playlist, index) => {
- if (playlist._id === res.data.playlistId) {
- this.playlists[index].displayName =
- res.data.displayName;
- }
- });
- },
- { replaceable: true }
- );
- },
- methods: {
- toggleSongInPlaylist(playlistIndex) {
- const playlist = this.playlists[playlistIndex];
- if (!this.hasSong(playlist)) {
- this.socket.dispatch(
- "playlists.addSongToPlaylist",
- false,
- this.song.youtubeId,
- playlist._id,
- res => {
- new Toast(res.message);
- if (res.status === "success") {
- this.playlists[playlistIndex].songs.push(this.song);
- }
- }
- );
- } else {
- this.socket.dispatch(
- "playlists.removeSongFromPlaylist",
- this.song.youtubeId,
- playlist._id,
- res => {
- new Toast(res.message);
- if (res.status === "success") {
- this.playlists[playlistIndex].songs.forEach(
- (song, songIndex) => {
- if (song.youtubeId === this.song.youtubeId)
- this.playlists[
- playlistIndex
- ].songs.splice(songIndex, 1);
- }
- );
- }
- }
- );
- }
- },
- hasSong(playlist) {
- return (
- playlist.songs.map(song => song._id).indexOf(this.song._id) !==
- -1
- );
- },
- ...mapActions("user/playlists", ["setPlaylists"])
- }
- };
- </script>
|