koel/resources/assets/js/components/album/AlbumInfo.vue
2022-05-03 18:51:59 +02:00

60 lines
2 KiB
Vue

<template>
<article :class="mode" class="album-info" data-testid="album-info">
<h1 class="name">
<span>{{ album.name }}</span>
<button :title="`Shuffle all songs in ${album.name}`" class="shuffle control" @click.prevent="shuffleAll">
<i class="fa fa-random"></i>
</button>
</h1>
<main>
<AlbumThumbnail :entity="album"/>
<template v-if="album.info">
<div class="wiki" v-if="album.info?.wiki?.summary">
<div v-if="showSummary" class="summary" v-html="album.info?.wiki?.summary"></div>
<div v-if="showFull" class="full" v-html="album.info?.wiki?.full"></div>
<button v-if="showSummary" class="more" data-testid="more-btn" @click.prevent="showingFullWiki = true">
Full Wiki
</button>
</div>
<TrackList v-if="album.info?.tracks?.length" :album="album" data-testid="album-info-tracks"/>
<footer>Data &copy; <a :href="album.info?.url" rel="noopener" target="_blank">Last.fm</a></footer>
</template>
</main>
</article>
</template>
<script lang="ts" setup>
import { playbackService } from '@/services'
import { computed, defineAsyncComponent, ref, toRefs, watch } from 'vue'
const TrackList = defineAsyncComponent(() => import('./AlbumTrackList.vue'))
const AlbumThumbnail = defineAsyncComponent(() => import('@/components/ui/AlbumArtistThumbnail.vue'))
type DisplayMode = 'sidebar' | 'full'
const props = withDefaults(defineProps<{ album: Album, mode?: DisplayMode }>(), { mode: 'sidebar' })
const { album, mode } = toRefs(props)
const showingFullWiki = ref(false)
/**
* Whenever a new album is loaded into this component, we reset the "full wiki" state.
*/
watch(album, () => (showingFullWiki.value = false))
const showSummary = computed(() => mode.value !== 'full' && !showingFullWiki.value)
const showFull = computed(() => !showSummary.value)
const shuffleAll = () => playbackService.playAllInAlbum(album.value)
</script>
<style lang="scss">
.album-info {
@include artist-album-info();
}
</style>