2022-04-15 14:24:30 +00:00
|
|
|
<template>
|
2022-07-19 08:19:57 +00:00
|
|
|
<ContextMenuBase ref="base" data-testid="album-context-menu" extra-class="album-menu">
|
2022-04-15 14:24:30 +00:00
|
|
|
<template v-if="album">
|
2022-11-29 10:18:58 +00:00
|
|
|
<li @click="play">Play All</li>
|
|
|
|
<li @click="shuffle">Shuffle All</li>
|
2022-12-02 16:17:37 +00:00
|
|
|
<li class="separator" />
|
2022-11-29 10:18:58 +00:00
|
|
|
<li v-if="isStandardAlbum" @click="viewAlbumDetails">Go to Album</li>
|
|
|
|
<li v-if="isStandardArtist" @click="viewArtistDetails">Go to Artist</li>
|
2022-04-25 16:13:18 +00:00
|
|
|
<template v-if="isStandardAlbum && allowDownload">
|
2022-12-02 16:17:37 +00:00
|
|
|
<li class="separator" />
|
2022-11-29 10:18:58 +00:00
|
|
|
<li @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 { albumStore, artistStore, commonStore, songStore } from '@/stores'
|
2022-04-24 08:50:45 +00:00
|
|
|
import { downloadService, playbackService } from '@/services'
|
2022-11-18 18:44:20 +00:00
|
|
|
import { useContextMenu, useRouter } from '@/composables'
|
|
|
|
import { eventBus } from '@/utils'
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-11-18 18:44:20 +00:00
|
|
|
const { go } = useRouter()
|
2022-12-02 16:17:37 +00:00
|
|
|
const { base, ContextMenuBase, open, trigger } = useContextMenu()
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-07-08 10:32:44 +00:00
|
|
|
const album = ref<Album>()
|
2024-01-04 11:35:36 +00:00
|
|
|
const allowDownload = toRef(commonStore.state, 'allows_download')
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-10-08 10:54:25 +00:00
|
|
|
const isStandardAlbum = computed(() => !albumStore.isUnknown(album.value!))
|
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
|
|
|
return !artistStore.isUnknown(album.value!.artist_id) && !artistStore.isVarious(album.value!.artist_id)
|
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.fetchForAlbum(album.value!))
|
2022-11-18 18:44:20 +00:00
|
|
|
go('queue')
|
2022-10-08 10:54:25 +00:00
|
|
|
})
|
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.fetchForAlbum(album.value!), true)
|
2022-11-18 18:44:20 +00:00
|
|
|
go('queue')
|
2022-10-08 10:54:25 +00:00
|
|
|
})
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-11-18 18:56:21 +00:00
|
|
|
const viewAlbumDetails = () => trigger(() => go(`album/${album.value!.id}`))
|
|
|
|
const viewArtistDetails = () => trigger(() => go(`artist/${album.value!.artist_id}`))
|
2022-10-08 10:54:25 +00:00
|
|
|
const download = () => trigger(() => downloadService.fromAlbum(album.value!))
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2024-01-24 22:39:47 +00:00
|
|
|
eventBus.on('ALBUM_CONTEXT_MENU_REQUESTED', async ({ pageX, pageY }, _album) => {
|
2022-07-08 10:32:44 +00:00
|
|
|
album.value = _album
|
2024-01-24 22:39:47 +00:00
|
|
|
await open(pageY, pageX)
|
2022-07-08 10:32:44 +00:00
|
|
|
})
|
2022-04-15 14:24:30 +00:00
|
|
|
</script>
|