removing session once user logs out or session expires

This commit was merged in pull request #505.
This commit is contained in:
2023-11-08 10:58:42 -08:00
parent 7e926cc7bc
commit 2c99fedd8c
3 changed files with 11 additions and 7 deletions
+10 -5
View File
@@ -21,10 +21,12 @@ const AuthRoute = ({ redirectPath = "/login", children }) => {
const [loadProfileDetails, setLoadProfileDetails] = useState([]);
const navigate = useNavigate();
const { jobListTable, walletTable } = useSelector((state) => state.tableReload);
const { jobListTable, walletTable } = useSelector(
(state) => state.tableReload
);
const {
userDetails: { username, uid, session },
userDetails: { username, uid, session},
} = useSelector((state) => state?.userDetails); // CHECKS IF USER Details are avaliable, to determine if user is active
let loggedIn = username && session && uid ? true : false; // variable to determine if user is logged in
@@ -35,6 +37,7 @@ const AuthRoute = ({ redirectPath = "/login", children }) => {
localStorage.removeItem("uid");
localStorage.removeItem("member_id");
localStorage.removeItem("session_token");
sessionStorage.removeItem("family_uid");
navigate("/login", { replace: true }); // redirects user to login page after session expires
};
@@ -181,13 +184,15 @@ const AuthRoute = ({ redirectPath = "/login", children }) => {
useEffect(() => {
const getMyWalletList = async () => {
dispatch(updateWalletDetails({ loading: true, data:[] }));
dispatch(updateWalletDetails({ loading: true, data: [] }));
try {
const res = await apiCall.getUserWallets();
console.log("wallet - >", res.data);
dispatch(updateWalletDetails({ loading: false, data:res.data?.result_list }));
dispatch(
updateWalletDetails({ loading: false, data: res.data?.result_list })
);
} catch (error) {
dispatch(updateWalletDetails({ loading: false, data:[] }));
dispatch(updateWalletDetails({ loading: false, data: [] }));
console.log("Error getting mode");
}
};