2022-04-15 14:24:30 +00:00
|
|
|
<template>
|
|
|
|
<article
|
2022-04-21 21:51:17 +00:00
|
|
|
v-if="album.songs.length"
|
|
|
|
:class="layout"
|
2022-04-15 14:24:30 +00:00
|
|
|
:title="`${album.name} by ${album.artist.name}`"
|
|
|
|
class="item"
|
2022-04-21 21:51:17 +00:00
|
|
|
data-test="album-card"
|
2022-04-15 14:24:30 +00:00
|
|
|
draggable="true"
|
|
|
|
tabindex="0"
|
|
|
|
@dblclick="shuffle"
|
2022-04-21 21:51:17 +00:00
|
|
|
@dragstart="dragStart"
|
2022-04-30 11:55:54 +00:00
|
|
|
@contextmenu.prevent="requestContextMenu"
|
2022-04-15 14:24:30 +00:00
|
|
|
>
|
|
|
|
<span class="thumbnail-wrapper">
|
2022-04-15 17:00:08 +00:00
|
|
|
<AlbumThumbnail :entity="album"/>
|
2022-04-15 14:24:30 +00:00
|
|
|
</span>
|
|
|
|
|
|
|
|
<footer>
|
|
|
|
<div class="info">
|
2022-05-02 07:21:14 +00:00
|
|
|
<a :href="`#!/album/${album.id}`" class="name" data-testid="name">{{ album.name }}</a>
|
2022-04-15 17:00:08 +00:00
|
|
|
<span class="sep text-secondary"> by </span>
|
2022-04-21 21:51:17 +00:00
|
|
|
<a v-if="isNormalArtist" :href="`#!/artist/${album.artist.id}`" class="artist">{{ album.artist.name }}</a>
|
2022-04-15 14:24:30 +00:00
|
|
|
<span class="artist nope" v-else>{{ album.artist.name }}</span>
|
|
|
|
</div>
|
|
|
|
<p class="meta">
|
|
|
|
<span class="left">
|
2022-04-15 17:00:08 +00:00
|
|
|
{{ pluralize(album.songs.length, 'song') }}
|
2022-04-15 14:24:30 +00:00
|
|
|
•
|
2022-04-23 21:24:02 +00:00
|
|
|
{{ duration }}
|
2022-04-15 14:24:30 +00:00
|
|
|
•
|
2022-04-15 17:00:08 +00:00
|
|
|
{{ pluralize(album.playCount, 'play') }}
|
2022-04-15 14:24:30 +00:00
|
|
|
</span>
|
|
|
|
<span class="right">
|
|
|
|
<a
|
|
|
|
:title="`Shuffle all songs in the album ${album.name}`"
|
|
|
|
class="shuffle-album"
|
2022-05-03 16:51:59 +00:00
|
|
|
data-testid="shuffle-album"
|
2022-04-15 14:24:30 +00:00
|
|
|
href
|
|
|
|
role="button"
|
2022-04-21 21:51:17 +00:00
|
|
|
@click.prevent="shuffle"
|
2022-04-15 14:24:30 +00:00
|
|
|
>
|
|
|
|
<i class="fa fa-random"></i>
|
|
|
|
</a>
|
|
|
|
<a
|
2022-04-21 21:51:17 +00:00
|
|
|
v-if="allowDownload"
|
2022-04-15 14:24:30 +00:00
|
|
|
:title="`Download all songs in the album ${album.name}`"
|
|
|
|
class="download-album"
|
2022-05-03 16:51:59 +00:00
|
|
|
data-testid="download-album"
|
2022-04-15 14:24:30 +00:00
|
|
|
href
|
|
|
|
role="button"
|
2022-04-21 21:51:17 +00:00
|
|
|
@click.prevent="download"
|
2022-04-15 14:24:30 +00:00
|
|
|
>
|
|
|
|
<i class="fa fa-download"></i>
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
</footer>
|
|
|
|
</article>
|
|
|
|
</template>
|
|
|
|
|
2022-04-15 17:00:08 +00:00
|
|
|
<script lang="ts" setup>
|
2022-04-21 21:51:17 +00:00
|
|
|
import { computed, defineAsyncComponent, toRef, toRefs } from 'vue'
|
2022-04-15 14:24:30 +00:00
|
|
|
import { eventBus, pluralize, startDragging } from '@/utils'
|
2022-04-24 08:50:45 +00:00
|
|
|
import { artistStore, commonStore, songStore } from '@/stores'
|
|
|
|
import { downloadService, playbackService } from '@/services'
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-04-21 10:18:11 +00:00
|
|
|
const AlbumThumbnail = defineAsyncComponent(() => import('@/components/ui/AlbumArtistThumbnail.vue'))
|
2022-04-15 14:24:30 +00:00
|
|
|
|
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-04-24 08:50:45 +00:00
|
|
|
const allowDownload = toRef(commonStore.state, 'allowDownload')
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-04-23 21:24:02 +00:00
|
|
|
const duration = computed(() => songStore.getFormattedLength(album.value.songs))
|
|
|
|
|
2022-04-15 17:00:08 +00:00
|
|
|
const isNormalArtist = computed(() => {
|
|
|
|
return !artistStore.isVariousArtists(album.value.artist) && !artistStore.isUnknownArtist(album.value.artist)
|
2022-04-15 14:24:30 +00:00
|
|
|
})
|
2022-04-15 17:00:08 +00:00
|
|
|
|
2022-04-24 08:50:45 +00:00
|
|
|
const shuffle = () => playbackService.playAllInAlbum(album.value, true /* shuffled */)
|
2022-04-15 17:00:08 +00:00
|
|
|
const download = () => downloadService.fromAlbum(album.value)
|
|
|
|
const dragStart = (event: DragEvent) => startDragging(event, album.value, 'Album')
|
|
|
|
const requestContextMenu = (event: MouseEvent) => eventBus.emit('ALBUM_CONTEXT_MENU_REQUESTED', event, album.value)
|
2022-04-15 14:24:30 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.sep {
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
.as-list & {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include artist-album-card();
|
|
|
|
</style>
|