2022-04-15 14:24:30 +00:00
|
|
|
<template>
|
|
|
|
<section id="albumWrapper">
|
2022-04-21 10:18:11 +00:00
|
|
|
<ScreenHeader has-thumbnail>
|
2022-04-15 14:24:30 +00:00
|
|
|
{{ album.name }}
|
2022-06-10 10:47:46 +00:00
|
|
|
<ControlsToggle :showing-controls="showingControls" @toggleControls="toggleControls"/>
|
2022-04-15 14:24:30 +00:00
|
|
|
|
|
|
|
<template v-slot:thumbnail>
|
2022-04-15 17:00:08 +00:00
|
|
|
<AlbumThumbnail :entity="album"/>
|
2022-04-15 14:24:30 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<template v-slot:meta>
|
2022-06-10 10:47:46 +00:00
|
|
|
<span>
|
2022-04-15 14:24:30 +00:00
|
|
|
by
|
2022-06-10 10:47:46 +00:00
|
|
|
<a v-if="isNormalArtist" :href="`#!/artist/${album.artist_id}`" class="artist">{{ album.artist_name }}</a>
|
|
|
|
<span class="nope" v-else>{{ album.artist_name }}</span>
|
|
|
|
<template v-if="songs.length">
|
2022-04-15 14:24:30 +00:00
|
|
|
•
|
2022-04-21 16:06:45 +00:00
|
|
|
{{ pluralize(songs.length, 'song') }}
|
2022-04-15 14:24:30 +00:00
|
|
|
•
|
2022-04-23 21:24:02 +00:00
|
|
|
{{ duration }}
|
2022-06-10 10:47:46 +00:00
|
|
|
</template>
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-04-25 16:13:18 +00:00
|
|
|
<template v-if="useLastfm">
|
2022-04-15 14:24:30 +00:00
|
|
|
•
|
2022-04-21 16:06:45 +00:00
|
|
|
<a class="info" href title="View album's extra information" @click.prevent="showInfo">Info</a>
|
2022-04-15 14:24:30 +00:00
|
|
|
</template>
|
2022-06-10 10:47:46 +00:00
|
|
|
|
|
|
|
<template v-if="allowDownload && songs.length">
|
2022-04-15 14:24:30 +00:00
|
|
|
•
|
2022-04-21 16:06:45 +00:00
|
|
|
<a class="download" href role="button" title="Download all songs in album" @click.prevent="download">
|
2022-04-15 14:24:30 +00:00
|
|
|
Download All
|
|
|
|
</a>
|
|
|
|
</template>
|
|
|
|
</span>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template v-slot:controls>
|
2022-04-15 17:00:08 +00:00
|
|
|
<SongListControls
|
2022-04-21 16:06:45 +00:00
|
|
|
v-if="songs.length && (!isPhone || showingControls)"
|
|
|
|
@playAll="playAll"
|
|
|
|
@playSelected="playSelected"
|
2022-04-15 14:24:30 +00:00
|
|
|
/>
|
|
|
|
</template>
|
2022-04-15 17:00:08 +00:00
|
|
|
</ScreenHeader>
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-06-10 10:47:46 +00:00
|
|
|
<SongList ref="songList" @press:enter="onPressEnter"/>
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-06-10 10:47:46 +00:00
|
|
|
<section v-if="useLastfm && showingInfo" class="info-wrapper">
|
|
|
|
<CloseModalBtn @click="showingInfo = false"/>
|
2022-04-15 14:24:30 +00:00
|
|
|
<div class="inner">
|
2022-06-10 10:47:46 +00:00
|
|
|
<AlbumInfo :album="album" mode="full"/>
|
2022-04-15 14:24:30 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
2022-04-15 17:00:08 +00:00
|
|
|
<script lang="ts" setup>
|
2022-06-10 10:47:46 +00:00
|
|
|
import { computed, defineAsyncComponent, onMounted, ref, toRef, toRefs, watch } from 'vue'
|
2022-07-04 13:24:02 +00:00
|
|
|
import { eventBus, pluralize } from '@/utils'
|
|
|
|
import { albumStore, artistStore, commonStore, songStore } from '@/stores'
|
2022-06-10 10:47:46 +00:00
|
|
|
import { downloadService } from '@/services'
|
2022-04-23 21:24:02 +00:00
|
|
|
import { useSongList } from '@/composables'
|
2022-04-30 14:05:02 +00:00
|
|
|
import router from '@/router'
|
2022-04-15 17:00:08 +00:00
|
|
|
|
2022-07-07 18:05:46 +00:00
|
|
|
import ScreenHeader from '@/components/ui/ScreenHeader.vue'
|
|
|
|
|
2022-04-21 10:43:10 +00:00
|
|
|
const AlbumInfo = defineAsyncComponent(() => import('@/components/album/AlbumInfo.vue'))
|
2022-04-21 10:18:11 +00:00
|
|
|
const AlbumThumbnail = defineAsyncComponent(() => import('@/components/ui/AlbumArtistThumbnail.vue'))
|
2022-04-24 08:29:14 +00:00
|
|
|
const CloseModalBtn = defineAsyncComponent(() => import('@/components/ui/BtnCloseModal.vue'))
|
2022-04-15 17:00:08 +00:00
|
|
|
|
2022-04-21 16:06:45 +00:00
|
|
|
const props = defineProps<{ album: Album }>()
|
|
|
|
const { album } = toRefs(props)
|
|
|
|
|
2022-06-10 10:47:46 +00:00
|
|
|
const albumSongs = ref<Song[]>([])
|
|
|
|
|
2022-04-15 17:00:08 +00:00
|
|
|
const {
|
|
|
|
SongList,
|
|
|
|
SongListControls,
|
2022-06-10 10:47:46 +00:00
|
|
|
ControlsToggle,
|
2022-04-21 16:06:45 +00:00
|
|
|
songs,
|
2022-04-15 17:00:08 +00:00
|
|
|
songList,
|
2022-04-23 21:24:02 +00:00
|
|
|
duration,
|
2022-04-15 17:00:08 +00:00
|
|
|
showingControls,
|
|
|
|
isPhone,
|
2022-04-21 18:12:11 +00:00
|
|
|
onPressEnter,
|
2022-04-15 17:00:08 +00:00
|
|
|
playAll,
|
|
|
|
playSelected,
|
|
|
|
toggleControls
|
2022-06-10 10:47:46 +00:00
|
|
|
} = useSongList(albumSongs, 'album', { columns: ['track', 'title', 'artist', 'length'] })
|
2022-04-15 17:00:08 +00:00
|
|
|
|
2022-06-10 10:47:46 +00:00
|
|
|
const useLastfm = toRef(commonStore.state, 'use_last_fm')
|
|
|
|
const allowDownload = toRef(commonStore.state, 'allow_download')
|
|
|
|
const showingInfo = ref(false)
|
2022-04-15 17:00:08 +00:00
|
|
|
|
|
|
|
const isNormalArtist = computed(() => {
|
2022-06-10 10:47:46 +00:00
|
|
|
return !artistStore.isVarious(album.value.artist_id) && !artistStore.isUnknown(album.value.artist_id)
|
2022-04-15 17:00:08 +00:00
|
|
|
})
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-04-15 17:00:08 +00:00
|
|
|
/**
|
|
|
|
* Watch the album's song count.
|
|
|
|
* If this is changed to 0, the user has edited the songs on this album
|
|
|
|
* and moved all of them into another album.
|
|
|
|
* We should then go back to the album list.
|
|
|
|
*/
|
2022-06-10 10:47:46 +00:00
|
|
|
watch(() => album.value.song_count, newSongCount => newSongCount || router.go('albums'))
|
2022-04-15 17:00:08 +00:00
|
|
|
|
|
|
|
const download = () => downloadService.fromAlbum(album.value)
|
2022-06-10 10:47:46 +00:00
|
|
|
const showInfo = () => (showingInfo.value = true)
|
2022-04-15 17:00:08 +00:00
|
|
|
|
2022-06-10 10:47:46 +00:00
|
|
|
onMounted(async () => {
|
|
|
|
albumSongs.value = await songStore.fetchForAlbum(album.value)
|
|
|
|
})
|
2022-07-04 13:24:02 +00:00
|
|
|
|
|
|
|
eventBus.on('SONGS_UPDATED', () => {
|
|
|
|
// if the current album has been deleted, go back to home
|
|
|
|
albumStore.byId(album.value.id) || router.go('home')
|
|
|
|
})
|
2022-04-15 14:24:30 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
#albumWrapper {
|
|
|
|
@include artist-album-info-wrapper();
|
|
|
|
}
|
|
|
|
</style>
|