elk/components/timeline/TimelinePaginator.vue

34 lines
1 KiB
Vue
Raw Normal View History

2022-11-15 13:00:28 +00:00
<script setup lang="ts">
2022-11-27 05:02:19 +00:00
// @ts-expect-error missing types
import { DynamicScrollerItem } from 'vue-virtual-scroller'
import type { Paginator, Status, WsEvents } from 'masto'
2022-11-15 13:00:28 +00:00
const { paginator, stream } = defineProps<{
2022-11-15 13:00:28 +00:00
paginator: Paginator<any, Status[]>
stream?: WsEvents
2022-11-15 13:00:28 +00:00
}>()
</script>
<template>
<CommonPaginator v-bind="{ paginator, stream }" virtual-scroller>
<template #updater="{ number, update }">
<button py-4 border="b base" flex="~ col" p-3 w-full text-primary font-bold @click="update">
Show {{ number }} new items
</button>
</template>
<template #default="{ item, active }">
2022-11-27 23:29:21 +00:00
<DynamicScrollerItem :item="item" :active="active" tag="article">
<StatusCard
:status="item"
border="b base" py-3
/>
</DynamicScrollerItem>
2022-11-16 16:11:08 +00:00
</template>
2022-11-27 05:02:19 +00: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 16:11:08 +00:00
</CommonPaginator>
2022-11-15 13:00:28 +00:00
</template>