2016-06-24 00:29:55 +02: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-18 00:13:17 +02:00
|
|
|
import FullView from './modules/IDE/pages/FullView';
|
2016-08-15 23:06:12 +02:00
|
|
|
// import SketchListView from './modules/Sketch/pages/SketchListView';
|
2016-06-24 00:29:55 +02:00
|
|
|
import { getUser } from './modules/User/actions';
|
2016-06-15 01:11:42 +02:00
|
|
|
|
|
|
|
const checkAuth = (store) => {
|
2016-06-24 00:29:55 +02:00
|
|
|
store.dispatch(getUser());
|
|
|
|
};
|
|
|
|
|
2016-06-27 23:19:45 +02:00
|
|
|
const routes = (store) =>
|
|
|
|
(
|
2016-09-14 18:46:54 +02:00
|
|
|
<Route path="/" component={App}>
|
2016-06-27 23:19:45 +02:00
|
|
|
<IndexRoute component={IDEView} onEnter={checkAuth(store)} />
|
2016-10-09 00:03:39 +02:00
|
|
|
<Route path="/login" component={IDEView} />
|
|
|
|
<Route path="/signup" component={IDEView} />
|
2016-10-12 18:02:46 +02:00
|
|
|
<Route path="/reset-password" component={IDEView} />
|
2016-10-18 22:07:25 +02:00
|
|
|
<Route path="/reset-password/:reset_password_token" component={IDEView} />
|
2016-06-27 23:19:45 +02:00
|
|
|
<Route path="/projects/:project_id" component={IDEView} />
|
2016-08-18 00:13:17 +02:00
|
|
|
<Route path="/full/:project_id" component={FullView} />
|
2016-08-15 23:06:12 +02:00
|
|
|
<Route path="/sketches" component={IDEView} />
|
2016-08-17 21:53:25 +02:00
|
|
|
<Route path="/:username/sketches" component={IDEView} />
|
2016-08-22 18:35:59 +02:00
|
|
|
<Route path="/about" component={IDEView} />
|
2016-06-27 23:19:45 +02:00
|
|
|
</Route>
|
2016-06-24 00:29:55 +02:00
|
|
|
);
|
2016-05-18 19:37:59 +02:00
|
|
|
|
2016-06-24 00:29:55 +02:00
|
|
|
export default routes;
|