2022-11-15 18:56:11 +03:00
|
|
|
<script setup lang="ts">
|
2022-12-14 00:01:25 +03:00
|
|
|
const { t } = useI18n()
|
2022-11-15 18:56:11 +03:00
|
|
|
const params = useRoute().params
|
2024-02-24 15:24:21 +03:00
|
|
|
const handle = computed(() => params.account as string)
|
2022-11-23 02:08:36 +03:00
|
|
|
|
2022-11-30 20:15:18 +03:00
|
|
|
definePageMeta({ name: 'account-followers' })
|
|
|
|
|
2024-02-21 18:20:08 +03:00
|
|
|
const account = await fetchAccountByHandle(handle.value)
|
2024-01-09 11:56:15 +03:00
|
|
|
const paginator = account ? useMastoClient().v1.accounts.$select(account.id).followers.list() : null
|
2022-12-14 00:01:25 +03:00
|
|
|
|
2023-01-10 10:49:49 +03:00
|
|
|
const isSelf = useSelfAccount(account)
|
|
|
|
|
2022-12-14 00:01:25 +03:00
|
|
|
if (account) {
|
2023-04-16 22:33:51 +03:00
|
|
|
useHydratedHead({
|
2023-01-15 09:02:17 +03:00
|
|
|
title: () => `${t('account.followers')} | ${getDisplayName(account)} (@${account.acct})`,
|
2022-12-14 00:01:25 +03:00
|
|
|
})
|
|
|
|
}
|
2022-11-15 18:56:11 +03:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-01-05 19:48:20 +03:00
|
|
|
<template v-if="paginator">
|
2023-01-14 13:39:49 +03:00
|
|
|
<AccountPaginator :paginator="paginator" :relationship-context="isSelf ? 'followedBy' : undefined" context="followers" :account="account" />
|
2022-11-23 20:16:10 +03:00
|
|
|
</template>
|
2022-11-15 18:56:11 +03:00
|
|
|
</template>
|