onion/js/components/ascribe_forms/form_transfer.js

97 lines
3.2 KiB
JavaScript
Raw Normal View History

'use strict';
import React from 'react';
2015-07-14 11:42:09 +02:00
import Button from 'react-bootstrap/lib/Button';
import Alert from 'react-bootstrap/lib/Alert';
2015-07-14 11:42:09 +02:00
import Form from './form';
import Property from './property';
import InputTextAreaToggable from './input_textarea_toggable';
2015-10-15 11:17:16 +02:00
import AclInformation from '../ascribe_buttons/acl_information';
import AscribeSpinner from '../ascribe_spinner';
2015-07-14 11:42:09 +02:00
import { getLangText } from '../../utils/lang_utils.js';
2015-06-02 11:38:18 +02:00
2015-07-14 11:42:09 +02:00
let TransferForm = React.createClass({
propTypes: {
id: React.PropTypes.object.isRequired,
url: React.PropTypes.string.isRequired,
handleSuccess: React.PropTypes.func,
message: React.PropTypes.string
2015-07-14 11:42:09 +02:00
},
getFormData() {
2015-07-14 11:42:09 +02:00
return this.props.id;
},
2015-06-02 11:38:18 +02:00
2015-07-14 11:42:09 +02:00
render() {
const { handleSuccess, message, url } = this.props;
2015-06-02 11:38:18 +02:00
return (
2015-07-14 11:42:09 +02:00
<Form
ref='form'
url={url}
2015-07-14 11:42:09 +02:00
getFormData={this.getFormData}
handleSuccess={handleSuccess}
2015-07-14 11:42:09 +02:00
buttons={
<div className="modal-footer">
<p className="pull-right">
<Button
className="btn btn-default btn-sm ascribe-margin-1px"
2015-08-05 18:00:44 +02:00
type="submit">
{getLangText('TRANSFER')}
</Button>
2015-07-14 11:42:09 +02:00
</p>
</div>}
spinner={
<div className="modal-footer">
<p className="pull-right">
<AscribeSpinner color='dark-blue' size='md'/>
</p>
2015-07-14 11:42:09 +02:00
</div>}>
2015-10-15 11:17:16 +02:00
<AclInformation aim={'form'} verbs={['acl_transfer']}/>
2015-07-14 11:42:09 +02:00
<Property
name='transferee'
label={getLangText('Email')}>
<input
type="email"
placeholder={getLangText('Email of the transferee')}
required/>
</Property>
<Property
name='transfer_message'
2015-07-14 14:16:51 +02:00
label={getLangText('Personal Message')}
editable={true}
overrideForm={true}>
2015-07-14 11:42:09 +02:00
<InputTextAreaToggable
rows={1}
defaultValue={message}
2015-07-14 11:42:09 +02:00
placeholder={getLangText('Enter a message...')}
required />
2015-07-14 11:42:09 +02:00
</Property>
<Property
name='password'
label={getLangText('Password')}>
<input
type="password"
placeholder={getLangText('Enter your password')}
required/>
</Property>
<hr />
<br />
<Alert bsStyle='warning'>
Make sure that display instructions and technology details are correct.<br/>
They cannot be edited after the transfer.
2015-07-14 11:42:09 +02:00
</Alert>
</Form>
);
}
});
export default TransferForm;