mirror of
https://github.com/wassname/talk.git
synced 2026-07-03 15:45:32 +08:00
95 lines
2.4 KiB
JavaScript
95 lines
2.4 KiB
JavaScript
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { connect, withSignIn } from 'plugin-api/beta/client/hocs';
|
|
import { compose } from 'recompose';
|
|
import SignIn from '../components/SignIn';
|
|
import { bindActionCreators } from 'redux';
|
|
import * as views from '../enums/views';
|
|
import { setView, setEmail, setPassword } from '../actions';
|
|
|
|
class SignInContainer extends Component {
|
|
state = {
|
|
recaptchaResponse: null,
|
|
};
|
|
|
|
handleSubmit = () => {
|
|
this.props.signIn(
|
|
this.props.email,
|
|
this.props.password,
|
|
this.state.recaptchaResponse
|
|
);
|
|
};
|
|
|
|
handleRecaptchaVerify = recaptchaResponse => {
|
|
this.setState({ recaptchaResponse });
|
|
};
|
|
|
|
handleForgotPasswordLink = () => {
|
|
this.props.setView(views.FORGOT_PASSWORD);
|
|
};
|
|
|
|
handleSignUpLink = () => {
|
|
this.props.setView(views.SIGN_UP);
|
|
};
|
|
|
|
componentWillReceiveProps(nextProps) {
|
|
if (nextProps.requireEmailConfirmation) {
|
|
this.props.setView(views.RESEND_EMAIL_CONFIRMATION);
|
|
} else if (nextProps.success) {
|
|
window.close();
|
|
}
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<SignIn
|
|
onSubmit={this.handleSubmit}
|
|
onEmailChange={this.props.setEmail}
|
|
onPasswordChange={this.props.setPassword}
|
|
onForgotPasswordLink={this.handleForgotPasswordLink}
|
|
onSignUpLink={this.handleSignUpLink}
|
|
email={this.props.email}
|
|
password={this.props.password}
|
|
errorMessage={this.props.errorMessage}
|
|
onRecaptchaVerify={this.handleRecaptchaVerify}
|
|
requireRecaptcha={this.props.requireRecaptcha}
|
|
loading={this.props.loading}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
SignInContainer.propTypes = {
|
|
signIn: PropTypes.func.isRequired,
|
|
errorMessage: PropTypes.string,
|
|
requireRecaptcha: PropTypes.bool.isRequired,
|
|
requireEmailConfirmation: PropTypes.bool.isRequired,
|
|
loading: PropTypes.bool.isRequired,
|
|
success: PropTypes.bool.isRequired,
|
|
setView: PropTypes.func.isRequired,
|
|
email: PropTypes.string.isRequired,
|
|
password: PropTypes.string.isRequired,
|
|
setEmail: PropTypes.func.isRequired,
|
|
setPassword: PropTypes.func.isRequired,
|
|
};
|
|
|
|
const mapStateToProps = ({ talkPluginAuth: state }) => ({
|
|
email: state.email,
|
|
password: state.password,
|
|
});
|
|
|
|
const mapDispatchToProps = dispatch =>
|
|
bindActionCreators(
|
|
{
|
|
setView,
|
|
setEmail,
|
|
setPassword,
|
|
},
|
|
dispatch
|
|
);
|
|
|
|
export default compose(
|
|
connect(mapStateToProps, mapDispatchToProps),
|
|
withSignIn
|
|
)(SignInContainer);
|