2022-11-15 16:00:28 +03:00
|
|
|
<script setup lang="ts">
|
2022-11-27 08:02:19 +03:00
|
|
|
// @ts-expect-error missing types
|
2022-11-26 22:57:59 +03:00
|
|
|
import { DynamicScrollerItem } from 'vue-virtual-scroller'
|
2022-11-28 14:18:45 +03:00
|
|
|
import type { Paginator, Status, WsEvents } from 'masto'
|
2022-11-15 16:00:28 +03:00
|
|
|
|
2022-11-28 14:18:45 +03:00
|
|
|
const { paginator, stream } = defineProps<{
|
2022-11-15 16:00:28 +03:00
|
|
|
paginator: Paginator<any, Status[]>
|
2022-11-28 14:18:45 +03:00
|
|
|
stream?: WsEvents
|
2022-11-15 16:00:28 +03:00
|
|
|
}>()
|
2022-11-29 01:57:27 +03:00
|
|
|
|
|
|
|
const virtualScroller = $(computedEager(() => useFeatureFlags().experimentalVirtualScroll))
|
2022-11-29 18:25:45 +03:00
|
|
|
const updater = ref()
|
|
|
|
const observer = new IntersectionObserver((entries) => {
|
|
|
|
const [entry] = entries
|
|
|
|
if (entry.isIntersecting) {
|
|
|
|
observer.unobserve(entry.target)
|
|
|
|
setTimeout(() => {
|
|
|
|
(entry.target as HTMLButtonElement)?.click()
|
|
|
|
}, 50)
|
|
|
|
}
|
|
|
|
}, { threshold: 0.5 })
|
|
|
|
|
|
|
|
watch(updater, (v) => {
|
|
|
|
if (v)
|
|
|
|
observer.observe(v)
|
|
|
|
})
|
2022-11-15 16:00:28 +03:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-29 01:57:27 +03:00
|
|
|
<CommonPaginator v-bind="{ paginator, stream }" :virtual-scroller="virtualScroller">
|
2022-11-28 14:18:45 +03:00
|
|
|
<template #updater="{ number, update }">
|
2022-11-29 18:25:45 +03:00
|
|
|
<button
|
|
|
|
v-if="number"
|
|
|
|
ref="updater"
|
|
|
|
style="background: repeating-linear-gradient(to right,var(--c-primary) 0%,var(--c-primary-active) 100%)"
|
|
|
|
absolute h-1 w-full animate-pulse
|
|
|
|
:aria-title="$t('timeline.show_new_items', [number])"
|
|
|
|
@click="update"
|
|
|
|
/>
|
2022-11-28 14:18:45 +03:00
|
|
|
</template>
|
2022-11-26 22:57:59 +03:00
|
|
|
<template #default="{ item, active }">
|
2022-11-29 01:57:27 +03:00
|
|
|
<template v-if="virtualScroller">
|
|
|
|
<DynamicScrollerItem :item="item" :active="active" tag="article">
|
|
|
|
<StatusCard :status="item" border="b base" py-3 />
|
|
|
|
</DynamicScrollerItem>
|
|
|
|
</template>
|
|
|
|
<template v-else>
|
|
|
|
<StatusCard :status="item" border="b base" py-3 />
|
|
|
|
</template>
|
2022-11-16 19:11:08 +03:00
|
|
|
</template>
|
2022-11-27 08:02:19 +03:00
|
|
|
<template #loading>
|
|
|
|
<StatusCardSkeleton border="b base" py-3 />
|
|
|
|
<StatusCardSkeleton border="b base" py-3 op50 />
|
|
|
|
<StatusCardSkeleton border="b base" py-3 op25 />
|
|
|
|
</template>
|
2022-11-16 19:11:08 +03:00
|
|
|
</CommonPaginator>
|
2022-11-15 16:00:28 +03:00
|
|
|
</template>
|