mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
49 lines
1.8 KiB
Vue
49 lines
1.8 KiB
Vue
<template>
|
|
<ContextMenuBase extra-class="artist-menu" ref="base" data-testid="artist-context-menu">
|
|
<template v-if="artist">
|
|
<li data-testid="play" @click="play">Play All</li>
|
|
<li data-testid="shuffle" @click="shuffle">Shuffle All</li>
|
|
<template v-if="isStandardArtist">
|
|
<li class="separator"></li>
|
|
<li data-testid="view-artist" @click="viewArtistDetails">Go to Artist</li>
|
|
</template>
|
|
<template v-if="isStandardArtist && allowDownload">
|
|
<li class="separator"></li>
|
|
<li data-testid="download" @click="download">Download</li>
|
|
</template>
|
|
</template>
|
|
</ContextMenuBase>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, ref, toRef } from 'vue'
|
|
import { artistStore, commonStore, songStore } from '@/stores'
|
|
import { downloadService, playbackService } from '@/services'
|
|
import { useContextMenu } from '@/composables'
|
|
import router from '@/router'
|
|
import { eventBus } from '@/utils'
|
|
|
|
const { context, base, ContextMenuBase, open, trigger } = useContextMenu()
|
|
|
|
const artist = ref<Artist>()
|
|
const allowDownload = toRef(commonStore.state, 'allow_download')
|
|
|
|
const isStandardArtist = computed(() =>
|
|
!artistStore.isUnknown(artist.value)
|
|
&& !artistStore.isVarious(artist.value)
|
|
)
|
|
|
|
const play = () => trigger(async () => playbackService.queueAndPlay(await songStore.fetchForArtist(artist.value)))
|
|
|
|
const shuffle = () => {
|
|
trigger(async () => playbackService.queueAndPlay(await songStore.fetchForArtist(artist.value), true))
|
|
}
|
|
|
|
const viewArtistDetails = () => trigger(() => router.go(`artist/${artist.value.id}`))
|
|
const download = () => trigger(() => downloadService.fromArtist(artist.value))
|
|
|
|
eventBus.on('ARTIST_CONTEXT_MENU_REQUESTED', async (e: MouseEvent, _artist: Artist) => {
|
|
artist.value = _artist
|
|
open(e.pageY, e.pageX, { _artist })
|
|
})
|
|
</script>
|