Dashboard Page authentication

This commit is contained in:
headlesdev 2025-05-17 17:38:03 +02:00
parent 79a4c1199a
commit defc4e2f5e
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,9 @@
export default function DashboardPage() {
return (
<div>
<h1>Dashboard</h1>
</div>
);
}

37
app/dashboard/page.tsx Normal file
View File

@ -0,0 +1,37 @@
"use client";
import DashboardPage from "./DashboardPage";
import Loading from "@/components/Loading";
import { useState, useEffect } from "react";
import { useRouter } from "next/navigation";
import axios from "axios";
import Cookies from "js-cookie";
export default function Dashboard() {
const router = useRouter();
const [loading, setLoading] = useState(true);
useEffect(() => {
const init = async () => {
const token = Cookies.get("token");
if (!token) {
router.push("/");
}
const response = await axios.post("/api/user/validate", { token });
if (response.data.message !== "Valid") {
Cookies.remove("token");
router.push("/");
} else {
setLoading(false);
}
};
init();
}, []);
if (loading) {
return <Loading />;
} else {
return <DashboardPage />;
}
}