koel/resources/assets/js/components/screens/ArtistScreen.vue

109 lines
3.2 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
<section id="artistWrapper">
2022-07-17 08:58:05 +00:00
<ScreenHeader :layout="songs.length === 0 ? 'collapsed' : headerLayout">
2022-04-15 14:24:30 +00:00
{{ artist.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
<ArtistThumbnail :entity="artist"/>
2022-04-15 14:24:30 +00:00
</template>
<template v-slot:meta>
2022-07-10 17:15:56 +00:00
<span>{{ pluralize(artist.album_count, 'album') }}</span>
<span>{{ pluralize(artist.song_count, 'song') }}</span>
<span>{{ secondsToHis(artist.length) }}</span>
2022-07-11 17:35:58 +00:00
<a v-if="useLastfm" class="info" href title="View artist information" @click.prevent="showInfo">Info</a>
2022-07-10 17:15:56 +00:00
<a
v-if="allowDownload"
class="download"
href
role="button"
title="Download all songs by this artist"
@click.prevent="download"
>
Download All
</a>
2022-04-15 14:24:30 +00:00
</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-07-16 09:52:39 +00:00
<SongList ref="songList" @press:enter="onPressEnter" @scroll-breakpoint="onScrollBreakpoint"/>
2022-04-15 14:24:30 +00:00
2022-06-10 10:47:46 +00:00
<section class="info-wrapper" v-if="useLastfm && showingInfo">
<CloseModalBtn class="close-modal" @click="showingInfo = false"/>
2022-04-15 14:24:30 +00:00
<div class="inner">
2022-06-10 10:47:46 +00:00
<ArtistInfo :artist="artist" 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-07-10 17:15:56 +00:00
import { defineAsyncComponent, onMounted, ref, toRef, toRefs } from 'vue'
import { eventBus, pluralize, secondsToHis } from '@/utils'
import { artistStore, commonStore, songStore } from '@/stores'
2022-06-10 10:47:46 +00:00
import { downloadService } from '@/services'
import { useSongList, useThirdPartyServices } from '@/composables'
2022-04-15 14:24:30 +00:00
import router from '@/router'
2022-04-15 17:00:08 +00:00
import ScreenHeader from '@/components/ui/ScreenHeader.vue'
import ArtistThumbnail from '@/components/ui/AlbumArtistThumbnail.vue'
2022-04-21 16:06:45 +00:00
const props = defineProps<{ artist: Artist }>()
const { artist } = toRefs(props)
2022-06-10 10:47:46 +00:00
const artistSongs = ref<Song[]>([])
2022-04-15 17:00:08 +00:00
const {
SongList,
SongListControls,
2022-06-10 10:47:46 +00:00
ControlsToggle,
2022-07-16 09:52:39 +00:00
headerLayout,
2022-04-15 17:00:08 +00:00
songList,
2022-04-21 16:06:45 +00:00
songs,
2022-04-15 17:00:08 +00:00
showingControls,
isPhone,
onPressEnter,
2022-04-15 17:00:08 +00:00
playAll,
playSelected,
2022-07-16 09:52:39 +00:00
toggleControls,
onScrollBreakpoint
2022-06-10 10:47:46 +00:00
} = useSongList(artistSongs, 'artist', { columns: ['track', 'title', 'album', 'length'] })
2022-04-15 17:00:08 +00:00
2022-04-21 21:51:17 +00:00
const ArtistInfo = defineAsyncComponent(() => import('@/components/artist/ArtistInfo.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
const { useLastfm } = useThirdPartyServices()
2022-06-10 10:47:46 +00:00
const allowDownload = toRef(commonStore.state, 'allow_download')
2022-04-15 17:00:08 +00:00
2022-06-10 10:47:46 +00:00
const showingInfo = ref(false)
2022-04-15 17:00:08 +00:00
const download = () => downloadService.fromArtist(artist.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 () => {
artistSongs.value = await songStore.fetchForArtist(artist.value)
})
eventBus.on('SONGS_UPDATED', () => {
// if the current artist has been deleted, go back to the list
artistStore.byId(artist.value.id) || router.go('artists')
})
2022-04-15 14:24:30 +00:00
</script>
<style lang="scss" scoped>
2022-07-04 15:57:08 +00:00
@import "#/partials/_mixins.scss";
2022-04-15 14:24:30 +00:00
#artistWrapper {
@include artist-album-info-wrapper();
}
</style>