mirror of
https://github.com/ascribe/onion.git
synced 2024-12-23 01:39:36 +01:00
d1dba86b1a
Similar to what react-router did with their router and withRouter HOC.
67 lines
1.7 KiB
JavaScript
67 lines
1.7 KiB
JavaScript
import React from 'react';
|
|
import Link from 'react-router/es6/Link';
|
|
|
|
import SignupForm from './ascribe_forms/form_signup';
|
|
|
|
import { getLangText } from '../utils/lang_utils';
|
|
import { setDocumentTitle } from '../utils/dom_utils';
|
|
|
|
|
|
let SignupContainer = React.createClass({
|
|
propTypes: {
|
|
// Provided from AscribeApp
|
|
whitelabel: React.PropTypes.object,
|
|
|
|
// Provided from router
|
|
location: React.PropTypes.object
|
|
},
|
|
|
|
getInitialState() {
|
|
return {
|
|
submitted: false,
|
|
message: null
|
|
};
|
|
},
|
|
|
|
handleSuccess(message) {
|
|
this.setState({
|
|
submitted: true,
|
|
message: message
|
|
});
|
|
},
|
|
|
|
render() {
|
|
const { location,
|
|
whitelabel: { name: whitelabelName } } = this.props;
|
|
const { message, submitted } = this.state;
|
|
|
|
setDocumentTitle(getLangText('Sign up'));
|
|
|
|
if (submitted) {
|
|
return (
|
|
<div className="ascribe-login-wrapper">
|
|
<br/>
|
|
<div className="ascribe-login-text ascribe-login-header">
|
|
{message}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
return (
|
|
<div className="ascribe-login-wrapper">
|
|
<SignupForm
|
|
handleSuccess={this.handleSuccess}
|
|
whitelabelName={whitelabelName}
|
|
location={location}/>
|
|
<div className="ascribe-login-text">
|
|
{getLangText(`Already a ${whitelabelName || 'ascribe'} user`)}? <Link to="/login">{getLangText('Log in')}...</Link><br/>
|
|
</div>
|
|
</div>
|
|
|
|
);
|
|
}
|
|
});
|
|
|
|
|
|
export default SignupContainer;
|