|
@@ -3,15 +3,15 @@ import { combineReducers, configureStore } from '@reduxjs/toolkit';
|
|
|
import { Router, Route, Switch } from 'react-router-dom';
|
|
|
import { createBrowserHistory } from "history";
|
|
|
import { Provider } from 'react-redux';
|
|
|
-import { promiseReducer, actionAuthLogin, frontEndReducer, actionRootCats, goodsReducer, cartReducer, actionRestoreCart, cartGoodsReducer } from './reducers';
|
|
|
-import { CGood, CGoodsList, CLoginForm, CMainAppBar, COrder, COrdersList, exampleOrder, goodsExample, GoodsList, MyLink, Order } from "./Components";
|
|
|
+import { promiseReducer, frontEndReducer, cartReducer, actionRestoreCart, cartGoodsReducer, goodsApi } from './reducers';
|
|
|
+import { CGood, CGoodsList, CLoginForm, CMainAppBar, COrder, COrdersList } from "./Components";
|
|
|
import { CLogout } from './Components';
|
|
|
import { CSidebar } from './Components/Sidebar';
|
|
|
import { CRootCats } from './Components';
|
|
|
|
|
|
import './App.css';
|
|
|
import { CCategory } from './Components/Category';
|
|
|
-import { categoryApi, categoryReducer } from './reducers/categoryReducer';
|
|
|
+import { categoryApi } from './reducers/categoryReducer';
|
|
|
import { ordersReducer } from './reducers/ordersReducer';
|
|
|
import { CCart } from './Components/Cart';
|
|
|
import { authApiReducer, authReducer, authApiReducerPath, loginApi, authReducerPath } from './reducers';
|
|
@@ -38,7 +38,7 @@ const rootReducer = combineReducers({
|
|
|
frontend: frontEndReducer,
|
|
|
[categoryApi.reducerPath]: categoryApi.reducer,
|
|
|
orders: ordersReducer,
|
|
|
- goods: goodsReducer,
|
|
|
+ [goodsApi.reducerPath]: goodsApi.reducer,
|
|
|
cart: cartReducer,
|
|
|
cartData: cartGoodsReducer
|
|
|
});
|
|
@@ -47,18 +47,16 @@ export const store = configureStore({
|
|
|
middleware: (getDefaultMiddleware) => [
|
|
|
...getDefaultMiddleware({ serializableCheck: { ignoredActions: [FLUSH, REHYDRATE, PAUSE, PERSIST, PURGE, REGISTER] } }),
|
|
|
categoryApi.middleware,
|
|
|
+ goodsApi.middleware,
|
|
|
loginApi.middleware],
|
|
|
reducer: rootReducer
|
|
|
});
|
|
|
store.subscribe(() => console.log(store.getState()))
|
|
|
const persistor = persistStore(store)
|
|
|
|
|
|
-//console.log(useParams)
|
|
|
//store.dispatch(actionAuthLogin(localStorage.authToken));
|
|
|
//store.dispatch(actionRootCats());
|
|
|
store.dispatch(actionRestoreCart());
|
|
|
-console.log('TTTTT' + performance.now())
|
|
|
-
|
|
|
|
|
|
const NotFound = () =>
|
|
|
<div>
|
|
@@ -100,52 +98,5 @@ function App() {
|
|
|
|
|
|
);
|
|
|
}
|
|
|
-{/* <div className="App">
|
|
|
-
|
|
|
- <header className="App-header">
|
|
|
- <img src={logo} className="App-logo" alt="logo" />
|
|
|
- <p>
|
|
|
- Edit <code>src/App.js</code> and save to reload.
|
|
|
- </p>
|
|
|
- <a
|
|
|
- className="App-link"
|
|
|
- href="https://reactjs.org"
|
|
|
- target="_blank"
|
|
|
- rel="noopener noreferrer"
|
|
|
- >
|
|
|
- Learn React
|
|
|
- </a>
|
|
|
- </header>
|
|
|
- </div>
|
|
|
-*/}
|
|
|
-
|
|
|
-{/*<Route path="/" component={Main} exact />*/ }
|
|
|
-{/*<CCatMenu />
|
|
|
- <Route path="*" component={NotFound} />
|
|
|
- <LoginForm onLogin={(l, p) => console.log(l, p)} />
|
|
|
- <CLoginForm />
|
|
|
- <MyLink to="/" activeClassName='activeLink'>Главная</MyLink>
|
|
|
- <MyLink to="/aboutus" activeClassName='activeLink'>О нас</MyLink>
|
|
|
- <MyLink to="/add/2/3" activeClassName='activeLink'>2 + 3</MyLink>
|
|
|
- <MyLink to="/add/20/50" activeClassName='activeLink'>20 + 50</MyLink>
|
|
|
-
|
|
|
- <h1>Этот текст будет всегда в независимости от роутинга</h1>
|
|
|
- <Switch>
|
|
|
- <Route path="/" component={Main} exact />
|
|
|
- <Route path="/aboutus" component={AboutUs} />
|
|
|
- <Route path="/add/:a/:b" component={Add} />
|
|
|
- <Route path="*" component={NotFound} />
|
|
|
- </Switch>
|
|
|
- <h1>Роутинг выше</h1>*/}
|
|
|
-
|
|
|
-{/*
|
|
|
- <GoodsList goods={goodsExample} />
|
|
|
- <GoodExample />
|
|
|
- <Category category={exampleCategory} />
|
|
|
- <OrderGood orderGood={exampleOrderGood}/>
|
|
|
- <Order order={exampleOrder} />
|
|
|
- <OrderList orders={exampleOrderList} />
|
|
|
- <OrderGoodsList orderGoods={exampleOrderGoodsList} />
|
|
|
- */}
|
|
|
|
|
|
export default App;
|