36004a7eba
Co-authored-by: patak <matias.capeletto@gmail.com>
32 lines
824 B
Vue
32 lines
824 B
Vue
<script setup lang="ts">
|
|
import type { mastodon } from 'masto'
|
|
|
|
const params = useRoute().params
|
|
const handle = computed(() => params.account as string)
|
|
|
|
definePageMeta({ name: 'account-index' })
|
|
|
|
const { t } = useI18n()
|
|
|
|
const account = await fetchAccountByHandle(handle.value)
|
|
|
|
function reorderAndFilter(items: mastodon.v1.Status[]) {
|
|
return reorderedTimeline(items, 'account')
|
|
}
|
|
|
|
const paginator = useMastoClient().v1.accounts.$select(account.id).statuses.list({ limit: 30, excludeReplies: true })
|
|
|
|
if (account) {
|
|
useHydratedHead({
|
|
title: () => `${t('account.posts')} | ${getDisplayName(account)} (@${account.acct})`,
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<AccountTabs />
|
|
<TimelinePaginator :paginator="paginator" :preprocess="reorderAndFilter" context="account" :account="account" />
|
|
</div>
|
|
</template>
|