'use strict'; 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'; import ButtonSubmitOrClose from '../ascribe_buttons/button_submit_close'; let ShareForm = React.createClass({ mixins: [FormMixin], url() { return ApiUrls.ownership_shares_mail; }, getFormData() { return { bitcoin_id: this.getBitcoinIds().join(), share_emails: this.refs.share_emails.state.value, share_message: this.refs.share_message.state.value }; }, renderForm() { let title = this.getTitlesString().join(''); let username = this.props.currentUser.username; let message = `Hi, I am sharing : ${title}with you. Truly yours, ${username}`; return (
); } }); export default ShareForm;