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

69 lines
2.5 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 GlobalNotificationModel from '../../models/global_notification_model';
import GlobalNotificationActions from '../../actions/global_notification_actions';
import { getAvailableAcls } from '../../utils/acl_utils';
import { getLangText } from '../../utils/lang_utils.js';
import EditionListActions from '../../actions/edition_list_actions';
2015-06-10 15:49:46 +02:00
let DeleteButton = React.createClass({
propTypes: {
editions: React.PropTypes.array.isRequired
2015-06-10 15:49:46 +02:00
},
mixins: [Router.Navigation],
showNotification(response) {
this.props.editions
.forEach((edition) => {
EditionListActions.fetchEditionList(edition.parent);
});
EditionListActions.clearAllEditionSelections();
EditionListActions.closeAllEditionLists();
2015-06-10 15:49:46 +02:00
this.transitionTo('pieces');
let notification = new GlobalNotificationModel(response.notification, 'success');
GlobalNotificationActions.appendGlobalNotification(notification);
},
2015-06-10 15:49:46 +02:00
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.showNotification }
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;