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

72 lines
2 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
<section id="albumsWrapper">
2022-04-15 17:00:08 +00:00
<ScreenHeader>
2022-04-15 14:24:30 +00:00
Albums
<template v-slot:controls>
2022-05-29 21:36:45 +00:00
<ViewModeSwitch v-model="viewMode"/>
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-04-21 21:51:17 +00:00
<div ref="scroller" :class="`as-${viewMode}`" class="albums main-scroll-wrap" @scroll="scrolling">
2022-06-10 10:47:46 +00:00
<AlbumCard v-for="album in albums" :key="album.id" :album="album" :layout="itemLayout"/>
2022-04-15 17:00:08 +00:00
<ToTopButton/>
2022-04-15 14:24:30 +00:00
</div>
</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, ref, toRef, watch } from 'vue'
import { eventBus } from '@/utils'
2022-04-15 14:24:30 +00:00
import { albumStore, preferenceStore as preferences } from '@/stores'
2022-04-15 17:00:08 +00:00
import { useInfiniteScroll } from '@/composables'
2022-04-15 14:24:30 +00:00
2022-04-21 21:51:17 +00:00
const AlbumCard = defineAsyncComponent(() => import('@/components/album/AlbumCard.vue'))
const ScreenHeader = defineAsyncComponent(() => import('@/components/ui/ScreenHeader.vue'))
2022-04-24 08:29:14 +00:00
const ViewModeSwitch = defineAsyncComponent(() => import('@/components/ui/ViewModeSwitch.vue'))
2022-04-15 14:24:30 +00:00
2022-04-15 17:00:08 +00:00
const viewMode = ref<ArtistAlbumViewMode>('thumbnails')
const albums = toRef(albumStore.state, 'albums')
2022-04-15 14:24:30 +00:00
2022-04-15 17:00:08 +00:00
const {
ToTopButton,
scroller,
scrolling,
makeScrollable
2022-06-10 10:47:46 +00:00
} = useInfiniteScroll(async () => await fetchAlbums())
2022-04-15 14:24:30 +00:00
2022-04-15 17:00:08 +00:00
const itemLayout = computed<ArtistAlbumCardLayout>(() => viewMode.value === 'thumbnails' ? 'full' : 'compact')
2022-04-15 14:24:30 +00:00
2022-06-10 10:47:46 +00:00
watch(viewMode, () => (preferences.albumsViewMode = viewMode.value))
2022-04-15 14:24:30 +00:00
2022-06-10 10:47:46 +00:00
let initialized = false
let loading = false
const page = ref<number | null>(1)
const moreAlbumsAvailable = computed(() => page.value !== null)
2022-04-15 14:24:30 +00:00
2022-06-10 10:47:46 +00:00
const fetchAlbums = async () => {
if (loading || !moreAlbumsAvailable.value) return
loading = true
page.value = await albumStore.fetch(page.value!)
loading = false
}
eventBus.on('KOEL_READY', () => (viewMode.value = preferences.albumsViewMode || 'thumbnails'))
eventBus.on('LOAD_MAIN_CONTENT', async (view: MainViewName) => {
if (view === 'Albums' && !initialized) {
await makeScrollable()
initialized = true
2022-04-15 14:24:30 +00:00
}
})
</script>
<style lang="scss">
#albumsWrapper {
.albums {
@include artist-album-wrapper();
}
}
</style>
2022-07-04 15:57:08 +00:00
`