| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- import React from 'react';
- import { useTranslation } from 'next-i18next';
- import PropTypes from 'prop-types';
- import { Modal, ModalBody, ModalFooter, ModalHeader } from 'reactstrap';
- class NotificationDeleteModal extends React.PureComponent {
- render() {
- const { t, notificationForConfiguration } = this.props;
- return (
- <Modal isOpen={this.props.isOpen} toggle={this.props.onClose}>
- <ModalHeader
- tag="h4"
- toggle={this.props.onClose}
- className="text-danger"
- >
- <span className="material-symbols-outlined">delete_forever</span>
- Delete Global Notification Setting
- </ModalHeader>
- <ModalBody>
- <p>
- {t('notification_settings.delete_notification_pattern_desc1', {
- path: notificationForConfiguration.triggerPath,
- })}
- </p>
- <p className="text-danger">
- {t('notification_settings.delete_notification_pattern_desc2')}
- </p>
- </ModalBody>
- <ModalFooter>
- <button
- type="button"
- className="btn btn-sm btn-danger"
- onClick={this.props.onClickSubmit}
- >
- <span className="material-symbols-outlined">delete_forever</span>{' '}
- {t('Delete')}
- </button>
- </ModalFooter>
- </Modal>
- );
- }
- }
- NotificationDeleteModal.propTypes = {
- t: PropTypes.func.isRequired, // i18next
- isOpen: PropTypes.bool.isRequired,
- onClose: PropTypes.func.isRequired,
- onClickSubmit: PropTypes.func.isRequired,
- notificationForConfiguration: PropTypes.object.isRequired,
- };
- // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
- const NotificationDeleteModalWrapperFC = (props) => {
- const { t } = useTranslation('admin');
- return <NotificationDeleteModal t={t} {...props} />;
- };
- export default NotificationDeleteModalWrapperFC;
|