accounts-frontend/src/pages/auth/AuthPage.js

96 lines
3.5 KiB
JavaScript
Raw Normal View History

// @flow
import React, { Component } from 'react';
2016-02-23 11:27:16 +05:30
import { Route, Switch, Redirect } from 'react-router-dom';
import AppInfo from 'components/auth/appInfo/AppInfo';
import PanelTransition from 'components/auth/PanelTransition';
2016-01-04 02:48:42 +05:30
import Register from 'components/auth/register/Register';
import Login from 'components/auth/login/Login';
import Permissions from 'components/auth/permissions/Permissions';
import ChooseAccount from 'components/auth/chooseAccount/ChooseAccount';
import Activation from 'components/auth/activation/Activation';
import ResendActivation from 'components/auth/resendActivation/ResendActivation';
import Password from 'components/auth/password/Password';
import AcceptRules from 'components/auth/acceptRules/AcceptRules';
import ForgotPassword from 'components/auth/forgotPassword/ForgotPassword';
import RecoverPassword from 'components/auth/recoverPassword/RecoverPassword';
2017-08-23 00:09:08 +05:30
import Mfa from 'components/auth/mfa/Mfa';
import Finish from 'components/auth/finish/Finish';
2016-01-04 02:48:42 +05:30
import styles from './auth.scss';
2017-08-23 02:01:41 +05:30
class AuthPage extends Component<{
client: {
id: string,
name: string,
description: string
}
}, {
isSidebarHidden: bool
}> {
state = {
isSidebarHidden: false
};
2016-01-04 02:48:42 +05:30
render() {
2016-02-23 11:27:16 +05:30
const {isSidebarHidden} = this.state;
const {client} = this.props;
2016-01-04 02:48:42 +05:30
return (
<div>
<div className={isSidebarHidden ? styles.hiddenSidebar : styles.sidebar}>
2016-02-23 11:27:16 +05:30
<AppInfo {...client} onGoToAuth={this.onGoToAuth} />
2016-01-04 02:48:42 +05:30
</div>
2016-01-04 02:48:42 +05:30
<div className={styles.content}>
<Switch>
<Route path="/login" render={renderPanelTransition(Login)} />
2017-08-23 00:09:08 +05:30
<Route path="/mfa" render={renderPanelTransition(Mfa)} />
<Route path="/password" render={renderPanelTransition(Password)} />
<Route path="/register" render={renderPanelTransition(Register)} />
<Route path="/activation/:key?" render={renderPanelTransition(Activation)} />
<Route path="/resend-activation" render={renderPanelTransition(ResendActivation)} />
<Route path="/oauth/permissions" render={renderPanelTransition(Permissions)} />
<Route path="/oauth/choose-account" render={renderPanelTransition(ChooseAccount)} />
<Route path="/oauth/finish" component={Finish} />
<Route path="/accept-rules" render={renderPanelTransition(AcceptRules)} />
<Route path="/forgot-password" render={renderPanelTransition(ForgotPassword)} />
<Route path="/recover-password/:key?" render={renderPanelTransition(RecoverPassword)} />
<Redirect to="/404" />
</Switch>
2016-01-04 02:48:42 +05:30
</div>
</div>
);
}
onGoToAuth = () => {
this.setState({
isSidebarHidden: true
});
};
}
2016-02-23 11:27:16 +05:30
function renderPanelTransition(factory) {
const {Title, Body, Footer, Links} = factory();
2017-08-23 00:09:08 +05:30
return (props) => (
<PanelTransition
key="panel-transition"
Title={<Title />}
Body={<Body {...props} />}
Footer={<Footer />}
Links={<Links />}
{...props}
/>
);
}
import { connect } from 'react-redux';
import { withRouter } from 'react-router';
2016-02-23 11:27:16 +05:30
export default withRouter(connect((state) => ({
2016-02-23 11:27:16 +05:30
client: state.auth.client
}))(AuthPage));