Trying out a new pattern for errors in data fetching. Next.js is not a fan of throwing errors. Instead it recommends returning different shapes for each state. Ref: https://nextjs.org/docs/app/building-your-application/routing/error-handling#handling-expected-errors-from-server-components It requires some more detailing and a bit more refactoring in non webview part, but it is a start. This webview specific implementation should not break web.
40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import { serverClient } from "@/lib/trpc/server"
|
|
|
|
import SectionContainer from "@/components/Section/Container"
|
|
import SectionHeader from "@/components/Section/Header"
|
|
import SectionLink from "@/components/Section/Link"
|
|
import Divider from "@/components/TempDesignSystem/Divider"
|
|
|
|
import Hero from "./Friend/Hero"
|
|
import Friend from "./Friend"
|
|
import Stats from "./Stats"
|
|
|
|
import styles from "./overview.module.css"
|
|
|
|
import type { AccountPageComponentProps } from "@/types/components/myPages/myPage/accountPage"
|
|
import type { LangParams } from "@/types/params"
|
|
|
|
export default async function Overview({
|
|
link,
|
|
subtitle,
|
|
title,
|
|
lang,
|
|
}: AccountPageComponentProps & LangParams) {
|
|
const user = await serverClient().user.get()
|
|
if (!user || "error" in user) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<SectionContainer>
|
|
<SectionHeader link={link} subtitle={subtitle} title={title} topTitle />
|
|
<Hero color="red">
|
|
<Friend user={user} color="burgundy" />
|
|
<Divider className={styles.divider} color="peach" />
|
|
<Stats user={user} lang={lang} />
|
|
</Hero>
|
|
<SectionLink link={link} variant="mobile" />
|
|
</SectionContainer>
|
|
)
|
|
}
|