Browse Source

feat:handle infinite load

pull/9323/head
DarkPhoenix2704 2 months ago
parent
commit
9f0b5d3b7f
  1. 21
      packages/nc-gui/components/feed/Changelog/index.vue
  2. 3
      packages/nc-gui/components/feed/Roadmap.vue
  3. 10
      packages/nc-gui/components/feed/View.vue
  4. 7
      packages/nc-gui/components/feed/Youtube/Player.vue
  5. 32
      packages/nc-gui/components/feed/Youtube/index.vue
  6. 4
      packages/nc-gui/composables/useProductFeed.ts

21
packages/nc-gui/components/feed/Changelog/index.vue

@ -1,15 +1,30 @@
<script setup lang="ts">
const { loadGithubFeed, githubFeed } = useProductFeed()
onMounted(async () => {
await loadGithubFeed()
})
const scrollContainer = ref<HTMLElement>()
const { isLoading } = useInfiniteScroll(
scrollContainer,
async () => {
if (isLoading.value) return
await loadGithubFeed(true)
},
{ distance: 10 },
)
</script>
<template>
<div
ref="scrollContainer"
:style="{
height: 'calc(100dvh - var(--toolbar-height) - 3rem)',
}"
class="overflow-y-auto nc-scrollbar-md mx-auto w-full"
>
<div class="max-w-260 mx-auto">
<FeedChangelogItem v-for="feed in githubFeed" :key="feed.id" :date="feed.published_at" :body="feed?.body" />
</div>
</div>
</template>
<style scoped lang="scss"></style>

3
packages/nc-gui/components/feed/Roadmap.vue

@ -26,6 +26,9 @@ const handleIframeLoad = () => {
<template>
<div
:style="{
height: 'calc(100dvh - var(--toolbar-height))',
}"
:class="{
'hidden': !isLoaded,
'block h-full': isLoaded,

10
packages/nc-gui/components/feed/View.vue

@ -56,17 +56,7 @@ const tabs = [
</span>
</div>
</template>
<div
:style="{
height:
activeTab === 'recents'
? 'calc(100dvh - var(--toolbar-height) - var(--topbar-height))'
: 'calc(100dvh - var(--toolbar-height))',
}"
class="overflow-y-auto nc-scrollbar-md mx-auto w-full"
>
<component :is="tab.container" />
</div>
</a-tab-pane>
</NcTabs>
</div>

7
packages/nc-gui/components/feed/Youtube/Player.vue

@ -29,7 +29,7 @@ onBeforeUnmount(() => {
</script>
<template>
<div class="flex flex-col gap-5">
<div class="flex flex-col mt-6 gap-5">
<div class="aspect-video !rounded-lg mx-auto !h-[428px]">
<div id="player" ref="videoPlayer" class="plyr__video-embed">
<iframe
@ -40,9 +40,12 @@ onBeforeUnmount(() => {
></iframe>
</div>
</div>
<div>
<div class="text-gray-900 font-bold text-2xl">
{{ name }}
</div>
<div class="text-gray-900">
{{ body }}
</div>
</div>
</template>

32
packages/nc-gui/components/feed/Youtube/index.vue

@ -1,12 +1,36 @@
<script setup lang="ts">
const { youtubeFeed, loadYoutubeFeed } = useProductFeed()
onMounted(() => {
loadYoutubeFeed()
})
const scrollContainer = ref<HTMLElement>()
const { isLoading } = useInfiniteScroll(
scrollContainer,
async () => {
if (isLoading.value) return
await loadYoutubeFeed(true)
},
{ distance: 10 },
)
const gotoChannel = () => {
window.open('https://www.youtube.com/@nocodb?ref=product_feed', '_blank')
}
</script>
<template>
<div
ref="scrollContainer"
:style="{
height: 'calc(100dvh - var(--toolbar-height) - 5.25rem)',
}"
class="overflow-y-auto nc-scrollbar-md mt-9 mx-auto w-full"
>
<div class="max-w-[764px] mx-auto">
<div class="flex gap-3 items-center justify-between">
<span class="text-gray-900 font-semibold"> Recent Videos </span>
<NcButton type="secondary" size="small" @click="gotoChannel"> Go to Youtube </NcButton>
</div>
<div class="flex gap-2 flex-col">
<FeedYoutubePlayer
v-for="feed in youtubeFeed"
@ -18,6 +42,8 @@ onMounted(() => {
:embed_url="feed.embed_url"
/>
</div>
</div>
</div>
</template>
<style scoped lang="scss"></style>

4
packages/nc-gui/composables/useProductFeed.ts

@ -64,7 +64,7 @@ export const useProductFeed = createSharedComposable(() => {
},
})
ytNextPageToken.value = data.nextPageToken
youtubeFeed.value = data.videos
youtubeFeed.value = [...youtubeFeed.value, ...data.videos]
}
const loadGithubFeed = async (loadMore?: boolean) => {
@ -78,7 +78,7 @@ export const useProductFeed = createSharedComposable(() => {
per_page: 10,
},
})
githubFeed.value = data
githubFeed.value = [...githubFeed.value, ...data]
}
return {

Loading…
Cancel
Save