mirror of
https://github.com/ascribe/onion.git
synced 2025-01-11 13:33:46 +01:00
51 lines
1.5 KiB
JavaScript
51 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
import Form from './form';
|
|
import ApiUrls from '../../constants/api_urls';
|
|
import { SubmitDangerButton } from '../../lib/buttons';
|
|
import { getLangText } from '../../utils/lang_utils';
|
|
|
|
|
|
let EditionDeleteForm = React.createClass({
|
|
|
|
propTypes: {
|
|
editions: React.PropTypes.arrayOf(React.PropTypes.object),
|
|
|
|
// Propagated by ModalWrapper in most cases
|
|
handleSuccess: React.PropTypes.func
|
|
},
|
|
|
|
getBitcoinIds() {
|
|
return this.props.editions.map(function(edition){
|
|
return edition.bitcoin_id;
|
|
});
|
|
},
|
|
|
|
// Since this form can be used for either deleting a single edition or multiple
|
|
// we need to call getBitcoinIds to get the value of edition_id
|
|
getFormData() {
|
|
return {
|
|
edition_id: this.getBitcoinIds().join(',')
|
|
};
|
|
},
|
|
|
|
render () {
|
|
return (
|
|
<Form
|
|
ref='form'
|
|
url={ApiUrls.edition_delete}
|
|
getFormData={this.getFormData}
|
|
method="delete"
|
|
handleSuccess={this.props.handleSuccess}
|
|
buttonSubmit={<SubmitDangerButton>{getLangText('YES, DELETE')}</SubmitDangerButton>}>
|
|
<p>{getLangText('Are you sure you would like to permanently delete this edition')}?</p>
|
|
<p>{getLangText('This is an irrevocable action%s', '.')}</p>
|
|
</Form>
|
|
);
|
|
}
|
|
});
|
|
|
|
|
|
export default EditionDeleteForm;
|