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

32 wiersze
814 B
Vue
Czysty Zwykły widok Historia

<script setup lang="ts">
import type { mastodon } from 'masto'
const params = useRoute().params
2022-11-30 07:08:10 +00:00
const handle = $(computedEager(() => params.account as string))
definePageMeta({ name: 'account-index' })
2022-12-13 21:01:25 +00:00
const { t } = useI18n()
const account = await fetchAccountByHandle(handle)
function reorderAndFilter(items: mastodon.v1.Status[]) {
return reorderedTimeline(items, 'account')
}
2023-01-15 08:38:02 +00:00
const paginator = useMastoClient().v1.accounts.listStatuses(account.id, { limit: 30, excludeReplies: true })
2022-11-26 17:36:23 +00:00
2022-12-13 21:01:25 +00:00
if (account) {
useHeadFixed({
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>