123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- import 'antd/dist/antd.min.css'
- import './App.scss';
- import { Router, Route, Switch, Redirect } from 'react-router-dom';
- import createHistory from "history/createBrowserHistory";
- import { connect, Provider } from 'react-redux';
- import store from './redux/redux-store';
- import { Authorization } from './components/Authorization';
- import { Container, Content, Main } from './pages/Content';
- import { CProfilePage } from './pages/ProfilePage';
- import { CAdd } from './components/main/Add';
- import HeaderComponent from './pages/Header';
- import { CMainPostsFeed } from './pages/MainPostsFeed';
- import { CRRoute } from './helpers';
- import { CPostPage } from './pages/PostPage';
- import { CAllPosts } from './pages/AllPosts';
- import { CEntityEditorPost } from './pages/EntityEditorPost';
- export const history = createHistory()
- const Aside = () =>
- <div>sdfsdgsgsdg</div>
- const AppContent = ({ isToken }) =>
- <Router history={history}>
- {!isToken
- ?
- <Switch>
- <Route path='/auth/:_id'
- component={Authorization} />
- <Redirect from='/*' to='/auth/login' />
- </Switch>
- :
- <Content>
- <HeaderComponent />
- <Main>
- <Container>
- <Route path='/' component={CMainPostsFeed} exact />
- <Route path='/profile/:_id' component={CProfilePage} />
- <Route path='/message' component={Aside} />
- {/* <Route path='/add' component={CAdd} /> */}
- <Route path='/add' component={CEntityEditorPost} />
- <CRRoute path='/all' component={CAllPosts} />
- </Container>
- <CRRoute path='/post/:id' component={CPostPage} />
- {/* <Redirect from='/*' to='/' /> */}
- </Main>
- </Content >
- // <Switch>
- // <Route path='/' component={Content} exact />
- // <Redirect from='/auth/*' to='/' />
- // </Switch>
- }
- </Router >
- const CAppContent = connect(state => ({ isToken: state.auth?.token }))(AppContent)
- store.subscribe(() => console.log(store.getState()))
- function App() {
- return (
- <Provider store={store}>
- <CAppContent />
- </Provider>
- )
- }
- export default App;
|