fe6acc90e4
* added account page showing username and email * change username and email * validate current password and add new password * reject promise with error for reduxForm submit-validation for current password * updated user reducer to handle setting sucess and server side async * warning if there is current password but no new password * fixes logout button * import validate function, fixes logout style
36 lines
1.6 KiB
JavaScript
36 lines
1.6 KiB
JavaScript
import { Route, IndexRoute } from 'react-router';
|
|
import React from 'react';
|
|
import App from './modules/App/App';
|
|
import IDEView from './modules/IDE/pages/IDEView';
|
|
import FullView from './modules/IDE/pages/FullView';
|
|
import LoginView from './modules/User/pages/LoginView';
|
|
import SignupView from './modules/User/pages/SignupView';
|
|
import ResetPasswordView from './modules/User/pages/ResetPasswordView';
|
|
import NewPasswordView from './modules/User/pages/NewPasswordView';
|
|
import AccountView from './modules/User/pages/AccountView';
|
|
// import SketchListView from './modules/Sketch/pages/SketchListView';
|
|
import { getUser } from './modules/User/actions';
|
|
|
|
const checkAuth = (store) => {
|
|
store.dispatch(getUser());
|
|
};
|
|
|
|
const routes = store =>
|
|
(
|
|
<Route path="/" component={App}>
|
|
<IndexRoute component={IDEView} onEnter={checkAuth(store)} />
|
|
<Route path="/login" component={LoginView} />
|
|
<Route path="/signup" component={SignupView} />
|
|
<Route path="/reset-password" component={ResetPasswordView} />
|
|
<Route path="/reset-password/:reset_password_token" component={NewPasswordView} />
|
|
<Route path="/projects/:project_id" component={IDEView} />
|
|
<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} />
|
|
<Route path="/:username/account" component={AccountView} />
|
|
<Route path="/about" component={IDEView} />
|
|
</Route>
|
|
);
|
|
|
|
export default routes;
|