mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
53 lines
1.5 KiB
Vue
53 lines
1.5 KiB
Vue
<template>
|
|
<ContextMenuBase ref="base">
|
|
<li @click="play">Play</li>
|
|
<li @click="shuffle">Shuffle</li>
|
|
<li class="separator" />
|
|
<li @click="edit">Edit…</li>
|
|
<li @click="destroy">Delete</li>
|
|
</ContextMenuBase>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
import { eventBus } from '@/utils'
|
|
import { useContextMenu, useMessageToaster, useRouter } from '@/composables'
|
|
import { playbackService } from '@/services'
|
|
import { songStore } from '@/stores'
|
|
|
|
const { base, ContextMenuBase, open, trigger } = useContextMenu()
|
|
const { go } = useRouter()
|
|
const { toastWarning } = useMessageToaster()
|
|
|
|
const playlist = ref<Playlist>()
|
|
|
|
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.')
|
|
}
|
|
})
|
|
|
|
eventBus.on('PLAYLIST_CONTEXT_MENU_REQUESTED', async (event, _playlist) => {
|
|
playlist.value = _playlist
|
|
await open(event.pageY, event.pageX)
|
|
})
|
|
</script>
|