elk/pages/[[server]]/@[account]/index/index.vue

32 wiersze
824 B
Vue
Czysty Zwykły widok Historia

<script setup lang="ts">
import type { mastodon } from 'masto'
const params = useRoute().params
const handle = computed(() => params.account as string)
definePageMeta({ name: 'account-index' })
2022-12-13 21:01:25 +00:00
const { t } = useI18n()
const account = await fetchAccountByHandle(handle.value)
function reorderAndFilter(items: mastodon.v1.Status[]) {
return reorderedTimeline(items, 'account')
}
2024-01-09 08:56:15 +00:00
const paginator = useMastoClient().v1.accounts.$select(account.id).statuses.list({ limit: 30, excludeReplies: true })
2022-11-26 17:36:23 +00:00
2022-12-13 21:01:25 +00:00
if (account) {
useHydratedHead({
title: () => `${t('account.posts')} | ${getDisplayName(account)} (@${account.acct})`,
2022-12-13 21:01:25 +00:00
})
}
</script>
<template>
<div>
2022-12-13 21:01:25 +00:00
<AccountTabs />
<TimelinePaginator :paginator="paginator" :preprocess="reorderAndFilter" context="account" :account="account" />
</div>
</template>