mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
76 lines
2.3 KiB
Vue
76 lines
2.3 KiB
Vue
<template>
|
|
<article :class="mode" class="artist-info" data-testid="artist-info">
|
|
<h1 class="name">
|
|
<span>{{ artist.name }}</span>
|
|
<button :title="`Play all songs by ${artist.name}`" class="control" type="button" @click.prevent="play">
|
|
<icon :icon="faCirclePlay" size="xl"/>
|
|
</button>
|
|
</h1>
|
|
|
|
<main>
|
|
<ArtistThumbnail :entity="artist"/>
|
|
|
|
<template v-if="info">
|
|
<div v-if="info.bio?.summary" class="bio">
|
|
<div v-if="showSummary" class="summary" data-testid="summary" v-html="info.bio.summary"/>
|
|
<div v-if="showFull" class="full" data-testid="full" v-html="info.bio.full"/>
|
|
|
|
<button v-if="showSummary" class="more" data-testid="more-btn" @click.prevent="showingFullBio = true">
|
|
Full Bio
|
|
</button>
|
|
</div>
|
|
|
|
<footer>
|
|
Data ©
|
|
<a :href="info.url" rel="openener" target="_blank">Last.fm</a>
|
|
</footer>
|
|
</template>
|
|
</main>
|
|
</article>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { faCirclePlay } from '@fortawesome/free-solid-svg-icons'
|
|
import { computed, ref, toRefs, watch } from 'vue'
|
|
import { playbackService, mediaInfoService } from '@/services'
|
|
import { useThirdPartyServices } from '@/composables'
|
|
import { songStore } from '@/stores'
|
|
import { RouterKey } from '@/symbols'
|
|
import { requireInjection } from '@/utils'
|
|
|
|
import ArtistThumbnail from '@/components/ui/AlbumArtistThumbnail.vue'
|
|
|
|
const router = requireInjection(RouterKey)
|
|
|
|
const props = withDefaults(defineProps<{ artist: Artist, mode?: MediaInfoDisplayMode }>(), { mode: 'aside' })
|
|
const { artist, mode } = toRefs(props)
|
|
|
|
const { useLastfm } = useThirdPartyServices()
|
|
|
|
const info = ref<ArtistInfo | null>(null)
|
|
const showingFullBio = ref(false)
|
|
|
|
watch(artist, async () => {
|
|
showingFullBio.value = false
|
|
info.value = null
|
|
useLastfm.value && (info.value = await mediaInfoService.fetchForArtist(artist.value))
|
|
}, { immediate: true })
|
|
|
|
const showSummary = computed(() => mode.value !== 'full' && !showingFullBio.value)
|
|
const showFull = computed(() => !showSummary.value)
|
|
|
|
const play = async () => {
|
|
await playbackService.queueAndPlay(await songStore.fetchForArtist(artist.value))
|
|
router.go('queue')
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.artist-info {
|
|
@include artist-album-info();
|
|
|
|
.none {
|
|
margin-top: 1rem;
|
|
}
|
|
}
|
|
</style>
|