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';
|
2016-08-15 21:06:12 +00:00
|
|
|
// import SketchListView from './modules/Sketch/pages/SketchListView';
|
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';
|
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)} />
|
|
|
|
<Route path="/login" component={LoginView} />
|
|
|
|
<Route path="/signup" component={SignupView} />
|
|
|
|
<Route path="/reset-password" component={ResetPasswordView} />
|
|
|
|
<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} />
|
|
|
|
<Route path="/sketches" component={IDEView} />
|
|
|
|
<Route path="/assets" component={IDEView} />
|
|
|
|
<Route path="/account" component={AccountView} />
|
|
|
|
<Route path="/:username/sketches/:project_id" component={IDEView} />
|
|
|
|
<Route path="/:username/sketches" component={IDEView} />
|
|
|
|
<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;
|