src/app/(auth)/layout.js (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
"use client"; import { useEffect, useState } from "react"; import { useRouter } from "next/navigation"; export default function AuthLayout({ children }) { const router = useRouter(); const [isChecking, setIsChecking] = useState(true); useEffect(() => { const checkAuth = async () => { try { // Check if token exists in localStorage const token = localStorage.getItem("token"); if (token) { // Verify token by making a request to /twirp/auth.AuthService/ValidateToken const response = await fetch( "http://localhost:8080/twirp/auth.AuthService/ValidateToken", { method: "POST", headers: { "Content-Type": "application/json", }, body: JSON.stringify({ token: token, }), }, ); if (response.ok) { // Token is valid, redirect to dashboard router.replace("/dashboard"); return; } else { // Token is invalid, remove it localStorage.removeItem("token"); } } } catch (error) { console.error("Error checking authentication:", error); localStorage.removeItem("token"); } finally { setIsChecking(false); } }; checkAuth(); }, []); if (isChecking) { return ( <div className="min-h-screen flex items-center justify-center bg-gray-50"> <div className="text-gray-500">Loading...</div> </div> ); } return children; } |