2022-11-13 16:05:32 +00:00
|
|
|
<script setup lang="ts">
|
2022-12-11 23:30:26 +00:00
|
|
|
definePageMeta({
|
|
|
|
key: route => `${route.params.server}:${route.params.account}`,
|
|
|
|
})
|
|
|
|
|
2022-11-13 16:05:32 +00:00
|
|
|
const params = useRoute().params
|
2022-11-27 17:34:45 +00:00
|
|
|
const accountName = $(computedEager(() => toShortHandle(params.account as string)))
|
2022-11-20 21:38:52 +00:00
|
|
|
|
2022-11-28 14:25:32 +00:00
|
|
|
const { t } = useI18n()
|
|
|
|
|
2022-12-26 14:14:48 +00:00
|
|
|
const { data: account, pending, refresh } = $(await useAsyncData(() => fetchAccountByHandle(accountName).catch(() => null), { watch: [isMastoInitialised], immediate: isMastoInitialised.value }))
|
2022-12-04 16:50:38 +00:00
|
|
|
const relationship = $computed(() => account ? useRelationship(account).value : undefined)
|
2022-11-20 21:38:52 +00:00
|
|
|
|
2022-11-27 17:34:45 +00:00
|
|
|
onReactivated(() => {
|
|
|
|
// Silently update data when reentering the page
|
|
|
|
// The user will see the previous content first, and any changes will be updated to the UI when the request is completed
|
|
|
|
refresh()
|
|
|
|
})
|
2022-11-13 16:05:32 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-26 12:58:10 +00:00
|
|
|
<MainContent back>
|
|
|
|
<template #title>
|
2023-01-04 23:17:30 +00:00
|
|
|
<ContentRich timeline-title-style :content="account ? getDisplayName(account) : t('nav.profile')" />
|
2022-11-26 12:58:10 +00:00
|
|
|
</template>
|
|
|
|
|
2022-12-26 14:14:48 +00:00
|
|
|
<template v-if="pending" />
|
|
|
|
<template v-else-if="account">
|
2022-12-04 17:28:22 +00:00
|
|
|
<AccountMoved v-if="account.moved" :account="account" />
|
|
|
|
<AccountHeader :account="account" command border="b base" :class="{ 'op-50 grayscale-50': !!account.moved }" />
|
2022-12-04 16:50:38 +00:00
|
|
|
|
|
|
|
<div v-if="relationship?.blockedBy" h-30 flex="~ col center gap-2">
|
|
|
|
<div text-secondary>
|
|
|
|
{{ $t('account.profile_unavailable') }}
|
|
|
|
</div>
|
|
|
|
<div text-secondary-light text-sm>
|
|
|
|
{{ $t('account.blocked_by') }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<NuxtPage v-else />
|
2022-11-25 23:49:56 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<CommonNotFound v-else>
|
2022-11-29 21:50:13 +00:00
|
|
|
{{ $t('error.account_not_found', [`@${accountName}`]) }}
|
2022-11-25 23:49:56 +00:00
|
|
|
</CommonNotFound>
|
|
|
|
</MainContent>
|
2022-11-13 16:05:32 +00:00
|
|
|
</template>
|