2016-06-23 22:29:55 +00:00
|
|
|
import { Route, IndexRoute } from 'react-router';
|
|
|
|
import React from 'react';
|
|
|
|
import App from './modules/App/App';
|
|
|
|
import IDEView from './modules/IDE/pages/IDEView';
|
2016-08-17 22:13:17 +00:00
|
|
|
import FullView from './modules/IDE/pages/FullView';
|
2016-12-15 23:43:58 +00:00
|
|
|
import LoginView from './modules/User/pages/LoginView';
|
|
|
|
import SignupView from './modules/User/pages/SignupView';
|
2016-12-19 21:49:37 +00:00
|
|
|
import ResetPasswordView from './modules/User/pages/ResetPasswordView';
|
2017-06-26 16:48:28 +00:00
|
|
|
import EmailVerificationView from './modules/User/pages/EmailVerificationView';
|
2016-12-19 21:49:37 +00:00
|
|
|
import NewPasswordView from './modules/User/pages/NewPasswordView';
|
2017-03-16 22:25:12 +00:00
|
|
|
import AccountView from './modules/User/pages/AccountView';
|
2019-07-09 16:24:09 +00:00
|
|
|
import CollectionView from './modules/User/pages/CollectionView';
|
2019-08-11 09:08:17 +00:00
|
|
|
import DashboardView from './modules/User/pages/DashboardView';
|
2019-08-24 10:38:42 +00:00
|
|
|
import createRedirectWithUsername from './components/createRedirectWithUsername';
|
2016-06-23 22:29:55 +00:00
|
|
|
import { getUser } from './modules/User/actions';
|
2017-06-18 21:11:23 +00:00
|
|
|
import { stopSketch } from './modules/IDE/actions/ide';
|
2019-09-19 17:38:27 +00:00
|
|
|
import { userIsAuthenticated, userIsNotAuthenticated, userIsAuthorized } from './utils/auth';
|
2016-06-14 23:11:42 +00:00
|
|
|
|
|
|
|
const checkAuth = (store) => {
|
2016-06-23 22:29:55 +00:00
|
|
|
store.dispatch(getUser());
|
|
|
|
};
|
|
|
|
|
2017-06-18 21:11:23 +00:00
|
|
|
const onRouteChange = (store) => {
|
|
|
|
store.dispatch(stopSketch());
|
|
|
|
};
|
|
|
|
|
2018-08-27 18:34:24 +00:00
|
|
|
const routes = store => (
|
|
|
|
<Route path="/" component={App} onChange={() => { onRouteChange(store); }}>
|
|
|
|
<IndexRoute component={IDEView} onEnter={checkAuth(store)} />
|
2019-09-19 17:38:27 +00:00
|
|
|
<Route path="/login" component={userIsNotAuthenticated(LoginView)} />
|
|
|
|
<Route path="/signup" component={userIsNotAuthenticated(SignupView)} />
|
|
|
|
<Route path="/reset-password" component={userIsNotAuthenticated(ResetPasswordView)} />
|
2018-08-27 18:34:24 +00:00
|
|
|
<Route path="/verify" component={EmailVerificationView} />
|
|
|
|
<Route
|
|
|
|
path="/reset-password/:reset_password_token"
|
|
|
|
component={NewPasswordView}
|
|
|
|
/>
|
|
|
|
<Route path="/projects/:project_id" component={IDEView} />
|
2018-10-18 18:10:37 +00:00
|
|
|
<Route path="/:username/full/:project_id" component={FullView} />
|
2018-08-27 18:34:24 +00:00
|
|
|
<Route path="/full/:project_id" component={FullView} />
|
2019-08-24 10:38:42 +00:00
|
|
|
<Route path="/sketches" component={createRedirectWithUsername('/:username/sketches')} />
|
2019-09-19 17:38:27 +00:00
|
|
|
<Route path="/:username/assets" component={userIsAuthenticated(userIsAuthorized(DashboardView))} />
|
2019-08-24 10:38:42 +00:00
|
|
|
<Route path="/assets" component={createRedirectWithUsername('/:username/assets')} />
|
2019-09-19 17:38:27 +00:00
|
|
|
<Route path="/account" component={userIsAuthenticated(AccountView)} />
|
2018-08-27 18:34:24 +00:00
|
|
|
<Route path="/:username/sketches/:project_id" component={IDEView} />
|
2019-09-09 16:52:54 +00:00
|
|
|
<Route path="/:username/sketches/:project_id/add-to-collection" component={IDEView} />
|
2019-08-11 09:08:17 +00:00
|
|
|
<Route path="/:username/sketches" component={DashboardView} />
|
2019-07-09 08:35:24 +00:00
|
|
|
<Route path="/:username/collections" component={DashboardView} />
|
2019-10-02 15:01:52 +00:00
|
|
|
<Route path="/:username/collections/create" component={DashboardView} />
|
2019-09-08 16:54:49 +00:00
|
|
|
<Route path="/:username/collections/:collection_id" component={CollectionView} />
|
2018-08-27 18:34:24 +00:00
|
|
|
<Route path="/about" component={IDEView} />
|
|
|
|
</Route>
|
|
|
|
);
|
2016-05-18 17:37:59 +00:00
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
export default routes;
|