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

25 lines
743 B
Vue
Raw Normal View History

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