1
0
mirror of https://github.com/ascribe/onion.git synced 2024-11-15 09:35:10 +01:00

refactor form_remove_editions_from_collection

This commit is contained in:
Tim Daubenschütz 2015-08-06 10:31:51 +02:00
parent 68f4decaad
commit 0eb10c6c4b
2 changed files with 50 additions and 21 deletions

View File

@ -2,34 +2,63 @@
import React from 'react'; import React from 'react';
import { getLangText } from '../../utils/lang_utils.js'; import Form from './form';
import requests from '../../utils/requests';
import apiUrls from '../../constants/api_urls'; import ApiUrls from '../../constants/api_urls';
import FormMixin from '../../mixins/form_mixin'; import AppConstants from '../../constants/application_constants';
import { getLangText } from '../../utils/lang_utils';
let EditionRemoveFromCollectionForm = React.createClass({ let EditionRemoveFromCollectionForm = React.createClass({
propTypes: {
editions: React.PropTypes.arrayOf(React.PropTypes.object),
mixins: [FormMixin], // Propagated by ModalWrapper in most cases
handleSuccess: React.PropTypes.func
url() {
return requests.prepareUrl(apiUrls.edition_remove_from_collection, {edition_id: this.getBitcoinIds().join()});
}, },
httpVerb(){ getBitcoinIds() {
return 'delete'; return this.props.editions.map(function(edition){
return edition.bitcoin_id;
});
}, },
renderForm () { // Since this form can be used for either removing 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 ( return (
<div className="modal-body"> <Form
<p>{getLangText('Are you sure you would like to remove these editions from your collection')}&#63;</p> ref='form'
<p>{getLangText('This is an irrevocable action%s', '.')}</p> url={ApiUrls.edition_remove_from_collection}
getFormData={this.getFormData}
method="delete"
handleSuccess={this.props.handleSuccess}
buttons={
<div className="modal-footer"> <div className="modal-footer">
<button type="submit" className="btn btn-danger btn-delete btn-sm ascribe-margin-1px" onClick={this.submit}> <p className="pull-right">
<button
type="submit"
className="btn btn-danger btn-delete btn-sm ascribe-margin-1px"
onClick={this.submit}>
{getLangText('YES, REMOVE')} {getLangText('YES, REMOVE')}
</button> </button>
</p>
</div> </div>
}
spinner={
<div className="modal-footer">
<img src={AppConstants.baseUrl + 'static/img/ascribe_animated_small.gif'} />
</div> </div>
}>
<p>{getLangText('Are you sure you would like to remove these editions from your collection')}&#63;</p>
<p>{getLangText('This is an irrevocable action%s', '.')}</p>
</Form>
); );
} }
}); });