Refactor authentication and routing logic for improved user experience and security.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 705f2157-ef97-4fbd-89e4-8c7f2ecaea90
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/7ed01c5f-a82d-405a-b728-b2e3d127c60c/d48b8704-7beb-4365-80b8-d652bf12c6e7.jpg
This commit is contained in:
alphaeusmote
2025-04-09 02:24:38 +00:00
parent 939effedd0
commit b39ef9c5f6
5 changed files with 121 additions and 211 deletions
+8 -26
View File
@@ -1,6 +1,6 @@
import { useState, useEffect } from "react";
import { Loader2 } from "lucide-react";
import { Redirect, Route } from "wouter";
import { useAuth } from "@/hooks/use-auth";
import { Loader2 } from "lucide-react";
export function ProtectedRoute({
path,
@@ -9,30 +9,10 @@ export function ProtectedRoute({
path: string;
component: () => React.JSX.Element;
}) {
const [isAuthenticated, setIsAuthenticated] = useState<boolean | null>(null);
useEffect(() => {
const checkAuth = async () => {
try {
const response = await fetch('/api/user', {
credentials: 'include'
});
if (response.ok) {
setIsAuthenticated(true);
} else {
setIsAuthenticated(false);
}
} catch (error) {
console.error('Error checking auth status:', error);
setIsAuthenticated(false);
}
};
checkAuth();
}, []);
const { user, isLoading } = useAuth();
if (isAuthenticated === null) {
// Show a loading indicator while authentication state is being determined
if (isLoading) {
return (
<Route path={path}>
<div className="flex items-center justify-center min-h-screen">
@@ -42,7 +22,8 @@ export function ProtectedRoute({
);
}
if (!isAuthenticated) {
// Redirect to auth page if user is not authenticated
if (!user) {
return (
<Route path={path}>
<Redirect to="/auth" />
@@ -50,6 +31,7 @@ export function ProtectedRoute({
);
}
// Render the component if the user is authenticated
return (
<Route path={path}>
<Component />