| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- import React from 'react';
- import { useTranslation } from 'next-i18next';
- import PropTypes from 'prop-types';
- import AdminNotificationContainer from '~/client/services/AdminNotificationContainer';
- import { withUnstatedContainers } from '../../UnstatedUtils';
- import { NotificationTypeIcon } from './NotificationTypeIcon';
- class UserNotificationRow extends React.PureComponent {
- render() {
- const { t, notification } = this.props;
- const id = `user-notification-${notification._id}`;
- return (
- <React.Fragment>
- <tr className="admin-notif-row" key={id}>
- <td className="px-4">{notification.pathPattern}</td>
- <td className="px-4">
- <NotificationTypeIcon notification={notification} />
- {notification.channel}
- </td>
- <td>
- <button
- type="submit"
- className="btn btn-outline-danger"
- onClick={() => {
- this.props.onClickDeleteBtn(notification._id);
- }}
- >
- {t('Delete')}
- </button>
- </td>
- </tr>
- </React.Fragment>
- );
- }
- }
- UserNotificationRow.propTypes = {
- t: PropTypes.func.isRequired, // i18next
- adminNotificationContainer: PropTypes.instanceOf(AdminNotificationContainer)
- .isRequired,
- notification: PropTypes.object.isRequired,
- onClickDeleteBtn: PropTypes.func.isRequired,
- };
- // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
- const UserNotificationRowWrapperWrapperFC = (props) => {
- const { t } = useTranslation();
- return <UserNotificationRow t={t} {...props} />;
- };
- const UserNotificationRowWrapper = withUnstatedContainers(
- UserNotificationRowWrapperWrapperFC,
- [AdminNotificationContainer],
- );
- export default UserNotificationRowWrapper;
|