Spaces:
Runtime error
Runtime error
File size: 1,041 Bytes
56b6519 |
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 |
import { PropsWithChildren, useEffect, useState } from 'react';
import { useNavigate } from 'react-router-dom';
import { checktoken } from '../hooks/useAuth';
import { useAuth } from './AuthProvider';
type ProtectedRouteProps = PropsWithChildren;
const ProtectedRoute = ({ children }: ProtectedRouteProps) => {
const [loading, setLoading] = useState(true);
const isAuth = useAuth();
const navigate = useNavigate();
useEffect(() => {
const verifyAuth = async () => {
const tokenIsValid = await checktoken();
if (isAuth === false || tokenIsValid === false) {
navigate('/login', { replace: true });
} else {
setLoading(false);
}
};
verifyAuth().catch(console.error);
const intervalId = setInterval(() => {
verifyAuth().catch(console.error);
}, 30000);
return () => clearInterval(intervalId);
}, [isAuth, navigate]);
if (loading) {
return <div>Loading...</div>; // TODO: Agregar loading page
}
return children;
};
export default ProtectedRoute;
|