| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import React from 'react';
- import { useTranslation } from 'next-i18next';
- import PropTypes from 'prop-types';
- import {
- Modal, ModalHeader, ModalBody, ModalFooter,
- } 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;
|