elk/components/timeline/TimelinePaginator.vue

34 lines
1.0 KiB
Vue
Raw Normal View History

2022-11-15 14:00:28 +01:00
<script setup lang="ts">
2022-11-27 06:02:19 +01:00
// @ts-expect-error missing types
import { DynamicScrollerItem } from 'vue-virtual-scroller'
import type { Paginator, Status, WsEvents } from 'masto'
2022-11-15 14:00:28 +01:00
const { paginator, stream } = defineProps<{
2022-11-15 14:00:28 +01:00
paginator: Paginator<any, Status[]>
stream?: WsEvents
2022-11-15 14:00:28 +01: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-28 00:29:21 +01:00
<DynamicScrollerItem :item="item" :active="active" tag="article">
<StatusCard
:status="item"
border="b base" py-3
/>
</DynamicScrollerItem>
2022-11-16 17:11:08 +01:00
</template>
2022-11-27 06:02:19 +01: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 17:11:08 +01:00
</CommonPaginator>
2022-11-15 14:00:28 +01:00
</template>