mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-11 16:05:44 +01:00
108 lines
2.5 KiB
JavaScript
108 lines
2.5 KiB
JavaScript
//@flow
|
|
import React from "react";
|
|
import { Redirect, withRouter } from "react-router-dom";
|
|
import {
|
|
login,
|
|
isAuthenticated,
|
|
isLoginPending,
|
|
getLoginFailure
|
|
} from "../modules/auth";
|
|
import { connect } from "react-redux";
|
|
import { getLoginLink, getLoginInfoLink } from "../modules/indexResource";
|
|
import LoginForm from "../components/LoginForm";
|
|
import LoginInfo from "../components/LoginInfo";
|
|
import classNames from "classnames";
|
|
import injectSheet from "react-jss";
|
|
|
|
const styles = {
|
|
section: {
|
|
paddingTop: "2em"
|
|
}
|
|
};
|
|
|
|
type Props = {
|
|
authenticated: boolean,
|
|
loading: boolean,
|
|
error?: Error,
|
|
link: string,
|
|
loginInfoLink?: string,
|
|
|
|
// dispatcher props
|
|
login: (link: string, username: string, password: string) => void,
|
|
|
|
// context props
|
|
classes: any,
|
|
t: string => string,
|
|
from: any,
|
|
location: any
|
|
};
|
|
|
|
class Login extends React.Component<Props> {
|
|
|
|
login = (username: string, password: string) => {
|
|
const { link, login } = this.props;
|
|
login(link, username, password);
|
|
};
|
|
|
|
renderRedirect = () => {
|
|
const { from } = this.props.location.state || { from: { pathname: "/" } };
|
|
return <Redirect to={from}/>;
|
|
};
|
|
|
|
render() {
|
|
const { authenticated, loginInfoLink, loading, error, classes } = this.props;
|
|
|
|
if (authenticated) {
|
|
return this.renderRedirect();
|
|
}
|
|
|
|
let loginInfo;
|
|
if (loginInfoLink) {
|
|
loginInfo = <LoginInfo loginInfoLink={loginInfoLink}/>
|
|
}
|
|
|
|
return (
|
|
<section className={classNames("hero", classes.section )}>
|
|
<div className="hero-body">
|
|
<div className="container">
|
|
<div className="columns is-centered">
|
|
<LoginForm loading={loading} error={error} login={this.login}/>
|
|
{loginInfo}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|
|
}
|
|
|
|
const mapStateToProps = state => {
|
|
const authenticated = isAuthenticated(state);
|
|
const loading = isLoginPending(state);
|
|
const error = getLoginFailure(state);
|
|
const link = getLoginLink(state);
|
|
const loginInfoLink = getLoginInfoLink(state);
|
|
return {
|
|
authenticated,
|
|
loading,
|
|
error,
|
|
link,
|
|
loginInfoLink
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
return {
|
|
login: (loginLink: string, username: string, password: string) =>
|
|
dispatch(login(loginLink, username, password))
|
|
};
|
|
};
|
|
|
|
const StyledLogin = injectSheet(styles)(
|
|
connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps
|
|
)(Login)
|
|
);
|
|
export default withRouter(StyledLogin);
|