mirror of
https://github.com/koel/koel
synced 2024-12-20 01:23:16 +00:00
47 lines
1.4 KiB
Vue
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 ©
|
|
<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/album-artist/AlbumOrArtistThumbnail.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>
|