router.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. import React, { useEffect } from "react";
  2. import { Switch, withRouter } from "react-router-dom";
  3. import Header from "./components/header";
  4. import Main from "./containers/main";
  5. import Count from "./containers/count";
  6. import ReduxTodo from "./containers/reduxTodo";
  7. import AuthContainer from "./containers/auth";
  8. import { PrivateRoute } from "./private-router";
  9. import { checkJWT } from "./utils/checkJWT";
  10. const PAGENOTFOUND = () => <div>PAGE 404 NOT FOUND</div>;
  11. const route = [
  12. {
  13. id: 1,
  14. exact: true,
  15. path: "/",
  16. protected: false,
  17. // hasAccess: [],
  18. component: Main
  19. },
  20. {
  21. id: 5,
  22. exact: true,
  23. path: "/auth",
  24. protected: false,
  25. component: AuthContainer
  26. },
  27. {
  28. id: 2,
  29. exact: true,
  30. path: "/count",
  31. protected: true,
  32. component: Count
  33. },
  34. {
  35. id: 3,
  36. exact: true,
  37. path: "/redux-todo",
  38. protected: true,
  39. component: ReduxTodo
  40. },
  41. {
  42. id: 4,
  43. component: PAGENOTFOUND
  44. }
  45. ];
  46. export const App = withRouter(({ history }) => {
  47. useEffect(() => {
  48. const token = localStorage.getItem("token");
  49. if (token) {
  50. const exp = checkJWT(token);
  51. if (!exp) {
  52. history.push("/auth");
  53. localStorage.removeItem("token");
  54. }
  55. }
  56. }, [history]);
  57. return (
  58. <div className="container">
  59. <Header />
  60. <Switch>
  61. {route.map(el => (
  62. <PrivateRoute
  63. protectedRoute={el.protected}
  64. key={el.id}
  65. exact={el.exact}
  66. path={el.path}
  67. component={el.component}
  68. />
  69. ))}
  70. </Switch>
  71. </div>
  72. );
  73. });