1
0
mirror of https://github.com/ascribe/onion.git synced 2025-02-14 21:10:27 +01:00
onion/js/components/ascribe_forms/form_share_email.js

62 lines
1.8 KiB
JavaScript
Raw Normal View History

'use strict';
2015-05-28 18:18:13 +02:00
import React from 'react';
import ApiUrls from '../../constants/api_urls';
import FormMixin from '../../mixins/form_mixin';
import InputText from './input_text';
import InputTextArea from './input_textarea';
2015-06-03 10:27:11 +02:00
import ButtonSubmitOrClose from '../ascribe_buttons/button_submit_close';
2015-07-03 19:08:56 +02:00
import { getLangText } from '../../utils/lang_utils.js'
2015-05-28 18:18:13 +02:00
let ShareForm = React.createClass({
mixins: [FormMixin],
url() {
2015-06-23 17:01:15 +02:00
return ApiUrls.ownership_shares;
2015-05-28 18:18:13 +02:00
},
2015-05-28 18:18:13 +02:00
getFormData() {
return {
2015-06-02 14:00:05 +02:00
bitcoin_id: this.getBitcoinIds().join(),
share_emails: this.refs.share_emails.state.value,
share_message: this.refs.share_message.state.value
};
2015-05-28 18:18:13 +02:00
},
renderForm() {
let title = this.getTitlesString().join('');
2015-05-29 10:58:07 +02:00
let username = this.props.currentUser.username;
let message =
2015-07-03 19:08:56 +02:00
`${getLangText('Hi')},
2015-05-29 10:58:07 +02:00
2015-07-03 19:08:56 +02:00
${getLangText('I am sharing')} :
${title}${getLangText('with you')}.
2015-05-29 10:58:07 +02:00
2015-07-03 19:08:56 +02:00
${getLangText('Truly yours')},
2015-05-29 10:58:07 +02:00
${username}`;
2015-05-28 18:18:13 +02:00
return (
<form id="share_modal_content" role="form" key="share_modal_content" onSubmit={this.submit}>
<InputText
ref="share_emails"
2015-07-03 19:08:56 +02:00
placeHolder={getLangText('Comma separated emails')}
required="required"
type="text"
submitted={this.state.submitted}/>
<InputTextArea
ref="share_message"
defaultValue={message}
required=""
/>
<ButtonSubmitOrClose
2015-07-03 19:08:56 +02:00
text={getLangText('SHARE')}
onClose={this.props.onRequestHide}
submitted={this.state.submitted} />
2015-05-28 18:18:13 +02:00
</form>
);
}
});
export default ShareForm;