aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/dashboard/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/app/dashboard/page.tsx')
-rw-r--r--frontend/src/app/dashboard/page.tsx31
1 files changed, 25 insertions, 6 deletions
diff --git a/frontend/src/app/dashboard/page.tsx b/frontend/src/app/dashboard/page.tsx
index 8ca17c6..289dcab 100644
--- a/frontend/src/app/dashboard/page.tsx
+++ b/frontend/src/app/dashboard/page.tsx
@@ -1,15 +1,34 @@
import { Metadata } from "next";
-import Link from "next/link";
+import { createUserServiceClient } from "@/client/client";
+import { getSession, withPageAuthRequired } from "@auth0/nextjs-auth0";
+import Layout from "@/components/Layout/Layout";
+import { redirect, RedirectType } from "next/navigation";
+import { red } from "next/dist/lib/picocolors";
export const metadata: Metadata = {
title: "IBD Trader Dashboard",
};
-export default function Dashboard() {
+export default withPageAuthRequired(async function Dashboard() {
+ const client = createUserServiceClient();
+
+ const user = await getSession();
+ if (!user) {
+ redirect("/api/auth/login", RedirectType.replace);
+ }
+
+ const dbUser = await client.createUser({
+ subject: user.user["sub"],
+ });
+
+ // Check if user has IBD credentials
+ if (!dbUser.user || !dbUser.user.ibdUsername) {
+ redirect("/new-user", RedirectType.replace);
+ }
+
return (
- <div>
+ <Layout>
<h1>Dashboard</h1>
- <Link href="/api/auth/logout">Logout</Link>
- </div>
+ </Layout>
);
-}
+}, { returnTo: "/dashboard" });