mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
54 lines
1.3 KiB
JavaScript
54 lines
1.3 KiB
JavaScript
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
|
|
}
|
|
},
|
|
|
|
submit(e) {
|
|
e.preventDefault();
|
|
this.setState({submitted: true});
|
|
fetch
|
|
.post(this.url(), { body: this.getFormData() })
|
|
.then(response => { this.props.onRequestHide(); })
|
|
.catch(this.handleError);
|
|
|
|
},
|
|
|
|
handleError(err){
|
|
if (err.json) {
|
|
for (var input in errors){
|
|
if (this.refs && this.refs[input] && this.refs[input].state) {
|
|
this.refs[input].setAlerts(errors[input]);
|
|
}
|
|
}
|
|
this.setState({submitted: false});
|
|
} else {
|
|
this.setState({submitted: false, status: response.status});
|
|
}
|
|
},
|
|
|
|
render(){
|
|
let alert = null;
|
|
if (this.state.status >= 500){
|
|
alert = <AlertDismissable error="Something went wrong, please try again later"/>;
|
|
}
|
|
return (
|
|
<div>
|
|
{alert}
|
|
{this.renderForm()}
|
|
</div>
|
|
)
|
|
}
|
|
};
|
|
|
|
export default FormMixin;
|
|
|