2022-11-15 22:00:28 +09:00
|
|
|
<script setup lang="ts">
|
2022-11-27 14:02:19 +09:00
|
|
|
// @ts-expect-error missing types
|
2022-11-27 04:57:59 +09:00
|
|
|
import { DynamicScrollerItem } from 'vue-virtual-scroller'
|
2022-12-11 19:52:36 +09:00
|
|
|
import 'vue-virtual-scroller/dist/vue-virtual-scroller.css'
|
2022-12-05 04:28:26 +09:00
|
|
|
import type { FilterContext, Paginator, Status, WsEvents } from 'masto'
|
2022-11-15 22:00:28 +09:00
|
|
|
|
2022-11-28 20:18:45 +09:00
|
|
|
const { paginator, stream } = defineProps<{
|
2022-11-15 22:00:28 +09:00
|
|
|
paginator: Paginator<any, Status[]>
|
2022-11-28 20:18:45 +09:00
|
|
|
stream?: WsEvents
|
2022-12-05 04:28:26 +09:00
|
|
|
context?: FilterContext
|
2022-12-28 02:47:05 +09:00
|
|
|
preprocess?: (items: any[]) => any[]
|
2022-11-15 22:00:28 +09:00
|
|
|
}>()
|
2022-11-29 07:57:27 +09:00
|
|
|
|
|
|
|
const virtualScroller = $(computedEager(() => useFeatureFlags().experimentalVirtualScroll))
|
2022-11-15 22:00:28 +09:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-12-28 02:47:05 +09:00
|
|
|
<CommonPaginator v-bind="{ paginator, stream, preprocess }" :virtual-scroller="virtualScroller">
|
2022-11-28 20:18:45 +09:00
|
|
|
<template #updater="{ number, update }">
|
|
|
|
<button py-4 border="b base" flex="~ col" p-3 w-full text-primary font-bold @click="update">
|
2022-12-02 11:18:36 +09:00
|
|
|
{{ $t('timeline.show_new_items', number) }}
|
2022-11-28 20:18:45 +09:00
|
|
|
</button>
|
|
|
|
</template>
|
2022-12-28 07:18:16 +09:00
|
|
|
<template #default="{ item, older, newer, active, index }">
|
2022-11-29 07:57:27 +09:00
|
|
|
<template v-if="virtualScroller">
|
|
|
|
<DynamicScrollerItem :item="item" :active="active" tag="article">
|
2022-12-28 02:47:05 +09:00
|
|
|
<StatusCard
|
|
|
|
:status="item" :context="context"
|
|
|
|
:connect-reply="item.id === older?.inReplyToId"
|
|
|
|
:show-reply-to="!(item.inReplyToId && item.inReplyToId === newer?.id)"
|
2022-12-28 07:18:16 +09:00
|
|
|
:class="{ 'border-t border-base': index !== 0 && !(item.inReplyToId && item.inReplyToId === newer?.id) }"
|
2022-12-28 02:47:05 +09:00
|
|
|
/>
|
2022-11-29 07:57:27 +09:00
|
|
|
</DynamicScrollerItem>
|
|
|
|
</template>
|
|
|
|
<template v-else>
|
2022-12-28 02:47:05 +09:00
|
|
|
<StatusCard
|
|
|
|
:status="item" :context="context"
|
|
|
|
:connect-reply="item.id === older?.inReplyToId"
|
|
|
|
:show-reply-to="!(item.inReplyToId && item.inReplyToId === newer?.id)"
|
|
|
|
:class="{ 'border-t border-base': !(item.inReplyToId && item.inReplyToId === newer?.id) }"
|
|
|
|
/>
|
2022-11-29 07:57:27 +09:00
|
|
|
</template>
|
2022-11-17 01:11:08 +09:00
|
|
|
</template>
|
2022-11-27 14:02:19 +09:00
|
|
|
<template #loading>
|
2022-12-06 20:07:17 +09:00
|
|
|
<StatusCardSkeleton border="b base" />
|
|
|
|
<StatusCardSkeleton border="b base" op50 />
|
|
|
|
<StatusCardSkeleton border="b base" op25 />
|
2022-11-27 14:02:19 +09:00
|
|
|
</template>
|
2022-11-17 01:11:08 +09:00
|
|
|
</CommonPaginator>
|
2022-11-15 22:00:28 +09:00
|
|
|
</template>
|