2022-11-13 17:05:32 +01:00
|
|
|
<script setup lang="ts">
|
2022-12-12 00:30:26 +01:00
|
|
|
definePageMeta({
|
2023-02-05 13:10:19 +01:00
|
|
|
key: route => `${route.params.server ?? currentServer.value}:${route.params.account}`,
|
2022-12-12 00:30:26 +01:00
|
|
|
})
|
|
|
|
|
2022-11-13 17:05:32 +01:00
|
|
|
const params = useRoute().params
|
2024-02-24 13:24:21 +01:00
|
|
|
const accountName = computed(() => toShortHandle(params.account as string))
|
2022-11-20 22:38:52 +01:00
|
|
|
|
2022-11-28 15:25:32 +01:00
|
|
|
const { t } = useI18n()
|
|
|
|
|
2024-02-24 17:46:14 +01:00
|
|
|
const { data: account, pending, refresh } = await useAsyncData(() => fetchAccountByHandle(accountName.value).catch(() => null), { immediate: import.meta.client, default: () => shallowRef() })
|
2024-03-04 17:01:56 +01:00
|
|
|
const relationship = computed(() => account.value ? useRelationship(account.value).value : undefined)
|
2022-11-20 22:38:52 +01:00
|
|
|
|
2023-02-04 18:02:05 +01:00
|
|
|
const userSettings = useUserSettings()
|
|
|
|
|
2022-11-27 18:34:45 +01: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 17:05:32 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-26 13:58:10 +01:00
|
|
|
<MainContent back>
|
|
|
|
<template #title>
|
2023-02-04 18:02:05 +01:00
|
|
|
<ContentRich
|
|
|
|
timeline-title-style
|
|
|
|
:content="account ? getDisplayName(account) : t('nav.profile')"
|
|
|
|
:show-emojis="!getPreferences(userSettings, 'hideUsernameEmojis')"
|
2023-02-15 11:21:33 +01:00
|
|
|
:markdown="false"
|
2023-02-04 18:02:05 +01:00
|
|
|
/>
|
2022-11-26 13:58:10 +01:00
|
|
|
</template>
|
|
|
|
|
2022-12-26 15:14:48 +01:00
|
|
|
<template v-if="pending" />
|
|
|
|
<template v-else-if="account">
|
2022-12-04 18:28:22 +01: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 17:50:38 +01: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-26 00:49:56 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<CommonNotFound v-else>
|
2022-11-29 22:50:13 +01:00
|
|
|
{{ $t('error.account_not_found', [`@${accountName}`]) }}
|
2022-11-26 00:49:56 +01:00
|
|
|
</CommonNotFound>
|
|
|
|
</MainContent>
|
2022-11-13 17:05:32 +01:00
|
|
|
</template>
|