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

75 lines
2.5 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
<ArtistAlbumCard
v-if="showing"
:entity="album"
2022-06-10 10:47:46 +00:00
:title="`${album.name} by ${album.artist_name}`"
:layout="layout"
@contextmenu="requestContextMenu"
2022-04-15 14:24:30 +00:00
@dblclick="shuffle"
@dragstart="onDragStart"
2022-04-15 14:24:30 +00:00
>
<template #name>
<a :href="`#/album/${album.id}`" class="text-normal" data-testid="name">{{ album.name }}</a>
<a v-if="isStandardArtist" :href="`#/artist/${album.artist_id}`">{{ album.artist_name }}</a>
<span v-else class="text-secondary">{{ album.artist_name }}</span>
</template>
<template #meta>
<a
:title="`Shuffle all songs in the album ${album.name}`"
class="shuffle-album"
data-testid="shuffle-album"
href
role="button"
@click.prevent="shuffle"
>
Shuffle
</a>
<a
v-if="allowDownload"
:title="`Download all songs in the album ${album.name}`"
class="download-album"
data-testid="download-album"
href
role="button"
@click.prevent="download"
>
Download
</a>
</template>
</ArtistAlbumCard>
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'
import { eventBus, requireInjection, secondsToHumanReadable } from '@/utils'
import { albumStore, artistStore, commonStore, songStore } from '@/stores'
2022-04-24 08:50:45 +00:00
import { downloadService, playbackService } from '@/services'
import { useDraggable } from '@/composables'
import { RouterKey } from '@/symbols'
2022-04-15 14:24:30 +00:00
import ArtistAlbumCard from '@/components/ui/ArtistAlbumCard.vue'
2022-04-15 14:24:30 +00:00
const router = requireInjection(RouterKey)
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
2022-06-10 10:47:46 +00:00
const allowDownload = toRef(commonStore.state, 'allow_download')
2022-04-15 14:24:30 +00:00
const duration = computed(() => secondsToHumanReadable(album.value.length))
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 */)
router.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>