|
1 | 1 | "use client";
|
2 | 2 |
|
3 | 3 | import { useEffect } from "react";
|
4 |
| -import { useRouter } from "next/navigation"; |
5 |
| -import { useAuthStore } from "@/store/AuthStore/useAuthStore"; |
6 |
| -import Navbar from "@/components/header"; |
7 | 4 | import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
8 | 5 | import { Skeleton } from "@/components/ui/skeleton";
|
| 6 | +import { useAuthStore } from "@/store/AuthStore/useAuthStore"; |
| 7 | +import DashboardNavbar from "@/components/dashboardComponents/DashboardNavbar"; |
| 8 | +import { DashboardContentSkeleton } from "@/components/dashboardComponents/DashboardContentSkeleton"; |
| 9 | + |
| 10 | +function DashboardContent({ authUser }: any) { |
| 11 | + return ( |
| 12 | + <main className="container mx-auto p-4 space-y-6"> |
| 13 | + <h1 className="text-3xl font-bold">Welcome, {authUser?.fullName}</h1> |
| 14 | + <Card> |
| 15 | + <CardHeader> |
| 16 | + <CardTitle>Your Profile</CardTitle> |
| 17 | + </CardHeader> |
| 18 | + <CardContent className="space-y-2"> |
| 19 | + <p> |
| 20 | + <span className="font-medium">LeetCode Username:</span>{" "} |
| 21 | + {authUser?.leetcodeUsername} |
| 22 | + </p> |
| 23 | + <p> |
| 24 | + <span className="font-medium">Gender:</span> {authUser?.gender} |
| 25 | + </p> |
| 26 | + </CardContent> |
| 27 | + </Card> |
| 28 | + |
| 29 | + <Card> |
| 30 | + <CardHeader> |
| 31 | + <CardTitle>LeetCode Stats</CardTitle> |
| 32 | + </CardHeader> |
| 33 | + <CardContent> |
| 34 | + <p className="text-muted-foreground"> |
| 35 | + LeetCode stats are coming soon! |
| 36 | + </p> |
| 37 | + </CardContent> |
| 38 | + </Card> |
| 39 | + </main> |
| 40 | + ); |
| 41 | +} |
9 | 42 |
|
10 | 43 | export default function Dashboard() {
|
11 |
| - const router = useRouter(); |
12 | 44 | const { authUser, fetchAuthUser, authUserLoading } = useAuthStore();
|
13 | 45 |
|
14 | 46 | useEffect(() => {
|
15 | 47 | fetchAuthUser();
|
16 | 48 | }, [fetchAuthUser]);
|
17 |
| - |
18 |
| - useEffect(() => { |
19 |
| - if (!authUserLoading && !authUser) { |
20 |
| - router.push("/auth/signin"); |
21 |
| - } |
22 |
| - }, [authUserLoading, authUser, router]); |
23 |
| - |
24 |
| - if (authUserLoading) { |
25 |
| - return <DashboardSkeleton />; |
26 |
| - } |
27 |
| - |
28 |
| - if (!authUser) { |
29 |
| - return null; |
30 |
| - } |
31 |
| - |
32 |
| - return ( |
33 |
| - <div className="min-h-screen"> |
34 |
| - <Navbar userId={authUser.id} /> |
35 |
| - <main className="container mx-auto p-4 space-y-6"> |
36 |
| - <h1 className="text-3xl font-bold">Welcome, {authUser.fullName}</h1> |
37 |
| - |
38 |
| - <Card> |
39 |
| - <CardHeader> |
40 |
| - <CardTitle>Your Profile</CardTitle> |
41 |
| - </CardHeader> |
42 |
| - <CardContent className="space-y-2"> |
43 |
| - <p> |
44 |
| - <span className="font-medium">LeetCode Username:</span>{" "} |
45 |
| - {authUser.leetcodeUsername} |
46 |
| - </p> |
47 |
| - <p> |
48 |
| - <span className="font-medium">Gender:</span> {authUser.gender} |
49 |
| - </p> |
50 |
| - </CardContent> |
51 |
| - </Card> |
52 |
| - |
53 |
| - <Card> |
54 |
| - <CardHeader> |
55 |
| - <CardTitle>LeetCode Stats</CardTitle> |
56 |
| - </CardHeader> |
57 |
| - <CardContent> |
58 |
| - {/* LeetCode stats component will go here */} |
59 |
| - <p className="text-muted-foreground"> |
60 |
| - LeetCode stats are coming soon! |
61 |
| - </p> |
62 |
| - </CardContent> |
63 |
| - </Card> |
64 |
| - </main> |
65 |
| - </div> |
66 |
| - ); |
67 |
| -} |
68 |
| - |
69 |
| -function DashboardSkeleton() { |
70 | 49 | return (
|
71 |
| - <div className="min-h-screen"> |
72 |
| - {/* <Navbar userId={} /> */} |
73 |
| - <main className="container mx-auto p-4 space-y-6"> |
74 |
| - <Skeleton className="h-10 w-[250px]" /> |
75 |
| - |
76 |
| - <Card> |
77 |
| - <CardHeader> |
78 |
| - <Skeleton className="h-7 w-[100px]" /> |
79 |
| - </CardHeader> |
80 |
| - <CardContent className="space-y-2"> |
81 |
| - <Skeleton className="h-5 w-full" /> |
82 |
| - <Skeleton className="h-5 w-full" /> |
83 |
| - </CardContent> |
84 |
| - </Card> |
85 |
| - |
86 |
| - <Card> |
87 |
| - <CardHeader> |
88 |
| - <Skeleton className="h-7 w-[120px]" /> |
89 |
| - </CardHeader> |
90 |
| - <CardContent> |
91 |
| - <Skeleton className="h-20 w-full" /> |
92 |
| - </CardContent> |
93 |
| - </Card> |
94 |
| - </main> |
| 50 | + <div className="min-h-screen w-full"> |
| 51 | + <DashboardNavbar isLoading={authUserLoading} userId={authUser?.id} /> |
| 52 | + {authUserLoading ? ( |
| 53 | + <DashboardContentSkeleton /> |
| 54 | + ) : ( |
| 55 | + <DashboardContent authUser={authUser} /> |
| 56 | + )} |
95 | 57 | </div>
|
96 | 58 | );
|
97 | 59 | }
|
0 commit comments