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-07-05 07:33:41 +01:00
|
|
|
const { paginator, stream, account, buffer = 10, endMessage = true } = 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[]
|
2023-01-08 16:04:26 +00:00
|
|
|
buffer?: number
|
2023-04-30 16:49:33 +01:00
|
|
|
endMessage?: boolean | string
|
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-15 14:19:22 +00:00
|
|
|
const virtualScroller = $(usePreferences('experimentalVirtualScroller'))
|
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-04-30 16:49:33 +01:00
|
|
|
<CommonPaginator v-bind="{ paginator, stream, preprocess, buffer, endMessage }" :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-07-05 07:33:41 +01:00
|
|
|
<template v-if="context === 'account' " #done="{ items }">
|
|
|
|
<div
|
|
|
|
v-if="showOriginSite || items.length === 0"
|
|
|
|
p5 text-secondary text-center flex flex-col items-center gap1
|
|
|
|
>
|
|
|
|
<template v-if="showOriginSite">
|
|
|
|
<span italic>{{ $t('timeline.view_older_posts') }}</span>
|
|
|
|
<NuxtLink
|
|
|
|
:href="account!.url" target="_blank" external
|
|
|
|
flex="~ gap-1" items-center text-primary
|
|
|
|
hover="underline text-primary-active"
|
|
|
|
>
|
|
|
|
<div i-ri:external-link-fill />
|
|
|
|
{{ $t('menu.open_in_original_site') }}
|
|
|
|
</NuxtLink>
|
|
|
|
</template>
|
|
|
|
<span v-else-if="items.length === 0">No posts here!</span>
|
2023-01-06 18:29:44 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
2022-11-16 16:11:08 +00:00
|
|
|
</CommonPaginator>
|
2022-11-15 13:00:28 +00:00
|
|
|
</template>
|