2016-01-03 01:54:07 +05:30
|
|
|
import React from 'react';
|
|
|
|
import { Route, IndexRoute } from 'react-router';
|
|
|
|
|
2016-01-04 02:48:42 +05:30
|
|
|
import RootPage from 'pages/root/RootPage';
|
|
|
|
import IndexPage from 'pages/index/IndexPage';
|
2016-01-16 17:36:22 +05:30
|
|
|
import AuthPage from 'pages/auth/AuthPage';
|
|
|
|
|
2016-03-02 02:06:14 +05:30
|
|
|
import { authenticate } from 'components/user/actions';
|
2016-02-26 11:55:47 +05:30
|
|
|
|
2016-02-23 11:27:16 +05:30
|
|
|
import OAuthInit from 'components/auth/OAuthInit';
|
2016-03-13 14:20:09 +05:30
|
|
|
import Register from 'components/auth/register/Register';
|
|
|
|
import Login from 'components/auth/login/Login';
|
|
|
|
import Permissions from 'components/auth/permissions/Permissions';
|
|
|
|
import Activation from 'components/auth/activation/Activation';
|
|
|
|
import Password from 'components/auth/password/Password';
|
2016-02-13 20:58:47 +05:30
|
|
|
import Logout from 'components/auth/Logout';
|
2016-03-13 14:20:09 +05:30
|
|
|
import PasswordChange from 'components/auth/passwordChange/PasswordChange';
|
|
|
|
import ForgotPassword from 'components/auth/forgotPassword/ForgotPassword';
|
2016-03-04 02:57:33 +05:30
|
|
|
import Finish from 'components/auth/Finish';
|
2016-01-03 01:54:07 +05:30
|
|
|
|
2016-03-02 02:06:14 +05:30
|
|
|
import authFlow from 'services/authFlow';
|
2016-01-18 10:58:43 +05:30
|
|
|
|
2016-03-02 02:06:14 +05:30
|
|
|
export default function routesFactory(store) {
|
2016-02-26 11:55:47 +05:30
|
|
|
const state = store.getState();
|
|
|
|
if (state.user.token) {
|
|
|
|
// authorizing user if it is possible
|
2016-02-26 23:43:41 +05:30
|
|
|
store.dispatch(authenticate(state.user.token));
|
2016-02-26 11:55:47 +05:30
|
|
|
}
|
|
|
|
|
2016-03-02 02:06:14 +05:30
|
|
|
authFlow.setStore(store);
|
|
|
|
|
|
|
|
const onEnter = {
|
|
|
|
onEnter: ({location}, replace) => authFlow.handleRequest(location.pathname, replace)
|
|
|
|
};
|
|
|
|
|
2016-02-13 20:58:47 +05:30
|
|
|
return (
|
|
|
|
<Route path="/" component={RootPage}>
|
2016-03-13 14:32:24 +05:30
|
|
|
<IndexRoute component={IndexPage} {...onEnter} />
|
2016-03-02 02:06:14 +05:30
|
|
|
|
|
|
|
<Route path="oauth" component={OAuthInit} {...onEnter} />
|
|
|
|
<Route path="logout" component={Logout} {...onEnter} />
|
2016-02-13 20:58:47 +05:30
|
|
|
|
|
|
|
<Route path="auth" component={AuthPage}>
|
2016-03-02 02:06:14 +05:30
|
|
|
<Route path="/login" components={new Login()} {...onEnter} />
|
|
|
|
<Route path="/password" components={new Password()} {...onEnter} />
|
|
|
|
<Route path="/register" components={new Register()} {...onEnter} />
|
|
|
|
<Route path="/activation" components={new Activation()} {...onEnter} />
|
|
|
|
<Route path="/oauth/permissions" components={new Permissions()} {...onEnter} />
|
2016-03-15 11:10:18 +05:30
|
|
|
<Route path="/oauth/finish" component={Finish} />
|
2016-03-02 02:06:14 +05:30
|
|
|
<Route path="/password-change" components={new PasswordChange()} {...onEnter} />
|
|
|
|
<Route path="/forgot-password" components={new ForgotPassword()} {...onEnter} />
|
2016-02-13 20:58:47 +05:30
|
|
|
</Route>
|
|
|
|
</Route>
|
|
|
|
);
|
|
|
|
}
|