多维表格
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.2 KiB

2 months ago
<script setup lang="ts">
const { youtubeFeed, loadFeed, isErrorOccurred } = useProductFeed()
2 months ago
const scrollContainer = ref<HTMLElement>()
const { isLoading } = useInfiniteScroll(
scrollContainer,
async () => {
if (isLoading.value) return
await loadFeed({
type: 'youtube',
loadMore: true,
})
},
{ distance: 1, interval: 2000 },
)
2 months ago
</script>
<template>
<div
ref="scrollContainer"
:style="{
2 months ago
height: 'calc(100dvh - var(--toolbar-height) - 3rem)',
}"
class="overflow-y-auto nc-scrollbar-md mx-auto w-full"
>
<div v-if="isErrorOccurred?.youtube && !youtubeFeed.length" class="h-full flex justify-center items-center">
<FeedError page="youtube" />
</div>
<div v-else-if="isLoading && !youtubeFeed.length" class="flex items-center justify-center h-full w-full">
<GeneralLoader size="xlarge" />
</div>
<div v-else class="youtube-feed mx-auto">
<div class="flex gap-2 flex-col">
<FeedYoutubePlayer v-for="feed in youtubeFeed" :key="feed.Id" :item="feed" />
</div>
</div>
2 months ago
</div>
</template>
<style scoped lang="scss">
.youtube-feed {
@apply max-w-[540px] xl:max-w-[640px];
}
</style>