1
0
mirror of https://github.com/ascribe/onion.git synced 2025-01-11 05:29:06 +01:00
onion/js/components/ascribe_forms/create_editions_form.js
vrde 729d27559d WIP: Refactoring forms
Conflicts:
	js/components/ascribe_forms/form.js
	js/components/ascribe_forms/form_contract_agreement.js
	js/components/settings_container.js
2015-09-16 22:04:19 +02:00

59 lines
1.6 KiB
JavaScript

'use strict';
import React from 'react';
import Form from '../ascribe_forms/form';
import Property from '../ascribe_forms/property';
import GlobalNotificationModel from '../../models/global_notification_model';
import GlobalNotificationActions from '../../actions/global_notification_actions';
import ApiUrls from '../../constants/api_urls';
import { getLangText } from '../../utils/lang_utils';
let CreateEditionsForm = React.createClass({
propTypes: {
handleSuccess: React.PropTypes.func,
pieceId: React.PropTypes.number
},
getFormData(){
return {
piece_id: parseInt(this.props.pieceId, 10)
};
},
handleSuccess(response) {
let notification = new GlobalNotificationModel(response.notification, 'success', 10000);
GlobalNotificationActions.appendGlobalNotification(notification);
if(this.props.handleSuccess) {
this.props.handleSuccess(response);
}
},
render() {
return (
<Form
ref='form'
url={ApiUrls.editions}
getFormData={this.getFormData}
handleSuccess={this.handleSuccess}
showButtonsOnEdit={true} >
<Property
name='num_editions'
label={getLangText('Number of editions')}>
<input
type="number"
placeholder="(e.g. 32)"
min={1}/>
</Property>
</Form>
);
}
});
export default CreateEditionsForm;