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
|
2022-11-26 20:57:59 +01:00
|
|
|
import { DynamicScrollerItem } from 'vue-virtual-scroller'
|
2022-12-11 11:52:36 +01:00
|
|
|
import 'vue-virtual-scroller/dist/vue-virtual-scroller.css'
|
2024-01-09 09:56:15 +01:00
|
|
|
import type { mastodon } from 'masto'
|
2022-11-15 14:00:28 +01:00
|
|
|
|
2023-07-05 08:33:41 +02:00
|
|
|
const { paginator, stream, account, buffer = 10, endMessage = true } = defineProps<{
|
2024-01-09 09:56:15 +01:00
|
|
|
paginator: mastodon.Paginator<mastodon.v1.Status[], mastodon.rest.v1.ListAccountStatusesParams>
|
|
|
|
stream?: mastodon.streaming.Subscription
|
2023-01-08 07:21:09 +01:00
|
|
|
context?: mastodon.v2.FilterContext
|
|
|
|
account?: mastodon.v1.Account
|
2023-01-08 08:49:32 +01:00
|
|
|
preprocess?: (items: mastodon.v1.Status[]) => mastodon.v1.Status[]
|
2023-01-08 17:04:26 +01:00
|
|
|
buffer?: number
|
2023-04-30 17:49:33 +02:00
|
|
|
endMessage?: boolean | string
|
2022-11-15 14:00:28 +01:00
|
|
|
}>()
|
2022-11-28 23:57:27 +01:00
|
|
|
|
2023-01-01 15:29:11 +01:00
|
|
|
const { formatNumber } = useHumanReadableNumber()
|
2024-02-21 16:20:08 +01:00
|
|
|
const virtualScroller = usePreferences('experimentalVirtualScroller')
|
2023-01-06 19:29:44 +01:00
|
|
|
|
2024-02-21 16:20:08 +01:00
|
|
|
const showOriginSite = computed(() =>
|
2023-01-06 19:29:44 +01:00
|
|
|
account && account.id !== currentUser.value?.account.id && getServerName(account) !== currentServer.value,
|
|
|
|
)
|
2022-11-15 14:00:28 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-04-30 17:49:33 +02:00
|
|
|
<CommonPaginator v-bind="{ paginator, stream, preprocess, buffer, endMessage }" :virtual-scroller="virtualScroller">
|
2022-11-28 12:18:45 +01:00
|
|
|
<template #updater="{ number, update }">
|
2024-02-24 15:46:54 +01:00
|
|
|
<button id="elk_show_new_items" py-4 border="b base" flex="~ col" p-3 w-full text-primary font-bold @click="update">
|
2023-01-01 15:29:11 +01:00
|
|
|
{{ $t('timeline.show_new_items', number, { named: { v: formatNumber(number) } }) }}
|
2022-11-28 12:18:45 +01:00
|
|
|
</button>
|
|
|
|
</template>
|
2022-12-28 00:25:41 +01:00
|
|
|
<template #default="{ item, older, newer, active }">
|
2022-11-28 23:57:27 +01:00
|
|
|
<template v-if="virtualScroller">
|
|
|
|
<DynamicScrollerItem :item="item" :active="active" tag="article">
|
2022-12-28 00:25:41 +01:00
|
|
|
<StatusCard :status="item" :context="context" :older="older" :newer="newer" />
|
2022-11-28 23:57:27 +01:00
|
|
|
</DynamicScrollerItem>
|
|
|
|
</template>
|
|
|
|
<template v-else>
|
2022-12-28 00:25:41 +01:00
|
|
|
<StatusCard :status="item" :context="context" :older="older" :newer="newer" />
|
2022-11-28 23:57:27 +01:00
|
|
|
</template>
|
2022-11-16 17:11:08 +01:00
|
|
|
</template>
|
2023-07-05 08:33:41 +02: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 19:29:44 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
2022-11-16 17:11:08 +01:00
|
|
|
</CommonPaginator>
|
2022-11-15 14:00:28 +01:00
|
|
|
</template>
|