2022-04-15 14:24:30 +00:00
|
|
|
<template>
|
2022-09-08 05:06:49 +00:00
|
|
|
<ContextMenuBase ref="base">
|
2022-12-07 14:11:40 +00:00
|
|
|
<li @click="play">Play</li>
|
|
|
|
<li @click="shuffle">Shuffle</li>
|
2024-01-16 22:24:15 +00:00
|
|
|
<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'
|
2024-01-16 22:24:15 +00:00
|
|
|
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()
|
2022-12-07 14:11:40 +00:00
|
|
|
const { go } = useRouter()
|
2024-01-16 22:24:15 +00:00
|
|
|
const { toastWarning, toastSuccess } = useMessageToaster()
|
2024-01-18 11:13:05 +00:00
|
|
|
const { isPlus } = useKoelPlus()
|
|
|
|
const { currentUser } = useAuthorization()
|
2022-12-07 14:11:40 +00:00
|
|
|
|
2022-09-08 05:06:49 +00:00
|
|
|
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
|
|
|
|
2022-12-07 14:11:40 +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.')
|
|
|
|
}
|
|
|
|
})
|
2022-04-20 10:35:36 +00:00
|
|
|
|
2024-01-16 22:24:15 +00:00
|
|
|
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) => {
|
2022-11-15 15:52:38 +00:00
|
|
|
playlist.value = _playlist
|
2024-01-24 22:39:47 +00:00
|
|
|
await open(pageY, pageX)
|
2022-09-08 05:06:49 +00:00
|
|
|
})
|
2022-04-15 14:24:30 +00:00
|
|
|
</script>
|