2022-11-25 23:49:56 +00:00
|
|
|
<script setup lang="ts">
|
2023-01-23 19:33:21 +00:00
|
|
|
import type { mastodon } from 'masto'
|
|
|
|
|
2022-11-25 23:49:56 +00:00
|
|
|
const params = useRoute().params
|
2024-02-24 12:24:21 +00:00
|
|
|
const handle = computed(() => params.account as string)
|
2022-11-25 23:49:56 +00:00
|
|
|
|
2022-11-30 17:15:18 +00:00
|
|
|
definePageMeta({ name: 'account-index' })
|
|
|
|
|
2022-12-13 21:01:25 +00:00
|
|
|
const { t } = useI18n()
|
|
|
|
|
2024-02-21 15:20:08 +00:00
|
|
|
const account = await fetchAccountByHandle(handle.value)
|
2022-11-25 23:49:56 +00:00
|
|
|
|
2024-04-07 18:19:35 +01:00
|
|
|
// we need to ensure `pinned === true` on status
|
|
|
|
// because this prop is appeared only on current account's posts
|
|
|
|
function applyPinned(statuses: mastodon.v1.Status[]) {
|
|
|
|
return statuses.map((status) => {
|
|
|
|
status.pinned = true
|
|
|
|
return status
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-03-30 20:01:24 +01:00
|
|
|
function reorderAndFilter(items: mastodon.v1.Status[]) {
|
|
|
|
return reorderedTimeline(items, 'account')
|
|
|
|
}
|
2023-01-23 19:33:21 +00:00
|
|
|
|
2024-04-07 18:19:35 +01:00
|
|
|
const pinnedPaginator = useMastoClient().v1.accounts.$select(account.id).statuses.list({ pinned: true })
|
|
|
|
const accountPaginator = useMastoClient().v1.accounts.$select(account.id).statuses.list({ limit: 30, excludeReplies: true })
|
2022-11-26 17:36:23 +00:00
|
|
|
|
2022-12-13 21:01:25 +00:00
|
|
|
if (account) {
|
2023-04-16 20:33:51 +01:00
|
|
|
useHydratedHead({
|
2023-01-02 00:00:13 +00:00
|
|
|
title: () => `${t('account.posts')} | ${getDisplayName(account)} (@${account.acct})`,
|
2022-12-13 21:01:25 +00:00
|
|
|
})
|
|
|
|
}
|
2022-11-25 23:49:56 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-12-03 05:42:00 +00:00
|
|
|
<div>
|
2022-12-13 21:01:25 +00:00
|
|
|
<AccountTabs />
|
2024-04-07 18:19:35 +01:00
|
|
|
<TimelinePaginator :paginator="pinnedPaginator" :preprocess="applyPinned" context="account" :account="account" :end-message="false" />
|
|
|
|
<!-- Upper border -->
|
|
|
|
<div h="1px" w-auto bg-border mb-1 />
|
|
|
|
<TimelinePaginator :paginator="accountPaginator" :preprocess="reorderAndFilter" context="account" :account="account" />
|
2022-11-25 23:49:56 +00:00
|
|
|
</div>
|
|
|
|
</template>
|