import Api from './api.js'; import App from './app.js'; import classNames from 'classnames'; import React from 'react'; class SignupForm extends React.Component { constructor(props) { super(props); this.state = {'hideMsg': true, 'msg': '', 'msgOk': false, 'password': '', 'email': ''}; } handleSubmit = (e) => { Api.Call( 'SIGNUP', { 'password': this.state.password, 'email': this.state.email }, function(err, status, data) { if (err) { console.error(err, data); this.displayMessage(App.errorCodeToMessage(err.code), false); return; } this.displayMessage('Thank You. Your account is being confirmed. Check your mailbox soon', true); this.props.onSuccess(data.token); }.bind(this) ); e.preventDefault(); } handlePasswordChange = (event) => { this.setState({'password': event.target.value}); } handleEmailChange = (event) => { this.setState({'email': event.target.value}); } hideMessage = () => { this.setState({'hideMsg': true}); } displayMessage = (msg, ok) => { this.setState({'msg': msg, 'msgOk': ok, 'hideMsg': false}); } render = () => { var cName = classNames('form-message', {'hidden': this.state.hideMsg, 'message-ok': this.state.msgOk}); return (
{this.state.msg}
Sign In
); } } export default SignupForm;