koel/resources/assets/js/components/artist/ArtistInfo.vue
2024-07-06 17:44:57 +02:00

47 lines
1.4 KiB
Vue

<template>
<AlbumArtistInfo :mode="mode" data-testid="artist-info">
<template #header>{{ artist.name }}</template>
<template #art>
<ArtistThumbnail :entity="artist" />
</template>
<template v-if="info?.bio">
<ExpandableContentBlock v-if="mode === 'aside'">
<div v-html="info.bio.full" />
</ExpandableContentBlock>
<div v-else v-html="info.bio.full" />
</template>
<template v-if="info" #footer>
Data &copy;
<a :href="info.url" rel="openener" target="_blank">Last.fm</a>
</template>
</AlbumArtistInfo>
</template>
<script lang="ts" setup>
import { ref, toRefs, watch } from 'vue'
import { mediaInfoService } from '@/services'
import { useThirdPartyServices } from '@/composables'
import ArtistThumbnail from '@/components/ui/ArtistAlbumThumbnail.vue'
import AlbumArtistInfo from '@/components/ui/album-artist/AlbumOrArtistInfo.vue'
import ExpandableContentBlock from '@/components/ui/album-artist/ExpandableContentBlock.vue'
const props = withDefaults(defineProps<{ artist: Artist, mode?: MediaInfoDisplayMode }>(), { mode: 'aside' })
const { artist, mode } = toRefs(props)
const { useLastfm, useSpotify } = useThirdPartyServices()
const info = ref<ArtistInfo | null>(null)
watch(artist, async () => {
info.value = null
if (useLastfm.value || useSpotify.value) {
info.value = await mediaInfoService.fetchForArtist(artist.value)
}
}, { immediate: true })
</script>