Files
pwa-player/frontend/src/components/CollectionItem.vue

104 lines
2.9 KiB
Vue

<script setup lang="ts">
import SongItem from "../components/SongItem.vue";
import SongItemSkeleton from "./SongItemSkeleton.vue";
import { type Song, mapApiToCollection } from "../script/types";
import { ref, onMounted, onBeforeUnmount } from "vue";
import { useRoute } from "vue-router";
import CollectionListItem from "../components/CollectionListItem.vue";
import { useAudio } from "@/composables/useAudio";
import { useApi } from "@/composables/useApi";
const route = useRoute();
const audioStore = useAudio();
const { musicApi } = useApi();
const songs = ref<Song[]>([]);
const name = ref("name");
const limit = 50;
let offset = ref(0);
let loading = ref(false);
let hasMore = ref(true);
const fetchMoreSongs = async () => {
if (loading.value || !hasMore.value) return;
loading.value = true;
try {
const response = await musicApi.value.musicBackendCollections("", route.params.id, limit, offset.value);
const col = mapApiToCollection(response.data);
if (offset.value === 0) {
name.value = col.name;
songs.value = col.songs;
} else {
songs.value.push(...col.songs);
}
audioStore.setCollection(songs.value);
if (col.songs.length < limit) {
hasMore.value = false;
}
offset.value += limit;
} catch (error) {
console.error("Error fetching songs:", error);
} finally {
loading.value = false;
}
};
const onScroll = (e: Event) => {
const target = e.target as HTMLElement;
const scrollTop = target.scrollTop;
const scrollHeight = target.scrollHeight;
const clientHeight = target.clientHeight;
if (scrollTop + clientHeight >= scrollHeight * 0.9) {
fetchMoreSongs();
}
};
onMounted(() => {
fetchMoreSongs();
const container = document.querySelector(".coll-container");
container?.addEventListener("scroll", onScroll);
});
onBeforeUnmount(() => {
const container = document.querySelector(".coll-container");
container?.removeEventListener("scroll", onScroll);
});
</script>
<template>
<main class="flex flex-col flex-1 h-full overflow-y-hidden text-center">
<header v-show="true">
<div class="wrapper">
<nav class="flex flex-nowrap justify-start space-x-1 mx-1 my-2 overflow-y-scroll text-nowrap">
<RouterLink class="shadow-xl backdrop--light p-1 rounded-full" to="/menu/collections"
><i class="fa-arrow-left fa-solid"></i>
</RouterLink>
<p class="shadow-xl backdrop--light p-1 rounded-full">{{ name }}</p>
</nav>
<hr />
</div>
</header>
<div class="gap-2 grid grid-cols-2 lg:grid-cols-3 2xl:grid-cols-4 p-2 overflow-y-auto collection-container song-item-wrapper coll-container">
<SongItem v-for="(song, index) in songs" :key="index" :song="song" />
<template v-if="loading">
<SongItemSkeleton v-for="i in 10" :key="'skeleton-' + i" />
</template>
</div>
</main>
</template>
<style scoped>
.song-item-wrapper {
content-visibility: auto;
contain-intrinsic-size: 96px;
}
</style>