mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
73 lines
2.2 KiB
Vue
73 lines
2.2 KiB
Vue
<template>
|
|
<article :class="mode" class="artist-info" data-testid="artist-info">
|
|
<h1 v-if="mode === 'aside'" 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 v-if="mode === 'aside'" :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" @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 { mediaInfoService, playbackService } from '@/services'
|
|
import { useRouter, useThirdPartyServices } from '@/composables'
|
|
import { songStore } from '@/stores'
|
|
|
|
import ArtistThumbnail from '@/components/ui/AlbumArtistThumbnail.vue'
|
|
|
|
const props = withDefaults(defineProps<{ artist: Artist, mode?: MediaInfoDisplayMode }>(), { mode: 'aside' })
|
|
const { artist, mode } = toRefs(props)
|
|
|
|
const { go } = useRouter()
|
|
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 () => {
|
|
playbackService.queueAndPlay(await songStore.fetchForArtist(artist.value))
|
|
go('queue')
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.artist-info {
|
|
@include artist-album-info();
|
|
|
|
.none {
|
|
margin-top: 1rem;
|
|
}
|
|
}
|
|
</style>
|