p5.js-web-editor/client/routes.jsx

31 lines
1.1 KiB
React
Raw Normal View History

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';
// import SketchListView from './modules/Sketch/pages/SketchListView';
2016-06-24 00:29:55 +02:00
import { getUser } from './modules/User/actions';
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)} />
<Route path="/login" component={IDEView} />
<Route path="/signup" component={IDEView} />
2016-10-12 18:02:46 +02:00
<Route path="/reset-password" component={IDEView} />
<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} />
<Route path="/sketches" component={IDEView} />
<Route path="/:username/sketches/:project_id" component={IDEView} />
<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;