koel/resources/assets/js/components/artist/ArtistInfo.vue
Phan An abb0438c8d
fix: buggy Spotify integration (#1731)
This fixes a bug with Spotify integration that occurs if an installation isn't connected to Last.fm. Closing #1730 and #1653.
2023-12-27 12:49:28 +01:00

76 lines
2.3 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 &copy;
<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, useSpotify } = useThirdPartyServices()
const info = ref<ArtistInfo | null>(null)
const showingFullBio = ref(false)
watch(artist, async () => {
showingFullBio.value = false
info.value = null
if (useLastfm.value || useSpotify.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>