mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
59802f0896
Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe>
38 lines
1 KiB
Vue
38 lines
1 KiB
Vue
<script setup lang="ts">
|
|
const params = useRoute().params
|
|
const accountName = $(computedEager(() => toShortHandle(params.account as string)))
|
|
|
|
const { t } = useI18n()
|
|
|
|
const { data: account, refresh } = $(await useAsyncData(() => fetchAccountByName(accountName).catch(() => null)))
|
|
|
|
if (account) {
|
|
useHead({
|
|
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()
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<MainContent back>
|
|
<template #title>
|
|
<span text-lg font-bold>{{ account ? getDisplayName(account) : t('nav_side.profile') }}</span>
|
|
</template>
|
|
|
|
<template v-if="account">
|
|
<AccountHeader :account="account" command border="b base" />
|
|
<NuxtPage />
|
|
</template>
|
|
|
|
<CommonNotFound v-else>
|
|
Account @{{ accountName }} not found
|
|
</CommonNotFound>
|
|
</MainContent>
|
|
</template>
|