Improve user authentication and add Docker support.

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/3de0b07e-5376-463b-b11e-ad41b6fbed26.jpg
This commit is contained in:
alphaeusmote
2025-04-08 02:06:32 +00:00
parent 9487303c13
commit f23f169ddb
4 changed files with 135 additions and 11 deletions
+25 -4
View File
@@ -1,4 +1,4 @@
import { useAuth } from "@/hooks/use-auth";
import { useState, useEffect } from "react";
import { Loader2 } from "lucide-react";
import { Redirect, Route } from "wouter";
@@ -9,9 +9,30 @@ export function ProtectedRoute({
path: string;
component: () => React.JSX.Element;
}) {
const { user, isLoading } = useAuth();
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();
}, []);
if (isLoading) {
if (isAuthenticated === null) {
return (
<Route path={path}>
<div className="flex items-center justify-center min-h-screen">
@@ -21,7 +42,7 @@ export function ProtectedRoute({
);
}
if (!user) {
if (!isAuthenticated) {
return (
<Route path={path}>
<Redirect to="/auth" />