koel/resources/assets/js/components/playlist/PlaylistContextMenu.vue

77 lines
2.5 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
<ContextMenuBase ref="base">
<li @click="play">Play</li>
<li @click="shuffle">Shuffle</li>
<li @click="addToQueue">Add to Queue</li>
2024-01-24 22:39:47 +00:00
<template v-if="canShowCollaboration">
2024-01-18 11:13:05 +00:00
<li class="separator"></li>
2024-01-24 22:39:47 +00:00
<li @click="showCollaborationModal">Collaborate</li>
2024-01-18 11:13:05 +00:00
<li class="separator"></li>
</template>
<li v-if="ownedByCurrentUser" @click="edit">Edit</li>
<li v-if="ownedByCurrentUser" @click="destroy">Delete</li>
2022-04-24 08:29:14 +00:00
</ContextMenuBase>
2022-04-15 14:24:30 +00:00
</template>
2022-04-15 17:00:08 +00:00
<script lang="ts" setup>
2024-01-18 11:13:05 +00:00
import { computed, ref } from 'vue'
import { copyText, eventBus } from '@/utils'
import { useAuthorization, useContextMenu, useMessageToaster, useKoelPlus, useRouter } from '@/composables'
import { playbackService, playlistCollaborationService } from '@/services'
import { songStore, queueStore } from '@/stores'
2022-04-15 14:24:30 +00:00
2022-12-02 16:17:37 +00:00
const { base, ContextMenuBase, open, trigger } = useContextMenu()
const { go } = useRouter()
const { toastWarning, toastSuccess } = useMessageToaster()
2024-01-18 11:13:05 +00:00
const { isPlus } = useKoelPlus()
const { currentUser } = useAuthorization()
const playlist = ref<Playlist>()
2022-04-15 14:24:30 +00:00
2024-01-18 11:13:05 +00:00
const ownedByCurrentUser = computed(() => playlist.value?.user_id === currentUser.value?.id)
2024-01-24 22:39:47 +00:00
const canShowCollaboration = computed(() => isPlus.value && !playlist.value?.is_smart)
2024-01-18 11:13:05 +00:00
const edit = () => trigger(() => eventBus.emit('MODAL_SHOW_EDIT_PLAYLIST_FORM', playlist.value!))
const destroy = () => trigger(() => eventBus.emit('PLAYLIST_DELETE', playlist.value!))
const play = () => trigger(async () => {
const songs = await songStore.fetchForPlaylist(playlist.value!)
if (songs.length) {
playbackService.queueAndPlay(songs)
go('queue')
} else {
toastWarning('The playlist is empty.')
}
})
const shuffle = () => trigger(async () => {
const songs = await songStore.fetchForPlaylist(playlist.value!)
if (songs.length) {
playbackService.queueAndPlay(songs, true)
go('queue')
} else {
toastWarning('The playlist is empty.')
}
})
const addToQueue = () => trigger(async () => {
const songs = await songStore.fetchForPlaylist(playlist.value!)
if (songs.length) {
queueStore.queueAfterCurrent(songs)
toastSuccess('Playlist added to queue.')
} else {
toastWarning('The playlist is empty.')
}
})
2024-01-24 22:39:47 +00:00
const showCollaborationModal = () => trigger(() => eventBus.emit('MODAL_SHOW_PLAYLIST_COLLABORATION', playlist.value!))
2024-01-18 11:13:05 +00:00
2024-01-24 22:39:47 +00:00
eventBus.on('PLAYLIST_CONTEXT_MENU_REQUESTED', async ({ pageX, pageY }, _playlist) => {
playlist.value = _playlist
2024-01-24 22:39:47 +00:00
await open(pageY, pageX)
})
2022-04-15 14:24:30 +00:00
</script>