import React from 'react'; import PropTypes from 'prop-types'; import { Modal, ModalHeader, ModalBody, ModalFooter, Button } from 'reactstrap'; import { gettext } from '../../utils/constants'; import { seafileAPI } from '../../utils/seafile-api'; import { Utils } from '../../utils/utils'; import toaster from '../toast'; class DismissGroupDialog extends React.Component { constructor(props) { super(props); } dismissGroup = () => { let that = this; seafileAPI.deleteGroup(this.props.groupID).then((res) => { that.props.onGroupChanged(); }).catch(error => { let errMessage = Utils.getErrorMsg(error); toaster.danger(errMessage); }); }; render() { return ( {gettext('Delete Group')} {gettext('Really want to delete this group?')} ); } } const DismissGroupDialogPropTypes = { showDismissGroupDialog: PropTypes.bool.isRequired, toggleDismissGroupDialog: PropTypes.func.isRequired, loadGroup: PropTypes.func.isRequired, groupID: PropTypes.string, onGroupChanged: PropTypes.func.isRequired, }; DismissGroupDialog.propTypes = DismissGroupDialogPropTypes; export default DismissGroupDialog;