mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-15 16:04:01 +00:00
68 lines
2.2 KiB
JavaScript
68 lines
2.2 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { gettext } from '../../utils/constants';
|
|
import { Button, Modal, ModalBody, ModalFooter } from 'reactstrap';
|
|
import { seafileAPI } from '../../utils/seafile-api';
|
|
import { Utils } from '../../utils/utils';
|
|
import Loading from '../loading';
|
|
import toaster from '../toast';
|
|
import SeahubModalHeader from '@/components/common/seahub-modal-header';
|
|
|
|
const propTypes = {
|
|
accepter: PropTypes.string.isRequired,
|
|
token: PropTypes.string.isRequired,
|
|
revokeInvitation: PropTypes.func.isRequired,
|
|
toggleDialog: PropTypes.func.isRequired
|
|
};
|
|
|
|
class InvitationRevokeDialog extends React.Component {
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
isSubmitting: false
|
|
};
|
|
}
|
|
|
|
onRevokeInvitation = () => {
|
|
this.setState({
|
|
isSubmitting: true,
|
|
});
|
|
|
|
seafileAPI.revokeInvitation(this.props.token).then((res) => {
|
|
this.props.revokeInvitation();
|
|
this.props.toggleDialog();
|
|
const msg = gettext('Successfully revoked access of user {placeholder}.').replace('{placeholder}', this.props.accepter);
|
|
toaster.success(msg);
|
|
}).catch((error) => {
|
|
const errorMsg = Utils.getErrorMsg(error);
|
|
toaster.danger(errorMsg);
|
|
this.props.toggleDialog();
|
|
});
|
|
};
|
|
|
|
render() {
|
|
const { toggleDialog } = this.props;
|
|
const { isSubmitting } = this.state;
|
|
const email = '<span class="op-target">' + Utils.HTMLescape(this.props.accepter) + '</span>';
|
|
const content = gettext('Are you sure to revoke access of user {placeholder} ?').replace('{placeholder}', email);
|
|
|
|
return (
|
|
<Modal isOpen={true} toggle={toggleDialog}>
|
|
<SeahubModalHeader toggle={toggleDialog}>{gettext('Revoke Access')}</SeahubModalHeader>
|
|
<ModalBody>
|
|
<p dangerouslySetInnerHTML={{ __html: content }}></p>
|
|
</ModalBody>
|
|
<ModalFooter>
|
|
<Button color="secondary" onClick={toggleDialog}>{gettext('Cancel')}</Button>
|
|
<Button className="submit-btn" color="primary" onClick={this.onRevokeInvitation} disabled={isSubmitting}>{isSubmitting ? <Loading /> : gettext('Submit')}</Button>
|
|
</ModalFooter>
|
|
</Modal>
|
|
);
|
|
}
|
|
}
|
|
|
|
InvitationRevokeDialog.propTypes = propTypes;
|
|
|
|
export default InvitationRevokeDialog;
|