|
|
@@ -0,0 +1,66 @@
|
|
|
+import React from 'react';
|
|
|
+import PropTypes from 'prop-types';
|
|
|
+
|
|
|
+import { withTranslation } from 'react-i18next';
|
|
|
+
|
|
|
+import {
|
|
|
+ Button, Modal, ModalHeader, ModalBody, ModalFooter,
|
|
|
+} from 'reactstrap';
|
|
|
+
|
|
|
+const DeleteSlackCredentialsModal = React.memo((props) => {
|
|
|
+ const { t } = props;
|
|
|
+
|
|
|
+ function closeModal() {
|
|
|
+ if (props.onClose == null) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ props.onClose();
|
|
|
+ }
|
|
|
+
|
|
|
+ function deleteAllLinkHandler() {
|
|
|
+ if (props.onClickDeleteButton == null) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ props.onClickDeleteButton();
|
|
|
+
|
|
|
+ closeModal();
|
|
|
+ }
|
|
|
+
|
|
|
+ function closeButtonHandler() {
|
|
|
+ closeModal();
|
|
|
+ }
|
|
|
+
|
|
|
+ return (
|
|
|
+ <Modal isOpen={props.isOpen} toggle={closeButtonHandler} className="page-comment-delete-modal">
|
|
|
+ <ModalHeader tag="h4" toggle={closeButtonHandler} className="bg-danger text-light">
|
|
|
+ <span>
|
|
|
+ <i className="icon-fw icon-fire"></i>
|
|
|
+ {t('share_links.delete_all_share_links')}
|
|
|
+ </span>
|
|
|
+ </ModalHeader>
|
|
|
+ <ModalBody>
|
|
|
+ { t('share_links.share_link_notice')}
|
|
|
+ </ModalBody>
|
|
|
+ <ModalFooter>
|
|
|
+ <Button onClick={closeButtonHandler}>{t('Cancel')}</Button>
|
|
|
+ <Button color="danger" onClick={deleteAllLinkHandler}>
|
|
|
+ <i className="icon icon-fire"></i>
|
|
|
+ {t('Delete')}
|
|
|
+ </Button>
|
|
|
+ </ModalFooter>
|
|
|
+ </Modal>
|
|
|
+ );
|
|
|
+
|
|
|
+});
|
|
|
+
|
|
|
+DeleteSlackCredentialsModal.propTypes = {
|
|
|
+ t: PropTypes.func.isRequired, // i18next
|
|
|
+
|
|
|
+ isOpen: PropTypes.bool.isRequired,
|
|
|
+ onClose: PropTypes.func,
|
|
|
+ onClickDeleteButton: PropTypes.func,
|
|
|
+};
|
|
|
+
|
|
|
+export default withTranslation()(DeleteSlackCredentialsModal);
|