mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
43 lines
1.0 KiB
JavaScript
43 lines
1.0 KiB
JavaScript
|
'use strict';
|
||
|
|
||
|
import React from 'react';
|
||
|
|
||
|
import apiUrls from '../../constants/api_urls';
|
||
|
import FormMixin from '../../mixins/form_mixin';
|
||
|
|
||
|
import InputTextAreaToggable from './input_textarea_toggable';
|
||
|
|
||
|
|
||
|
let PersonalNoteForm = React.createClass({
|
||
|
mixins: [FormMixin],
|
||
|
|
||
|
url() {
|
||
|
return apiUrls.note_notes;
|
||
|
},
|
||
|
|
||
|
getFormData() {
|
||
|
return {
|
||
|
bitcoin_id: this.getBitcoinIds().join(),
|
||
|
note: this.refs.personalNote.state.value
|
||
|
};
|
||
|
},
|
||
|
|
||
|
renderForm() {
|
||
|
|
||
|
return (
|
||
|
<form id="personal_note_content" role="form" key="personal_note_content">
|
||
|
<InputTextAreaToggable
|
||
|
ref="personalNote"
|
||
|
className="form-control"
|
||
|
defaultValue={this.props.editions[0].note_from_user}
|
||
|
rows={3}
|
||
|
editable={true}
|
||
|
required=""
|
||
|
onSubmit={this.submit}
|
||
|
/>
|
||
|
</form>
|
||
|
);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
export default PersonalNoteForm;
|