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

30 lines
846 B
Vue
Raw Normal View History

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))
const { data: account } = await useAsyncData(`account:${handle}`, async () => (
window.history.state?.account as Account | undefined)
?? await fetchAccountByHandle(handle),
)
const paginator = useMasto().accounts.iterateStatuses(account.value!.id, { excludeReplies: false })
if (account) {
useHeadFixed({
title: () => `${t('tab.posts_with_replies')} | ${getDisplayName(account.value!)} (@${account.value!.acct})`,
})
}
</script>
<template>
<div>
<AccountTabs />
2022-12-29 16:25:04 +00:00
<TimelinePaginator :paginator="paginator" :preprocess="timelineWithReorderedReplies" context="account" />
2022-12-13 21:01:25 +00:00
</div>
</template>