App.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. import { Router, Route, Switch, useParams } from 'react-router-dom';
  2. import { createBrowserHistory } from "history";
  3. import { createStore, combineReducers, applyMiddleware } from 'redux';
  4. import { Provider } from 'react-redux';
  5. import { authReducer, promiseReducer, actionAuthLogin, frontEndReducer, actionRootCats } from './reducers';
  6. import { CLoginForm, CMainAppBar, COrdersList } from "./Components";
  7. import { CLogout } from './Components';
  8. import { CSidebar } from './Components/Sidebar';
  9. import thunk from 'redux-thunk';
  10. import { CRootCats } from './Components';
  11. import './App.css';
  12. import { CCategory } from './Components/Category';
  13. export const history = createBrowserHistory();
  14. export const store = createStore(combineReducers({ promise: promiseReducer, auth: authReducer, frontend: frontEndReducer }), applyMiddleware(thunk));
  15. store.subscribe(() => console.log(store.getState()))
  16. //console.log(useParams)
  17. store.dispatch(actionAuthLogin(localStorage.authToken));
  18. store.dispatch(actionRootCats());
  19. console.log('TTTTT' + performance.now())
  20. const NotFound = () =>
  21. <div>
  22. <h1>404 not found</h1>
  23. </div>
  24. const Main = () =>
  25. <div>
  26. <h1>Main page</h1>
  27. </div>
  28. function App() {
  29. return (
  30. <>
  31. <Router history={history}>
  32. <Provider store={store}>
  33. <div className="App">
  34. <CMainAppBar />
  35. <CSidebar menuComponent={() => <CRootCats />} />
  36. <Switch>
  37. <Route path="/" component={Main} exact />
  38. <Route path="/orders" component={COrdersList} />
  39. <Route path="/category/:_id" component={CCategory} />
  40. <Route path="/login" component={CLoginForm} />
  41. <Route path="/logout" component={CLogout} />
  42. <Route path="*" component={NotFound} />
  43. </Switch>
  44. </div>
  45. </Provider>
  46. </Router>
  47. </>
  48. );
  49. }
  50. {/* <div className="App">
  51. <header className="App-header">
  52. <img src={logo} className="App-logo" alt="logo" />
  53. <p>
  54. Edit <code>src/App.js</code> and save to reload.
  55. </p>
  56. <a
  57. className="App-link"
  58. href="https://reactjs.org"
  59. target="_blank"
  60. rel="noopener noreferrer"
  61. >
  62. Learn React
  63. </a>
  64. </header>
  65. </div>
  66. */}
  67. {/*<Route path="/" component={Main} exact />*/ }
  68. {/*<CCatMenu />
  69. <Route path="*" component={NotFound} />
  70. <LoginForm onLogin={(l, p) => console.log(l, p)} />
  71. <CLoginForm />
  72. <MyLink to="/" activeClassName='activeLink'>Главная</MyLink>
  73. <MyLink to="/aboutus" activeClassName='activeLink'>О нас</MyLink>
  74. <MyLink to="/add/2/3" activeClassName='activeLink'>2 + 3</MyLink>
  75. <MyLink to="/add/20/50" activeClassName='activeLink'>20 + 50</MyLink>
  76. <h1>Этот текст будет всегда в независимости от роутинга</h1>
  77. <Switch>
  78. <Route path="/" component={Main} exact />
  79. <Route path="/aboutus" component={AboutUs} />
  80. <Route path="/add/:a/:b" component={Add} />
  81. <Route path="*" component={NotFound} />
  82. </Switch>
  83. <h1>Роутинг выше</h1>*/}
  84. {/*
  85. <GoodsList goods={goodsExample} />
  86. <GoodExample />
  87. <Category category={exampleCategory} />
  88. <OrderGood orderGood={exampleOrderGood}/>
  89. <Order order={exampleOrder} />
  90. <OrderList orders={exampleOrderList} />
  91. <OrderGoodsList orderGoods={exampleOrderGoodsList} />
  92. */}
  93. export default App;