| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import { withTranslation } from 'react-i18next';
- import { createSubscribedElement } from '../../UnstatedUtils';
- import AppContainer from '../../../services/AppContainer';
- import AdminNotificationContainer from '../../../services/AdminNotificationContainer';
- import GlobalNotificationList from './GlobalNotificationList';
- class GlobalNotification extends React.Component {
- render() {
- const { t, adminNotificationContainer } = this.props;
- const { globalNotifications } = adminNotificationContainer.state;
- return (
- <React.Fragment>
- <a href="/admin/global-notification/new">
- <p className="btn btn-default">{t('notification_setting.add_notification')}</p>
- </a>
- <h2 className="border-bottom mb-5">{t('notification_setting.notification_list')}</h2>
- <table className="table table-bordered">
- <thead>
- <tr>
- <th>ON/OFF</th>
- {/* eslint-disable-next-line react/no-danger */}
- <th>{t('notification_setting.trigger_path')} <span dangerouslySetInnerHTML={{ __html: t('notification_setting.trigger_path_help') }} /></th>
- <th>{t('notification_setting.trigger_events')}</th>
- <th>{t('notification_setting.notify_to')}</th>
- <th></th>
- </tr>
- </thead>
- {globalNotifications.length !== 0 && (
- <tbody className="admin-notif-list">
- <GlobalNotificationList />
- </tbody>
- )}
- </table>
- </React.Fragment>
- );
- }
- }
- const GlobalNotificationWrapper = (props) => {
- return createSubscribedElement(GlobalNotification, props, [AppContainer, AdminNotificationContainer]);
- };
- GlobalNotification.propTypes = {
- t: PropTypes.func.isRequired, // i18next
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- adminNotificationContainer: PropTypes.instanceOf(AdminNotificationContainer).isRequired,
- };
- export default withTranslation()(GlobalNotificationWrapper);
|