koel/resources/assets/js/components/album/AlbumInfo.vue
2022-12-02 17:17:37 +01:00

81 lines
2.5 KiB
Vue

<template>
<article :class="mode" class="album-info" data-testid="album-info">
<h1 v-if="mode === 'aside'" class="name">
<span>{{ album.name }}</span>
<button :title="`Play all songs in ${album.name}`" class="control" type="button" @click.prevent="play">
<icon :icon="faCirclePlay" size="xl" />
</button>
</h1>
<main>
<AlbumThumbnail v-if="mode === 'aside'" :entity="album" />
<template v-if="info">
<div v-if="info.wiki?.summary" class="wiki">
<div v-if="showSummary" class="summary" data-testid="summary" v-html="info.wiki.summary" />
<div v-if="showFull" class="full" data-testid="full" v-html="info.wiki.full" />
<button v-if="showSummary" class="more" @click.prevent="showingFullWiki = true">
Full Wiki
</button>
</div>
<TrackList v-if="info.tracks?.length" :album="album" :tracks="info.tracks" data-testid="album-info-tracks" />
<footer>
Data &copy;
<a :href="info.url" rel="noopener" target="_blank">Last.fm</a>
</footer>
</template>
</main>
</article>
</template>
<script lang="ts" setup>
import { faCirclePlay } from '@fortawesome/free-solid-svg-icons'
import { computed, defineAsyncComponent, ref, toRefs, watch } from 'vue'
import { songStore } from '@/stores'
import { mediaInfoService, playbackService } from '@/services'
import { useRouter, useThirdPartyServices } from '@/composables'
import AlbumThumbnail from '@/components/ui/AlbumArtistThumbnail.vue'
const TrackList = defineAsyncComponent(() => import('@/components/album/AlbumTrackList.vue'))
const props = withDefaults(defineProps<{ album: Album, mode?: MediaInfoDisplayMode }>(), { mode: 'aside' })
const { album, mode } = toRefs(props)
const { go } = useRouter()
const { useLastfm } = useThirdPartyServices()
const info = ref<AlbumInfo | null>(null)
const showingFullWiki = ref(false)
watch(album, async () => {
showingFullWiki.value = false
info.value = null
useLastfm.value && (info.value = await mediaInfoService.fetchForAlbum(album.value))
}, { immediate: true })
const showSummary = computed(() => mode.value !== 'full' && !showingFullWiki.value)
const showFull = computed(() => !showSummary.value)
const play = async () => {
playbackService.queueAndPlay(await songStore.fetchForAlbum(album.value))
go('queue')
}
</script>
<style lang="scss" scoped>
.album-info {
@include artist-album-info();
.track-listing {
margin-top: 2rem;
:deep(h1) {
margin-bottom: 1.2rem;
}
}
}
</style>