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