2022-12-13 21:01:25 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Account } from 'masto'
|
|
|
|
|
|
|
|
definePageMeta({ name: 'account-replies' })
|
|
|
|
|
|
|
|
const { t } = useI18n()
|
|
|
|
const params = useRoute().params
|
|
|
|
const handle = $(computedEager(() => params.account as string))
|
|
|
|
|
2023-01-02 00:00:13 +00:00
|
|
|
const account = await fetchAccountByHandle(handle)
|
2022-12-13 21:01:25 +00:00
|
|
|
|
2023-01-02 00:00:13 +00:00
|
|
|
const paginator = useMasto().accounts.iterateStatuses(account.id, { excludeReplies: false })
|
2022-12-13 21:01:25 +00:00
|
|
|
|
|
|
|
if (account) {
|
|
|
|
useHeadFixed({
|
2023-01-02 00:00:13 +00:00
|
|
|
title: () => `${t('tab.posts_with_replies')} | ${getDisplayName(account)} (@${account.acct})`,
|
2022-12-13 21:01:25 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<AccountTabs />
|
2023-01-04 12:09:09 +00:00
|
|
|
<TimelinePaginator :paginator="paginator" :preprocess="reorderedTimeline" context="account" />
|
2022-12-13 21:01:25 +00:00
|
|
|
</div>
|
|
|
|
</template>
|