| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- import React from 'react';
- import { useTranslation } from 'next-i18next';
- import PropTypes from 'prop-types';
- import urljoin from 'url-join';
- import AdminNotificationContainer from '~/client/services/AdminNotificationContainer';
- import { apiv3Put } from '~/client/util/apiv3-client';
- import { toastSuccess, toastError } from '~/client/util/toastr';
- import loggerFactory from '~/utils/logger';
- import { withUnstatedContainers } from '../../UnstatedUtils';
- import NotificationDeleteModal from './NotificationDeleteModal';
- import { NotificationTypeIcon } from './NotificationTypeIcon';
- const logger = loggerFactory('growi:GolobalNotificationList');
- class GlobalNotificationList extends React.Component {
- constructor(props) {
- super(props);
- this.state = {
- isConfirmationModalOpen: false,
- notificationForConfiguration: null,
- };
- this.openConfirmationModal = this.openConfirmationModal.bind(this);
- this.closeConfirmationModal = this.closeConfirmationModal.bind(this);
- this.onClickSubmit = this.onClickSubmit.bind(this);
- }
- async toggleIsEnabled(notification) {
- const { t } = this.props;
- const isEnabled = !notification.isEnabled;
- try {
- await apiv3Put(`/notification-setting/global-notification/${notification._id}/enabled`, {
- isEnabled,
- });
- toastSuccess(t('notification_settings.toggle_notification', { path: notification.triggerPath }));
- await this.props.adminNotificationContainer.retrieveNotificationData();
- }
- catch (err) {
- toastError(err);
- logger.error(err);
- }
- }
- openConfirmationModal(notification) {
- this.setState({ isConfirmationModalOpen: true, notificationForConfiguration: notification });
- }
- closeConfirmationModal() {
- this.setState({ isConfirmationModalOpen: false, notificationForConfiguration: null });
- }
- async onClickSubmit() {
- const { t, adminNotificationContainer } = this.props;
- try {
- const deletedNotificaton = await adminNotificationContainer.deleteGlobalNotificationPattern(this.state.notificationForConfiguration._id);
- toastSuccess(t('notification_settings.delete_notification_pattern', { path: deletedNotificaton.triggerPath }));
- }
- catch (err) {
- toastError(err);
- logger.error(err);
- }
- this.setState({ isConfirmationModalOpen: false });
- }
- render() {
- const { t, adminNotificationContainer } = this.props;
- const { globalNotifications } = adminNotificationContainer.state;
- return (
- <React.Fragment>
- {globalNotifications.map((notification) => {
- return (
- <tr key={notification._id}>
- <td className="align-middle td-abs-center">
- <div className="form-check form-switch form-check-success">
- <input
- type="checkbox"
- className="form-check-input"
- id={notification._id}
- defaultChecked={notification.isEnabled}
- onClick={() => this.toggleIsEnabled(notification)}
- />
- <label className="form-label form-check-label" htmlFor={notification._id} />
- </div>
- </td>
- <td>
- {notification.triggerPath}
- </td>
- <td>
- <ul className="list-inline mb-0">
- {notification.triggerEvents.includes('pageCreate') && (
- <li className="list-inline-item badge badge-pill badge-success">
- <i className="icon-doc"></i> CREATE
- </li>
- )}
- {notification.triggerEvents.includes('pageEdit') && (
- <li className="list-inline-item badge badge-pill badge-warning">
- <i className="icon-pencil"></i> EDIT
- </li>
- )}
- {notification.triggerEvents.includes('pageMove') && (
- <li className="list-inline-item badge badge-pill badge-pink">
- <i className="icon-action-redo"></i> MOVE
- </li>
- )}
- {notification.triggerEvents.includes('pageDelete') && (
- <li className="list-inline-item badge badge-pill badge-danger">
- <i className="icon-fire"></i> DELETE
- </li>
- )}
- {notification.triggerEvents.includes('pageLike') && (
- <li className="list-inline-item badge badge-pill badge-info">
- <i className="fa fa-heart-o"></i> LIKE
- </li>
- )}
- {notification.triggerEvents.includes('comment') && (
- <li className="list-inline-item badge badge-pill badge-secondary">
- <i className="icon-fw icon-bubble"></i> POST
- </li>
- )}
- </ul>
- </td>
- <td>
- <NotificationTypeIcon notification={notification} />
- { notification.__t === 'mail' && notification.toEmail }
- { notification.__t === 'slack' && notification.slackChannels }
- </td>
- <td className="td-abs-center">
- <div className="dropdown">
- <button
- className="btn btn-outline-secondary dropdown-toggle"
- type="button"
- id="dropdownMenuButton"
- data-toggle="dropdown"
- aria-haspopup="true"
- aria-expanded="false"
- >
- <i className="icon-settings"></i> <span className="caret"></span>
- </button>
- <div className="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownMenuButton">
- <a className="dropdown-item" href={urljoin('/admin/global-notification/', notification._id)}>
- <i className="icon-fw icon-note"></i> {t('Edit')}
- </a>
- <button className="dropdown-item" type="button" onClick={() => this.openConfirmationModal(notification)}>
- <i className="icon-fw icon-fire text-danger"></i> {t('Delete')}
- </button>
- </div>
- </div>
- </td>
- </tr>
- );
- })}
- {this.state.notificationForConfiguration != null && (
- <NotificationDeleteModal
- isOpen={this.state.isConfirmationModalOpen}
- onClose={this.closeConfirmationModal}
- onClickSubmit={this.onClickSubmit}
- notificationForConfiguration={this.state.notificationForConfiguration}
- />
- )}
- </React.Fragment>
- );
- }
- }
- GlobalNotificationList.propTypes = {
- t: PropTypes.func.isRequired, // i18next
- adminNotificationContainer: PropTypes.instanceOf(AdminNotificationContainer).isRequired,
- };
- const GlobalNotificationListWrapperFC = (props) => {
- const { t } = useTranslation('admin');
- return <GlobalNotificationList t={t} {...props} />;
- };
- const GlobalNotificationListWrapper = withUnstatedContainers(GlobalNotificationListWrapperFC, [AdminNotificationContainer]);
- export default GlobalNotificationListWrapper;
|