123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- <script setup lang="ts">
- import { ref, onMounted } from "vue";
- import Toast from "toasters";
- import { storeToRefs } from "pinia";
- import { useWebsocketsStore } from "@/stores/websockets";
- import { useUserPlaylistsStore } from "@/stores/userPlaylists";
- import { useModalsStore } from "@/stores/modals";
- const props = defineProps({
- song: {
- type: Object,
- default: () => {}
- },
- placement: {
- type: String,
- default: "left"
- }
- });
- const emit = defineEmits(["showPlaylistDropdown"]);
- const dropdown = ref(null);
- const { socket } = useWebsocketsStore();
- const userPlaylistsStore = useUserPlaylistsStore();
- const { playlists, fetchedPlaylists } = storeToRefs(userPlaylistsStore);
- const { setPlaylists, addPlaylist, removePlaylist } = userPlaylistsStore;
- const { openModal } = useModalsStore();
- const init = () => {
- if (!fetchedPlaylists.value)
- socket.dispatch("playlists.indexMyPlaylists", res => {
- if (res.status === "success")
- if (!fetchedPlaylists.value) setPlaylists(res.data.playlists);
- });
- };
- const hasSong = playlist =>
- playlist.songs.map(song => song.youtubeId).indexOf(props.song.youtubeId) !==
- -1;
- const toggleSongInPlaylist = playlistIndex => {
- const playlist = playlists.value[playlistIndex];
- if (!hasSong(playlist)) {
- socket.dispatch(
- "playlists.addSongToPlaylist",
- false,
- props.song.youtubeId,
- playlist._id,
- res => new Toast(res.message)
- );
- } else {
- socket.dispatch(
- "playlists.removeSongFromPlaylist",
- props.song.youtubeId,
- playlist._id,
- res => new Toast(res.message)
- );
- }
- };
- const createPlaylist = () => {
- dropdown.value.tippy.setProps({
- zIndex: 0,
- hideOnClick: false
- });
- window.addToPlaylistDropdown = dropdown.value;
- openModal("createPlaylist");
- };
- onMounted(() => {
- socket.onConnect(init);
- socket.on("event:playlist.created", res => addPlaylist(res.data.playlist), {
- replaceable: true
- });
- socket.on(
- "event:playlist.deleted",
- res => removePlaylist(res.data.playlistId),
- { replaceable: true }
- );
- socket.on(
- "event:playlist.displayName.updated",
- res => {
- playlists.value.forEach((playlist, index) => {
- if (playlist._id === res.data.playlistId) {
- playlists.value[index].displayName = res.data.displayName;
- }
- });
- },
- { replaceable: true }
- );
- });
- </script>
- <template>
- <tippy
- class="addToPlaylistDropdown"
- :touch="true"
- :interactive="true"
- :placement="placement"
- theme="dropdown"
- ref="dropdown"
- trigger="click"
- append-to="parent"
- @show="emit('showPlaylistDropdown', true)"
- @hide="emit('showPlaylistDropdown', false)"
- >
- <slot name="button" ref="trigger" />
- <template #content>
- <div class="nav-dropdown-items" v-if="playlists.length > 0">
- <button
- class="nav-item"
- v-for="(playlist, index) in playlists"
- :key="playlist._id"
- @click.prevent="toggleSongInPlaylist(index)"
- :title="playlist.displayName"
- >
- <p class="control is-expanded checkbox-control">
- <label class="switch">
- <input
- type="checkbox"
- :id="`${index}`"
- :checked="hasSong(playlist)"
- @click="toggleSongInPlaylist(index)"
- />
- <span class="slider round"></span>
- </label>
- <label :for="`${index}`">
- <span></span>
- <p>{{ playlist.displayName }}</p>
- </label>
- </p>
- </button>
- </div>
- <p v-else class="no-playlists">
- You haven't created any playlists.
- </p>
- <button
- id="create-playlist"
- class="button is-primary"
- @click="createPlaylist()"
- >
- <i class="material-icons icon-with-button"> edit </i>
- Create Playlist
- </button>
- </template>
- </tippy>
- </template>
- <style lang="less" scoped>
- .no-playlists {
- text-align: center;
- margin-top: 10px;
- }
- #create-playlist .material-icons {
- color: var(--white);
- }
- </style>
|