koel/resources/assets/js/components/screens/ArtistListScreen.vue
2022-07-23 00:03:25 +02:00

75 lines
2 KiB
Vue

<template>
<section id="artistsWrapper">
<ScreenHeader layout="collapsed">
Artists
<template v-slot:controls>
<ViewModeSwitch v-model="viewMode"/>
</template>
</ScreenHeader>
<div
ref="scroller"
:class="`as-${viewMode}`"
class="artists main-scroll-wrap"
data-testid="artist-list"
@scroll="scrolling"
>
<ArtistCard v-for="artist in artists" :key="artist.id" :artist="artist" :layout="itemLayout"/>
<ToTopButton/>
</div>
</section>
</template>
<script lang="ts" setup>
import { computed, ref, toRef, watch } from 'vue'
import { eventBus } from '@/utils'
import { artistStore, preferenceStore as preferences } from '@/stores'
import { useInfiniteScroll } from '@/composables'
import ArtistCard from '@/components/artist/ArtistCard.vue'
import ScreenHeader from '@/components/ui/ScreenHeader.vue'
import ViewModeSwitch from '@/components/ui/ViewModeSwitch.vue'
const viewMode = ref<ArtistAlbumViewMode>('thumbnails')
const artists = toRef(artistStore.state, 'artists')
const {
ToTopButton,
scroller,
scrolling,
makeScrollable
} = useInfiniteScroll(async () => await fetchArtists())
const itemLayout = computed<ArtistAlbumCardLayout>(() => viewMode.value === 'thumbnails' ? 'full' : 'compact')
watch(viewMode, () => preferences.artistsViewMode = viewMode.value)
let initialized = false
let loading = false
const page = ref<number | null>(1)
const moreArtistsAvailable = computed(() => page.value !== null)
const fetchArtists = async () => {
if (loading || !moreArtistsAvailable.value) return
loading = true
page.value = await artistStore.paginate(page.value!)
loading = false
}
eventBus.on('LOAD_MAIN_CONTENT', async (view: MainViewName) => {
if (view === 'Artists' && !initialized) {
viewMode.value = preferences.artistsViewMode || 'thumbnails'
await makeScrollable()
initialized = true
}
})
</script>
<style lang="scss">
#artistsWrapper {
.artists {
@include artist-album-wrapper();
}
}
</style>