36004a7eba
Co-authored-by: patak <matias.capeletto@gmail.com>
25 lines
743 B
Vue
25 lines
743 B
Vue
<script setup lang="ts">
|
|
const { t } = useI18n()
|
|
const params = useRoute().params
|
|
const handle = computed(() => params.account as string)
|
|
|
|
definePageMeta({ name: 'account-following' })
|
|
|
|
const account = await fetchAccountByHandle(handle.value)
|
|
const paginator = account ? useMastoClient().v1.accounts.$select(account.id).following.list() : null
|
|
|
|
const isSelf = useSelfAccount(account)
|
|
|
|
if (account) {
|
|
useHydratedHead({
|
|
title: () => `${t('account.following')} | ${getDisplayName(account)} (@${account.acct})`,
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<template v-if="paginator">
|
|
<AccountPaginator :paginator="paginator" :relationship-context="isSelf ? 'following' : undefined" context="following" :account="account" />
|
|
</template>
|
|
</template>
|