1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 16:48:04 +02:00
onion/js/components/ascribe_forms/form_signup.js

136 lines
4.7 KiB
JavaScript
Raw Normal View History

2015-06-11 17:22:11 +02:00
'use strict';
import React from 'react';
import { History } from 'react-router';
2015-06-11 17:22:11 +02:00
2015-07-13 16:57:25 +02:00
import GlobalNotificationModel from '../../models/global_notification_model';
import GlobalNotificationActions from '../../actions/global_notification_actions';
import UserActions from '../../actions/user_actions';
2015-07-13 16:57:25 +02:00
import Form from './form';
import Property from './property';
2015-06-11 17:22:11 +02:00
import InputCheckbox from './input_checkbox';
2015-07-13 16:57:25 +02:00
2015-08-07 15:08:02 +02:00
import ApiUrls from '../../constants/api_urls';
2015-10-12 17:55:02 +02:00
import AscribeSpinner from '../ascribe_spinner';
import { getLangText } from '../../utils/lang_utils';
2015-07-13 16:57:25 +02:00
2015-06-11 17:22:11 +02:00
let SignupForm = React.createClass({
2015-07-13 16:57:25 +02:00
propTypes: {
2015-07-13 19:53:16 +02:00
headerMessage: React.PropTypes.string,
submitMessage: React.PropTypes.string,
2015-07-13 20:47:43 +02:00
handleSuccess: React.PropTypes.func,
location: React.PropTypes.object,
children: React.PropTypes.oneOfType([
React.PropTypes.arrayOf(React.PropTypes.element),
React.PropTypes.element,
React.PropTypes.string
2016-03-04 14:27:56 +01:00
]),
whitelabelName: React.PropTypes.string
2015-07-13 16:57:25 +02:00
},
mixins: [History],
2015-07-13 16:57:25 +02:00
2015-07-13 19:53:16 +02:00
getDefaultProps() {
return {
2015-07-15 00:37:45 +02:00
headerMessage: getLangText('Welcome to ascribe'),
submitMessage: getLangText('Sign up')
2015-07-13 19:53:16 +02:00
};
},
handleSuccess(response) {
if (response.user) {
const notification = new GlobalNotificationModel(getLangText('Sign up successful'), 'success', 50000);
GlobalNotificationActions.appendGlobalNotification(notification);
// Refactor this to its own component
this.props.handleSuccess(getLangText('We sent an email to your address') + ' ' + response.user.email + ', ' + getLangText('please confirm') + '.');
} else {
UserActions.fetchCurrentUser(true);
}
2015-07-13 16:57:25 +02:00
},
2015-07-28 15:33:47 +02:00
2015-09-16 19:00:59 +02:00
getFormData() {
const { token } = this.props.location.query;
return token ? { token } : null;
2015-09-16 19:00:59 +02:00
},
2015-07-13 16:57:25 +02:00
render() {
2016-02-08 14:08:54 +01:00
const { children,
headerMessage,
location: { query: { email: emailQuery } },
2016-03-04 14:27:56 +01:00
submitMessage,
whitelabelName } = this.props;
2015-06-11 17:22:11 +02:00
return (
2015-07-13 16:57:25 +02:00
<Form
className="ascribe-form-bordered"
ref='form'
2015-08-07 15:08:02 +02:00
url={ApiUrls.users_signup}
2015-09-16 19:00:59 +02:00
getFormData={this.getFormData}
2015-07-13 16:57:25 +02:00
handleSuccess={this.handleSuccess}
buttons={
2015-10-12 17:55:02 +02:00
<button type="submit" className="btn btn-default btn-wide">
{submitMessage}
</button>
}
2015-07-13 16:57:25 +02:00
spinner={
2015-10-12 17:55:02 +02:00
<span className="btn btn-default btn-wide btn-spinner">
<AscribeSpinner color="dark-blue" size="md" />
</span>
}>
2015-08-06 10:23:01 +02:00
<div className="ascribe-form-header">
2016-03-04 14:27:56 +01:00
<h3>{whitelabelName ? `Welcome to ${whitelabelName}` : headerMessage}</h3>
2015-08-06 10:23:01 +02:00
</div>
2015-07-13 16:57:25 +02:00
<Property
name='email'
label={getLangText('Email')}>
<input
type="email"
placeholder={getLangText('(e.g. andy@warhol.co.uk)')}
autoComplete="on"
defaultValue={emailQuery}
2015-07-13 16:57:25 +02:00
required/>
</Property>
<Property
name='password'
label={getLangText('Password')}>
2015-07-13 16:57:25 +02:00
<input
type="password"
placeholder={getLangText('Use a combination of minimum 10 characters and numbers')}
2015-07-13 16:57:25 +02:00
autoComplete="on"
required/>
</Property>
<Property
name='password_confirm'
label={getLangText('Confirm Password')}>
2015-07-13 16:57:25 +02:00
<input
type="password"
placeholder={getLangText('Enter your password once again')}
autoComplete="on"
required/>
</Property>
{children}
2015-07-13 16:57:25 +02:00
<Property
name="terms"
2016-02-05 10:38:59 +01:00
className="ascribe-property-collapsible-toggle">
2015-07-28 15:46:55 +02:00
<InputCheckbox>
2015-07-14 19:53:49 +02:00
<span>
2015-09-22 11:41:10 +02:00
{' ' + getLangText('I agree to the Terms of Service of ascribe') + ' '}
2015-07-15 16:57:41 +02:00
(<a href="https://www.ascribe.io/terms" target="_blank" style={{fontSize: '0.9em', color: 'rgba(0,0,0,0.7)'}}>
2015-07-14 19:53:49 +02:00
{getLangText('read')}
</a>)
</span>
</InputCheckbox>
2015-07-13 16:57:25 +02:00
</Property>
</Form>
2015-06-11 17:22:11 +02:00
);
}
});
2015-07-13 20:47:43 +02:00
2015-07-13 16:57:25 +02:00
export default SignupForm;