blob: c6b285964c75f61a64d326d7559c4e68557504bf (
plain)
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
|
import React from "react";
import { Route, Redirect } from "react-router-dom";
import Storage from "../services/storage.service";
export const CustomRouter = ({ xComponent: Component, ...xProps }) => {
return (
<Route
{...xProps}
render={props => {
let returnProps = {...xProps, ...props};
let token = Storage.get("token");
let pathName = props.match.path;
if (!token && pathName !== "/login") {
return <Redirect to="/login" />;
} else if (pathName === "/login" && token) {
return <Redirect to="/dashboard" />;
}else if (pathName === "/" && token) {
return <Redirect to="/dashboard" />;
}
return <Component {...returnProps} />;
}}
/>
);
};
|