1
0
mirror of https://github.com/ascribe/onion.git synced 2024-09-28 12:08:55 +02:00
onion/js/mixins/form_mixin.js

73 lines
1.9 KiB
JavaScript
Raw Normal View History

2015-06-01 17:43:38 +02:00
import fetch from '../utils/fetch';
import React from 'react';
import AppConstants from '../constants/application_constants'
import AlertDismissable from '../components/ascribe_forms/alert'
export const FormMixin = {
getInitialState() {
return {
submitted: false
, status: null
, errors: []
}
},
2015-06-01 18:00:34 +02:00
submit(e) {
e.preventDefault();
this.setState({submitted: true});
2015-06-01 17:43:38 +02:00
fetch
.post(this.url(), { body: this.getFormData() })
2015-06-02 18:16:18 +02:00
.then(response => { this.props.handleSuccess(); })
2015-06-01 17:43:38 +02:00
.catch(this.handleError);
},
2015-06-01 18:00:34 +02:00
2015-06-01 17:43:38 +02:00
handleError(err){
if (err.json) {
2015-06-02 18:16:18 +02:00
for (var input in err.json.errors){
2015-06-01 17:43:38 +02:00
if (this.refs && this.refs[input] && this.refs[input].state) {
2015-06-02 18:16:18 +02:00
this.refs[input].setAlerts( err.json.errors[input]);
2015-06-02 17:32:38 +02:00
} else {
2015-06-02 18:16:18 +02:00
this.setState({errors: this.state.errors.concat(err.json.errors[input])});
2015-06-01 17:43:38 +02:00
}
}
}
2015-06-02 18:16:18 +02:00
else{
this.setState({errors: ['Something went wrong, please try again later"']});
}
this.setState({submitted: false});
},
2015-06-01 18:00:34 +02:00
2015-06-02 11:38:18 +02:00
getBitcoinIds(){
return this.props.editions.map(function(edition){
return edition.bitcoin_id
})
},
2015-06-02 17:32:38 +02:00
2015-06-02 11:38:18 +02:00
getTitlesString(){
return this.props.editions.map(function(edition){
return '- \"' + edition.title + ', edition ' + edition.edition_number + '\"\n'
})
},
2015-06-02 17:32:38 +02:00
render(){
let alert = null;
if (this.state.errors.length > 0){
alert = this.state.errors.map(
2015-06-02 18:16:18 +02:00
function(error) {
return <AlertDismissable error={error} key={error}/>;
}.bind(this)
);
}
return (
<div>
{alert}
{this.renderForm()}
</div>
)
}
};
export default FormMixin;