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

25 lines
744 B
Vue
Raw Normal View History

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