koel/resources/assets/js/components/artist/ArtistCard.vue

82 lines
2.3 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
<article
2022-04-21 21:51:17 +00:00
v-if="showing"
:class="layout"
2022-04-15 14:24:30 +00:00
:title="artist.name"
class="item"
2022-05-04 20:47:12 +00:00
data-testid="artist-card"
2022-04-15 14:24:30 +00:00
draggable="true"
tabindex="0"
@dblclick="shuffle"
@dragstart="onDragStart"
2022-04-30 11:55:54 +00:00
@contextmenu.prevent="requestContextMenu"
2022-04-15 14:24:30 +00:00
>
2022-07-22 14:25:30 +00:00
<ArtistThumbnail :entity="artist"/>
2022-04-15 14:24:30 +00:00
<footer>
<div class="info">
<a :href="`#/artist/${artist.id}`" class="name" data-testid="name">{{ artist.name }}</a>
2022-04-15 14:24:30 +00:00
</div>
<p class="meta">
<a
:title="`Shuffle all songs by ${artist.name}`"
class="shuffle-artist"
data-testid="shuffle-artist"
href
role="button"
@click.prevent="shuffle"
>
Shuffle
</a>
<a
v-if="allowDownload"
:title="`Download all songs by ${artist.name}`"
class="download-artist"
data-testid="download-artist"
href
role="button"
@click.prevent="download"
>
Download
</a>
2022-04-15 14:24:30 +00:00
</p>
</footer>
</article>
</template>
2022-04-15 17:00:08 +00:00
<script lang="ts" setup>
import { computed, toRef, toRefs } from 'vue'
import { eventBus, requireInjection } from '@/utils'
2022-05-04 20:47:12 +00:00
import { 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'
import ArtistThumbnail from '@/components/ui/AlbumArtistThumbnail.vue'
2022-04-15 14:24:30 +00:00
const router = requireInjection(RouterKey)
const { startDragging } = useDraggable('artist')
2022-05-04 20:47:12 +00:00
const props = withDefaults(defineProps<{ artist: Artist, layout?: ArtistAlbumCardLayout }>(), { layout: 'full' })
2022-04-15 17:00:08 +00:00
const { artist, 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')
const showing = computed(() => artistStore.isStandard(artist.value))
2022-04-15 14:24:30 +00:00
2022-06-10 10:47:46 +00:00
const shuffle = async () => {
await playbackService.queueAndPlay(await songStore.fetchForArtist(artist.value), true /* shuffled */)
router.go('queue')
2022-06-10 10:47:46 +00:00
}
2022-04-15 14:24:30 +00:00
2022-04-15 17:00:08 +00:00
const download = () => downloadService.fromArtist(artist.value)
const onDragStart = (event: DragEvent) => startDragging(event, artist.value)
2022-04-15 17:00:08 +00:00
const requestContextMenu = (event: MouseEvent) => eventBus.emit('ARTIST_CONTEXT_MENU_REQUESTED', event, artist.value)
2022-04-15 14:24:30 +00:00
</script>
<style lang="scss" scoped>
2022-04-15 14:24:30 +00:00
@include artist-album-card();
</style>