2022-04-15 14:24:30 +00:00
|
|
|
<template>
|
2022-10-08 10:54:25 +00:00
|
|
|
<ContextMenuBase ref="base" data-testid="artist-context-menu" extra-class="artist-menu">
|
2022-04-15 14:24:30 +00:00
|
|
|
<template v-if="artist">
|
2022-05-10 23:01:48 +00:00
|
|
|
<li data-testid="play" @click="play">Play All</li>
|
|
|
|
<li data-testid="shuffle" @click="shuffle">Shuffle All</li>
|
2022-04-15 14:24:30 +00:00
|
|
|
<template v-if="isStandardArtist">
|
|
|
|
<li class="separator"></li>
|
2022-05-10 23:01:48 +00:00
|
|
|
<li data-testid="view-artist" @click="viewArtistDetails">Go to Artist</li>
|
2022-04-15 14:24:30 +00:00
|
|
|
</template>
|
2022-04-25 16:13:18 +00:00
|
|
|
<template v-if="isStandardArtist && allowDownload">
|
2022-04-15 14:24:30 +00:00
|
|
|
<li class="separator"></li>
|
2022-05-10 23:01:48 +00:00
|
|
|
<li data-testid="download" @click="download">Download</li>
|
2022-04-15 14:24:30 +00:00
|
|
|
</template>
|
|
|
|
</template>
|
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>
|
2022-07-08 10:32:44 +00:00
|
|
|
import { computed, ref, toRef } from 'vue'
|
2022-06-10 10:47:46 +00:00
|
|
|
import { artistStore, commonStore, songStore } from '@/stores'
|
2022-04-24 08:50:45 +00:00
|
|
|
import { downloadService, playbackService } from '@/services'
|
2022-04-15 17:00:08 +00:00
|
|
|
import { useContextMenu } from '@/composables'
|
2022-10-08 10:54:25 +00:00
|
|
|
import { RouterKey } from '@/symbols'
|
|
|
|
import { eventBus, requireInjection } from '@/utils'
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-06-10 10:47:46 +00:00
|
|
|
const { context, base, ContextMenuBase, open, trigger } = useContextMenu()
|
2022-10-08 10:54:25 +00:00
|
|
|
const router = requireInjection(RouterKey)
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-07-08 10:32:44 +00:00
|
|
|
const artist = ref<Artist>()
|
2022-06-10 10:47:46 +00:00
|
|
|
const allowDownload = toRef(commonStore.state, 'allow_download')
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-04-15 17:00:08 +00:00
|
|
|
const isStandardArtist = computed(() =>
|
2022-10-08 10:54:25 +00:00
|
|
|
!artistStore.isUnknown(artist.value!)
|
|
|
|
&& !artistStore.isVarious(artist.value!)
|
2022-04-15 17:00:08 +00:00
|
|
|
)
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-10-08 10:54:25 +00:00
|
|
|
const play = () => trigger(async () => {
|
2022-10-21 20:06:43 +00:00
|
|
|
playbackService.queueAndPlay(await songStore.fetchForArtist(artist.value!))
|
2022-10-08 10:54:25 +00:00
|
|
|
router.go('queue')
|
|
|
|
})
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-10-08 10:54:25 +00:00
|
|
|
const shuffle = () => trigger(async () => {
|
2022-10-21 20:06:43 +00:00
|
|
|
playbackService.queueAndPlay(await songStore.fetchForArtist(artist.value!), true)
|
2022-10-08 10:54:25 +00:00
|
|
|
router.go('queue')
|
|
|
|
})
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-10-08 10:54:25 +00:00
|
|
|
const viewArtistDetails = () => trigger(() => router.go(`artist/${artist.value!.id}`))
|
|
|
|
const download = () => trigger(() => downloadService.fromArtist(artist.value!))
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-07-08 10:32:44 +00:00
|
|
|
eventBus.on('ARTIST_CONTEXT_MENU_REQUESTED', async (e: MouseEvent, _artist: Artist) => {
|
|
|
|
artist.value = _artist
|
2022-09-08 05:06:49 +00:00
|
|
|
await open(e.pageY, e.pageX, { _artist })
|
2022-07-08 10:32:44 +00:00
|
|
|
})
|
2022-04-15 14:24:30 +00:00
|
|
|
</script>
|