router.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. import React, { useEffect } from 'react';
  2. import { Switch, withRouter } from 'react-router-dom';
  3. import { connect } from 'react-redux';
  4. import { PrivateRoute } from './private-router';
  5. import AdminMainPage from './conteiners/adminMainPage/adminMainPage';
  6. import AdminAddEventPage from './conteiners/adminAddEventPage/adminAddEventPage';
  7. import AdminMyEventsPage from './conteiners/adminMyEventsPage/adminMyEventsPage';
  8. import AdminAddPhotogalarytPage from './conteiners/adminPhotogalaryPage/adminPhotogalaryPage';
  9. import AdminResultsPage from './conteiners/adminResultsPage/adminResultsPage';
  10. import Home from './conteiners/home/Home';
  11. import Result from './conteiners/result/Result';
  12. import Gallery from './conteiners/gallery/Gallery';
  13. import Reviews from './conteiners/reviews/Reviews';
  14. import Login from './conteiners/login/Login';
  15. import RegistrationPage from './conteiners/registrationPage/RegistrationPage';
  16. import Events from './conteiners/events/Events';
  17. import EventCard from './conteiners/eventCard/EventCard';
  18. import Profile from './conteiners/profile/Profile';
  19. const PAGENOTFOUND = () => <div>PAGE 404 NOT FOUND</div>;
  20. const route = [
  21. {
  22. id: 1,
  23. exact: true,
  24. path: '/',
  25. protected: false,
  26. component: Home
  27. },
  28. {
  29. id: 2,
  30. exact: true,
  31. path: '/events',
  32. protected: false,
  33. component: Events
  34. },
  35. {
  36. id: 3,
  37. exact: true,
  38. path: '/events/:id',
  39. protected: false,
  40. component: EventCard
  41. },
  42. {
  43. id: 4,
  44. exact: true,
  45. path: '/results',
  46. protected: false,
  47. component: Result
  48. },
  49. {
  50. id: 5,
  51. exact: true,
  52. path: '/gallery',
  53. protected: false,
  54. component: Gallery
  55. },
  56. {
  57. id: 6,
  58. exact: true,
  59. path: '/reviews',
  60. protected: false,
  61. component: Reviews
  62. },
  63. {
  64. id: 7,
  65. exact: true,
  66. path: '/login',
  67. protected: false,
  68. component: Login
  69. },
  70. {
  71. id: 8,
  72. exact: true,
  73. path: '/registration',
  74. protected: false,
  75. component: RegistrationPage
  76. },
  77. {
  78. id: 9,
  79. exact: true,
  80. path: '/profile',
  81. protected: true,
  82. hasAccess: 'user',
  83. component: Profile
  84. },
  85. {
  86. id: 10,
  87. exact: true,
  88. path: '/admin',
  89. protected: true,
  90. hasAccess: 'admin',
  91. component: AdminMainPage
  92. },
  93. {
  94. id: 11,
  95. exact: true,
  96. path: '/admin/event',
  97. protected: true,
  98. hasAccess: 'admin',
  99. component: AdminAddEventPage
  100. },
  101. {
  102. id: 12,
  103. exact: true,
  104. path: '/admin/photogalary',
  105. protected: true,
  106. hasAccess: 'admin',
  107. component: AdminAddPhotogalarytPage
  108. },
  109. {
  110. id: 13,
  111. exact: true,
  112. path: '/admin/results',
  113. protected: true,
  114. hasAccess: 'admin',
  115. component: AdminResultsPage
  116. },
  117. {
  118. id: 14,
  119. exact: true,
  120. path: '/admin/my_events',
  121. protected: true,
  122. hasAccess: 'admin',
  123. component: AdminMyEventsPage
  124. },
  125. {
  126. id: 15,
  127. component: PAGENOTFOUND
  128. }
  129. ];
  130. const Router = withRouter(({ history, user }) => {
  131. useEffect(
  132. () => {
  133. const userl = localStorage.user ? JSON.parse(localStorage.user).user : null;
  134. if (userl) {
  135. const userRole = userl.role;
  136. if (userRole === 'admin') {
  137. history.push('/admin');
  138. }
  139. if (userRole === 'user') {
  140. history.push('/profile');
  141. }
  142. }
  143. },
  144. [ history, user ]
  145. );
  146. return (
  147. <div className="container">
  148. <Switch>
  149. {route.map((el) => (
  150. <PrivateRoute
  151. protectedRoute={el.protected}
  152. key={el.id}
  153. exact={el.exact}
  154. path={el.path}
  155. component={el.component}
  156. />
  157. ))}
  158. </Switch>
  159. </div>
  160. );
  161. });
  162. const mapStateToProps = (state) => {
  163. return {
  164. user: state.login.user
  165. };
  166. };
  167. export default connect(mapStateToProps)(Router);