<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))

const account = await fetchAccountByHandle(handle)

const paginator = useMasto().accounts.iterateStatuses(account.id, { excludeReplies: false })

if (account) {
  useHeadFixed({
    title: () => `${t('tab.posts_with_replies')} | ${getDisplayName(account)} (@${account.acct})`,
  })
}
</script>

<template>
  <div>
    <AccountTabs />
    <TimelinePaginator :paginator="paginator" :preprocess="timelineWithReorderedReplies" context="account" />
  </div>
</template>