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

38 lines
1 KiB
Vue
Raw Normal View History

2022-11-13 16:05:32 +00:00
<script setup lang="ts">
const params = useRoute().params
const accountName = $(computedEager(() => toShortHandle(params.account as string)))
2022-11-28 14:25:32 +00:00
const { t } = useI18n()
2022-11-30 07:11:26 +00:00
const { data: account, refresh } = $(await useAsyncData(() => fetchAccountByHandle(accountName).catch(() => null)))
if (account) {
useHeadFixed({
title: () => `${getDisplayName(account)} (@${account.acct})`,
})
}
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>
2022-11-28 14:25:32 +00:00
<span text-lg font-bold>{{ account ? getDisplayName(account) : t('nav_side.profile') }}</span>
2022-11-26 12:58:10 +00:00
</template>
<template v-if="account">
<AccountHeader :account="account" command border="b base" />
<NuxtPage />
</template>
<CommonNotFound v-else>
2022-11-29 21:50:13 +00:00
{{ $t('error.account_not_found', [`@${accountName}`]) }}
</CommonNotFound>
</MainContent>
2022-11-13 16:05:32 +00:00
</template>