feat: use user from context

This commit is contained in:
karishmas6
2024-09-25 21:20:06 +05:30
parent 3b19c5c7e1
commit 0cf3857423

View File

@@ -1,58 +1,12 @@
import { useState, useEffect, ReactNode } from 'react';
import axios from 'axios';
import { useNavigate } from 'react-router-dom';
import { useGlobalInfoStore } from "../context/globalInfo";
import { CircularProgress } from '@mui/material';
import React from 'react';
import { Navigate, Outlet } from 'react-router-dom';
import { useContext } from 'react';
import { AuthContext } from '../context/auth';
interface UserRouteProps {
children: ReactNode;
}
const UserRoute = () => {
const { state } = useContext(AuthContext);
const UserRoute: React.FC<UserRouteProps> = ({ children }) => {
const [ok, setOk] = useState<boolean>(false);
const [loading, setLoading] = useState<boolean>(true);
const navigate = useNavigate();
const { notify } = useGlobalInfoStore();
useEffect(() => {
const fetchUser = async () => {
try {
const { data } = await axios.get('http://localhost:8080/auth/current-user');
if (data.ok) {
setOk(true);
} else {
handleRedirect('User session expired. Please login again.');
}
} catch (err: any) {
if (axios.isCancel(err)) {
console.log('Request canceled:', err.message);
handleRedirect('Request timed out. Please try again.');
} else {
handleRedirect();
}
} finally {
setLoading(false);
}
};
fetchUser();
}, []);
const handleRedirect = (errorMessage?: string) => {
setOk(false);
setLoading(false);
if (errorMessage) {
notify('error', errorMessage);
}
navigate('/login');
};
if (loading) {
return <div><CircularProgress /></div>;
}
return ok ? <>{children}</> : null;
return state.user ? <Outlet /> : <Navigate to="/login" />;
};
export default UserRoute;