koel/resources/assets/js/components/artist/ArtistContextMenu.vue
2022-04-25 19:13:18 +03:00

49 lines
1.6 KiB
Vue

<template>
<ContextMenuBase extra-class="artist-menu" ref="base" data-testid="artist-context-menu">
<template v-if="artist">
<li data-test="play" @click="play">Play All</li>
<li data-test="shuffle" @click="shuffle">Shuffle All</li>
<template v-if="isStandardArtist">
<li class="separator"></li>
<li data-test="view-artist" @click="viewArtistDetails">Go to Artist</li>
</template>
<template v-if="isStandardArtist && allowDownload">
<li class="separator"></li>
<li data-test="download" @click="download">Download</li>
</template>
</template>
</ContextMenuBase>
</template>
<script lang="ts" setup>
import { computed, Ref, toRef } from 'vue'
import { artistStore, commonStore } from '@/stores'
import { downloadService, playbackService } from '@/services'
import { useContextMenu } from '@/composables'
import router from '@/router'
const { context, base, ContextMenuBase, open, close } = useContextMenu()
const artist = toRef(context, 'artist') as Ref<Artist>
const allowDownload = toRef(commonStore.state, 'allowDownload')
const isStandardArtist = computed(() =>
!artistStore.isUnknownArtist(artist.value)
&& !artistStore.isVariousArtists(artist.value)
)
const play = () => playbackService.playAllByArtist(artist.value)
const shuffle = () => playbackService.playAllByArtist(artist.value, true /* shuffled */)
const viewArtistDetails = () => {
router.go(`artist/${artist.value.id}`)
close()
}
const download = () => {
downloadService.fromArtist(artist.value)
close()
}
defineExpose({ open, close })
</script>