mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 17:45:10 +01:00
109 lines
2.7 KiB
JavaScript
109 lines
2.7 KiB
JavaScript
'use strict';
|
|
|
|
import requests from '../utils/requests';
|
|
import React from 'react';
|
|
|
|
import AlertDismissable from '../components/ascribe_forms/alert';
|
|
import { getLangText } from '../utils/lang_utils.js'
|
|
|
|
export const FormMixin = {
|
|
propTypes: {
|
|
editions: React.PropTypes.array,
|
|
currentUser: React.PropTypes.object
|
|
},
|
|
|
|
getInitialState() {
|
|
return {
|
|
submitted: false,
|
|
errors: []
|
|
};
|
|
},
|
|
|
|
submit(e) {
|
|
if (e) {
|
|
e.preventDefault();
|
|
}
|
|
this.setState({submitted: true});
|
|
this.clearErrors();
|
|
let action = (this.httpVerb && this.httpVerb()) || 'post';
|
|
this[action](e);
|
|
},
|
|
|
|
post(e){
|
|
requests
|
|
.post(this.url(e), { body: this.getFormData() })
|
|
.then(this.handleSuccess)
|
|
.catch(this.handleError);
|
|
},
|
|
|
|
delete(e){
|
|
requests
|
|
.delete(this.url(e))
|
|
.then(this.handleSuccess)
|
|
.catch(this.handleError);
|
|
},
|
|
|
|
clearErrors(){
|
|
for (var ref in this.refs){
|
|
if ('clearAlerts' in this.refs[ref]){
|
|
this.refs[ref].clearAlerts();
|
|
}
|
|
|
|
}
|
|
this.setState({errors: []});
|
|
},
|
|
handleSuccess(response){
|
|
if ('handleSuccess' in this.props){
|
|
this.props.handleSuccess(response);
|
|
}
|
|
|
|
},
|
|
handleError(err){
|
|
if (err.json) {
|
|
for (var input in err.json.errors){
|
|
if (this.refs && this.refs[input] && this.refs[input].state) {
|
|
this.refs[input].setAlerts( err.json.errors[input]);
|
|
} else {
|
|
this.setState({errors: this.state.errors.concat(err.json.errors[input])});
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
// TODO translate?
|
|
this.setState({errors: ['Something went wrong, please try again later']});
|
|
}
|
|
this.setState({submitted: false});
|
|
},
|
|
|
|
getBitcoinIds(){
|
|
return this.props.editions.map(function(edition){
|
|
return edition.bitcoin_id;
|
|
});
|
|
},
|
|
|
|
getTitlesString(){
|
|
return this.props.editions.map(function(edition){
|
|
return '- \"' + edition.title + ', ' + getLangText('edition') + ' ' + edition.edition_number + '\"\n';
|
|
});
|
|
},
|
|
|
|
render(){
|
|
let alert = null;
|
|
if (this.state.errors.length > 0){
|
|
alert = this.state.errors.map((error) => {
|
|
return <AlertDismissable error={error} key={error}/>;
|
|
});
|
|
}
|
|
|
|
return (
|
|
<div>
|
|
{alert}
|
|
{this.renderForm()}
|
|
</div>
|
|
);
|
|
}
|
|
};
|
|
|
|
export default FormMixin;
|
|
|