From 41b887faf6240065bdc61b66bae0d2c86082016a Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Fri, 21 Mar 2025 01:00:13 +0800 Subject: [PATCH] :sparkles: Account page support --- pages/users/[name].vue | 46 +++++++++++++++++++++++++++++------------- 1 file changed, 32 insertions(+), 14 deletions(-) diff --git a/pages/users/[name].vue b/pages/users/[name].vue index 1747385..ac52aa8 100644 --- a/pages/users/[name].vue +++ b/pages/users/[name].vue @@ -6,25 +6,34 @@
- {{ account?.nick }} @{{ account?.name }} - {{ account?.description }} + {{ account?.nick }} @{{ account?.name }} +

+ {{ accountStatus.status ? accountStatus.status.label : accountStatus["is_online"] ? "Online" : "Offline" }} +

-
- -
- - - + + + +
+ +
+
+ +

The user has no account page.

+
+
- +

Description

-

{{ account.description }}

+

{{ account?.profile.description }}

Joined At

{{ new Date(account.created_at).toLocaleString() }}

@@ -41,8 +50,6 @@ const { t } = useI18n() const route = useRoute() const config = useRuntimeConfig() -const tab = ref(1) - const { data: account } = await useFetch(`${config.public.solarNetworkApi}/cgi/id/users/${route.params.name}`) if (account.value == null) { @@ -52,6 +59,17 @@ if (account.value == null) { }) } -const urlOfAvatar = computed(() => account.value?.avatar ? `${config.public.solarNetworkApi}/cgi/uc/attachments/${account.value.avatar}` : void 0) -const urlOfBanner = computed(() => account.value?.banner ? `${config.public.solarNetworkApi}/cgi/uc/attachments/${account.value.banner}` : void 0) +const { data: accountPage, status: accountPageStatus } = await useFetch( + `${config.public.solarNetworkApi}/cgi/id/users/${route.params.name}/page`, +) +const { data: accountStatus, status: accountStatusStatus } = await useFetch( + `${config.public.solarNetworkApi}/cgi/id/users/${route.params.name}/status`, +) + +const urlOfAvatar = computed(() => + account.value?.avatar ? `${config.public.solarNetworkApi}/cgi/uc/attachments/${account.value.avatar}` : void 0, +) +const urlOfBanner = computed(() => + account.value?.banner ? `${config.public.solarNetworkApi}/cgi/uc/attachments/${account.value.banner}` : void 0, +)