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-12-11 10:52:36 +00:00
|
|
|
import 'vue-virtual-scroller/dist/vue-virtual-scroller.css'
|
2023-01-08 06:21:09 +00:00
|
|
|
import type { Paginator, WsEvents, mastodon } from 'masto'
|
2022-11-15 13:00:28 +00:00
|
|
|
|
2023-01-06 18:29:44 +00:00
|
|
|
const { paginator, stream, account } = defineProps<{
|
2023-01-08 06:21:09 +00:00
|
|
|
paginator: Paginator<mastodon.v1.Status[], mastodon.v1.ListAccountStatusesParams>
|
2022-12-28 21:43:46 +00:00
|
|
|
stream?: Promise<WsEvents>
|
2023-01-08 06:21:09 +00:00
|
|
|
context?: mastodon.v2.FilterContext
|
|
|
|
account?: mastodon.v1.Account
|
2023-01-08 07:49:32 +00:00
|
|
|
preprocess?: (items: mastodon.v1.Status[]) => mastodon.v1.Status[]
|
2022-11-15 13:00:28 +00:00
|
|
|
}>()
|
2022-11-28 22:57:27 +00:00
|
|
|
|
2023-01-01 14:29:11 +00:00
|
|
|
const { formatNumber } = useHumanReadableNumber()
|
2023-01-06 17:39:37 +00:00
|
|
|
const virtualScroller = $(useFeatureFlag('experimentalVirtualScroll'))
|
2023-01-06 18:29:44 +00:00
|
|
|
|
|
|
|
const showOriginSite = $computed(() =>
|
|
|
|
account && account.id !== currentUser.value?.account.id && getServerName(account) !== currentServer.value,
|
|
|
|
)
|
2022-11-15 13:00:28 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-01-06 18:29:44 +00:00
|
|
|
<CommonPaginator v-bind="{ paginator, stream, preprocess }" :virtual-scroller="virtualScroller">
|
2022-11-28 11:18:45 +00:00
|
|
|
<template #updater="{ number, update }">
|
|
|
|
<button py-4 border="b base" flex="~ col" p-3 w-full text-primary font-bold @click="update">
|
2023-01-01 14:29:11 +00:00
|
|
|
{{ $t('timeline.show_new_items', number, { named: { v: formatNumber(number) } }) }}
|
2022-11-28 11:18:45 +00:00
|
|
|
</button>
|
|
|
|
</template>
|
2022-12-27 23:25:41 +00:00
|
|
|
<template #default="{ item, older, newer, active }">
|
2022-11-28 22:57:27 +00:00
|
|
|
<template v-if="virtualScroller">
|
|
|
|
<DynamicScrollerItem :item="item" :active="active" tag="article">
|
2022-12-27 23:25:41 +00:00
|
|
|
<StatusCard :status="item" :context="context" :older="older" :newer="newer" />
|
2022-11-28 22:57:27 +00:00
|
|
|
</DynamicScrollerItem>
|
|
|
|
</template>
|
|
|
|
<template v-else>
|
2022-12-27 23:25:41 +00:00
|
|
|
<StatusCard :status="item" :context="context" :older="older" :newer="newer" />
|
2022-11-28 22:57:27 +00:00
|
|
|
</template>
|
2022-11-16 16:11:08 +00:00
|
|
|
</template>
|
2023-01-06 18:29:44 +00:00
|
|
|
<template v-if="context === 'account' && showOriginSite" #done>
|
|
|
|
<div p5 text-secondary text-center flex flex-col items-center gap1>
|
|
|
|
<span italic>{{ $t('timeline.view_older_posts') }}</span>
|
|
|
|
<a
|
|
|
|
:href="account!.url" target="_blank"
|
|
|
|
flex="~ gap-1" items-center text-primary
|
|
|
|
hover="underline text-primary-active"
|
|
|
|
>
|
|
|
|
<div i-ri:external-link-fill />
|
|
|
|
{{ $t('menu.open_in_original_site') }}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</template>
|
2022-11-16 16:11:08 +00:00
|
|
|
</CommonPaginator>
|
2022-11-15 13:00:28 +00:00
|
|
|
</template>
|