koel/resources/assets/js/components/album/AlbumCard.vue

63 lines
2.2 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
2024-04-29 19:50:03 +00:00
<BaseCard
v-if="showing"
:entity="album"
:layout="layout"
2024-04-23 21:01:27 +00:00
:title="`${album.name} by ${album.artist_name}`"
@contextmenu="requestContextMenu"
2022-04-15 14:24:30 +00:00
@dblclick="shuffle"
@dragstart="onDragStart"
2022-04-15 14:24:30 +00:00
>
<template #name>
2024-04-04 22:20:42 +00:00
<a :href="`#/album/${album.id}`" class="font-medium" data-testid="name">{{ album.name }}</a>
<a v-if="isStandardArtist" :href="`#/artist/${album.artist_id}`">{{ album.artist_name }}</a>
2024-04-04 22:20:42 +00:00
<span v-else class="text-k-text-secondary">{{ album.artist_name }}</span>
</template>
<template #meta>
2024-04-04 22:20:42 +00:00
<a :title="`Shuffle all songs in the album ${album.name}`" role="button" @click.prevent="shuffle">
Shuffle
</a>
<a
v-if="allowDownload"
:title="`Download all songs in the album ${album.name}`"
role="button"
@click.prevent="download"
>
Download
</a>
</template>
2024-04-29 19:50:03 +00:00
</BaseCard>
2022-04-15 14:24:30 +00:00
</template>
2022-04-15 17:00:08 +00:00
<script lang="ts" setup>
import { computed, toRef, toRefs } from 'vue'
2022-11-18 18:44:20 +00:00
import { eventBus } from '@/utils'
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 { useDraggable, useRouter } from '@/composables'
2022-04-15 14:24:30 +00:00
2024-04-29 19:50:03 +00:00
import BaseCard from '@/components/ui/album-artist/AlbumOrArtistCard.vue'
2022-04-15 14:24:30 +00:00
2022-11-18 18:44:20 +00:00
const { go } = useRouter()
const { startDragging } = useDraggable('album')
2022-05-02 07:21:14 +00:00
const props = withDefaults(defineProps<{ album: Album, layout?: ArtistAlbumCardLayout }>(), { layout: 'full' })
2022-04-15 17:00:08 +00:00
const { album, layout } = toRefs(props)
2022-04-15 14:24:30 +00:00
// We're not checking for supports_batch_downloading here, as the number of songs on the album is not yet known.
2024-01-04 11:35:36 +00:00
const allowDownload = toRef(commonStore.state, 'allows_download')
2022-04-15 14:24:30 +00:00
const isStandardArtist = computed(() => artistStore.isStandard(album.value.artist_id))
const showing = computed(() => !albumStore.isUnknown(album.value))
2022-04-15 17:00:08 +00:00
2022-06-10 10:47:46 +00:00
const shuffle = async () => {
2022-10-21 20:06:43 +00:00
playbackService.queueAndPlay(await songStore.fetchForAlbum(album.value), true /* shuffled */)
2022-11-18 18:44:20 +00:00
go('queue')
2022-06-10 10:47:46 +00:00
}
2022-04-15 17:00:08 +00:00
const download = () => downloadService.fromAlbum(album.value)
const onDragStart = (event: DragEvent) => startDragging(event, album.value)
2022-04-15 17:00:08 +00:00
const requestContextMenu = (event: MouseEvent) => eventBus.emit('ALBUM_CONTEXT_MENU_REQUESTED', event, album.value)
2022-04-15 14:24:30 +00:00
</script>