1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 16:48:04 +02:00
onion/js/components/ascribe_buttons/delete_button.js

54 lines
1.8 KiB
JavaScript
Raw Normal View History

'use strict';
2015-06-10 15:49:46 +02:00
import React from 'react';
import Router from 'react-router';
import Button from 'react-bootstrap/lib/Button';
import EditionDeleteForm from '../ascribe_forms/form_delete_edition';
import EditionRemoveFromCollectionForm from '../ascribe_forms/form_remove_editions_from_collection';
2015-06-10 15:49:46 +02:00
import ModalWrapper from '../ascribe_modal/modal_wrapper';
import { getAvailableAcls } from '../../utils/acl_utils';
import { getLangText } from '../../utils/lang_utils.js';
2015-06-10 15:49:46 +02:00
let DeleteButton = React.createClass({
propTypes: {
2015-07-14 00:56:23 +02:00
editions: React.PropTypes.array.isRequired,
handleSuccess: React.PropTypes.func
2015-06-10 15:49:46 +02:00
},
mixins: [Router.Navigation],
render: function () {
let availableAcls = getAvailableAcls(this.props.editions);
2015-06-10 15:49:46 +02:00
let btnDelete = null;
let content = null;
if (availableAcls.acl_delete) {
content = <EditionDeleteForm editions={ this.props.editions }/>;
2015-07-03 19:08:56 +02:00
btnDelete = <Button bsStyle="danger" className="btn-delete" bsSize="small">{getLangText('DELETE')}</Button>;
2015-06-10 15:49:46 +02:00
}
2015-07-13 23:57:16 +02:00
else if (availableAcls.acl_unshare || (this.props.editions.constructor !== Array && this.props.editions.acl.acl_unshare)){
content = <EditionRemoveFromCollectionForm editions={ this.props.editions }/>;
2015-07-03 19:08:56 +02:00
btnDelete = <Button bsStyle="danger" className="btn-delete" bsSize="small">{getLangText('REMOVE FROM COLLECTION')}</Button>;
2015-06-10 15:49:46 +02:00
}
else {
2015-06-16 10:02:55 +02:00
return null;
2015-06-10 15:49:46 +02:00
}
return (
<ModalWrapper
button={btnDelete}
handleSuccess={this.props.handleSuccess}
2015-07-03 19:08:56 +02:00
title={getLangText('Remove Edition')}
tooltip={getLangText('Click to remove edition')}>
2015-06-10 15:49:46 +02:00
{ content }
</ModalWrapper>
);
}
});
export default DeleteButton;