| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- import { React, useCallback } from 'react';
- import { useTranslation } from 'next-i18next';
- import { useRouter } from 'next/router';
- import PropTypes from 'prop-types';
- import AdminNotificationContainer from '~/client/services/AdminNotificationContainer';
- import { toastSuccess, toastError } from '~/client/util/toastr';
- import loggerFactory from '~/utils/logger';
- import { withUnstatedContainers } from '../../UnstatedUtils';
- import GlobalNotificationList from './GlobalNotificationList';
- const logger = loggerFactory('growi:GlobalNotification');
- const GlobalNotification = (props) => {
- const { adminNotificationContainer } = props;
- const { t } = useTranslation('admin');
- const onClickSubmit = useCallback(async() => {
- try {
- await adminNotificationContainer.updateGlobalNotificationForPages();
- toastSuccess(t('toaster.update_successed', { target: t('external_notification.external_notification'), ns: 'commons' }));
- }
- catch (err) {
- toastError(err);
- logger.error(err);
- }
- }, [adminNotificationContainer, t]);
- const router = useRouter();
- const { globalNotifications } = adminNotificationContainer.state;
- return (
- <>
- <h2 className="border-bottom my-4">{t('notification_settings.valid_page')}</h2>
- <p className="card well">
- {/* eslint-disable-next-line react/no-danger */}
- <span dangerouslySetInnerHTML={{ __html: t('notification_settings.link_notification_help') }} />
- </p><div className="row mb-4">
- <div className="col-md-8 offset-md-2">
- <div className="custom-control custom-checkbox custom-checkbox-success">
- <input
- id="isNotificationForOwnerPageEnabled"
- className="custom-control-input"
- type="checkbox"
- checked={adminNotificationContainer.state.isNotificationForOwnerPageEnabled || false}
- onChange={() => { adminNotificationContainer.switchIsNotificationForOwnerPageEnabled() } } />
- <label className="custom-control-label" htmlFor="isNotificationForOwnerPageEnabled">
- {/* eslint-disable-next-line react/no-danger */}
- <span dangerouslySetInnerHTML={{ __html: t('notification_settings.just_me_notification_help') }} />
- </label>
- </div>
- </div>
- </div><div className="row mb-4">
- <div className="col-md-8 offset-md-2">
- <div className="custom-control custom-checkbox custom-checkbox-success">
- <input
- id="isNotificationForGroupPageEnabled"
- className="custom-control-input"
- type="checkbox"
- checked={adminNotificationContainer.state.isNotificationForGroupPageEnabled || false}
- onChange={() => { adminNotificationContainer.switchIsNotificationForGroupPageEnabled() } } />
- <label className="custom-control-label" htmlFor="isNotificationForGroupPageEnabled">
- {/* eslint-disable-next-line react/no-danger */}
- <span dangerouslySetInnerHTML={{ __html: t('notification_settings.group_notification_help') }} />
- </label>
- </div>
- </div>
- </div>
- <div className="row my-3">
- <div className="col-sm-5 offset-sm-4">
- <button
- type="button"
- className="btn btn-primary"
- onClick={onClickSubmit}
- disabled={adminNotificationContainer.state.retrieveError}
- >{t('Update')}
- </button>
- </div>
- </div>
- <h2 className="border-bottom mb-5">{t('notification_settings.notification_list')}
- <button className="btn btn-outline-secondary pull-right"
- type="button" onClick={() => router.push('/admin/global-notification/new')}>{t('notification_settings.add_notification')}</button>
- {/* <a href="/admin/global-notification/new">
- <p className="btn btn-outline-secondary pull-right">{t('notification_setting.add_notification')}</p>
- </a> */}
- </h2><table className="table table-bordered">
- <thead>
- <tr>
- <th>ON/OFF</th>
- {/* eslint-disable-next-line react/no-danger */}
- <th>{t('notification_settings.trigger_path')} <span dangerouslySetInnerHTML={{ __html: t('notification_settings.trigger_path_help') }} /></th>
- <th>{t('notification_settings.trigger_events')}</th>
- <th>{t('notification_settings.notify_to')}</th>
- <th></th>
- </tr>
- </thead>
- {globalNotifications.length !== 0 && (
- <tbody className="admin-notif-list">
- <GlobalNotificationList />
- </tbody>
- )}
- </table>
- </>
- );
- };
- GlobalNotification.propTypes = {
- adminNotificationContainer: PropTypes.instanceOf(AdminNotificationContainer).isRequired,
- };
- const GlobalNotificationWrapper = withUnstatedContainers(GlobalNotification, [AdminNotificationContainer]);
- export default GlobalNotificationWrapper;
|