mirror of https://github.com/elk-zone/elk.git
56 lines
2.2 KiB
Vue
56 lines
2.2 KiB
Vue
<script setup lang="ts">
|
|
// @ts-expect-error missing types
|
|
import { DynamicScrollerItem } from 'vue-virtual-scroller'
|
|
import 'vue-virtual-scroller/dist/vue-virtual-scroller.css'
|
|
import type { Paginator, WsEvents, mastodon } from 'masto'
|
|
|
|
const { paginator, stream, account, buffer = 10 } = defineProps<{
|
|
paginator: Paginator<mastodon.v1.Status[], mastodon.v1.ListAccountStatusesParams>
|
|
stream?: Promise<WsEvents>
|
|
context?: mastodon.v2.FilterContext
|
|
account?: mastodon.v1.Account
|
|
preprocess?: (items: mastodon.v1.Status[]) => mastodon.v1.Status[]
|
|
buffer?: number
|
|
}>()
|
|
|
|
const { formatNumber } = useHumanReadableNumber()
|
|
const virtualScroller = $(usePreferences('experimentalVirtualScroller'))
|
|
|
|
const showOriginSite = $computed(() =>
|
|
account && account.id !== currentUser.value?.account.id && getServerName(account) !== currentServer.value,
|
|
)
|
|
</script>
|
|
|
|
<template>
|
|
<CommonPaginator v-bind="{ paginator, stream, preprocess, buffer }" :virtual-scroller="virtualScroller">
|
|
<template #updater="{ number, update }">
|
|
<button py-4 border="b base" flex="~ col" p-3 w-full text-primary font-bold @click="update">
|
|
{{ $t('timeline.show_new_items', number, { named: { v: formatNumber(number) } }) }}
|
|
</button>
|
|
</template>
|
|
<template #default="{ item, older, newer, active }">
|
|
<template v-if="virtualScroller">
|
|
<DynamicScrollerItem :item="item" :active="active" tag="article">
|
|
<StatusCard :status="item" :context="context" :older="older" :newer="newer" />
|
|
</DynamicScrollerItem>
|
|
</template>
|
|
<template v-else>
|
|
<StatusCard :status="item" :context="context" :older="older" :newer="newer" />
|
|
</template>
|
|
</template>
|
|
<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>
|
|
<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>
|
|
</div>
|
|
</template>
|
|
</CommonPaginator>
|
|
</template>
|