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
|
2022-11-26 19:57:59 +00:00
|
|
|
import { DynamicScrollerItem } from 'vue-virtual-scroller'
|
2022-11-28 11:18:45 +00:00
|
|
|
import type { Paginator, Status, WsEvents } from 'masto'
|
2022-11-15 13:00:28 +00:00
|
|
|
|
2022-11-28 11:18:45 +00:00
|
|
|
const { paginator, stream } = defineProps<{
|
2022-11-15 13:00:28 +00:00
|
|
|
paginator: Paginator<any, Status[]>
|
2022-11-28 11:18:45 +00:00
|
|
|
stream?: WsEvents
|
2022-11-15 13:00:28 +00:00
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-28 11:18:45 +00:00
|
|
|
<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>
|
2022-11-26 19:57:59 +00:00
|
|
|
<template #default="{ item, active }">
|
2022-11-27 23:29:21 +00:00
|
|
|
<DynamicScrollerItem :item="item" :active="active" tag="article">
|
2022-11-26 19:57:59 +00:00
|
|
|
<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>
|