| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335 |
- import React, { useCallback, useState } from 'react';
- import { useTranslation } from 'next-i18next';
- import PropTypes from 'prop-types';
- import urljoin from 'url-join';
- // import AppContainer from '~/client/services/AppContainer';
- // import { toastError } from '~/client/util/apiNotification';
- import { apiv3Post, apiv3Put } from '~/client/util/apiv3-client';
- import loggerFactory from '~/utils/logger';
- // import { withUnstatedContainers } from '../../UnstatedUtils';
- import AdminUpdateButtonRow from '../Common/AdminUpdateButtonRow';
- import TriggerEventCheckBox from './TriggerEventCheckBox';
- const logger = loggerFactory('growi:manageGlobalNotification');
- const ManageGlobalNotification = (props) => {
- // constructor() {
- // super();
- // const globalNotification = null;
- // // try {
- // // globalNotification = JSON.parse(document.getElementById('admin-global-notification-setting').getAttribute('data-global-notification'));
- // // }
- // // catch (err) {
- // // // toastError(err);
- // // logger.error(err);
- // // }
- // this.state = {
- // // globalNotificationId: globalNotification._id || null,
- // globalNotificationId: null,
- // // triggerPath: globalNotification.triggerPath || '',
- // triggerPath: '',
- // // notifyToType: globalNotification.__t || 'mail',
- // notifyToType: 'mail',
- // // emailToSend: globalNotification.toEmail || '',
- // emailToSend: '',
- // // slackChannelToSend: globalNotification.slackChannels || '',
- // slackChannelToSend: '',
- // // triggerEvents: new Set(globalNotification.triggerEvents),
- // triggerEvents: new Set(),
- // };
- // this.submitHandler = this.submitHandler.bind(this);
- // }
- const [globalNotificationId, setGlobalNotificationId] = useState(null);
- const [triggerPath, setTriggerPath] = useState('');
- const [notifyToType, setNotifyToType] = useState('mail');
- const [emailToSend, setEmailToSend] = useState('');
- const [slacChannelToSend, setSlackChannelToSend] = useState('');
- const [triggerEvents, setTriggerEvents] = useState(new Set());
- const [retrieveError] = useState(null);
- // onChangeTriggerPath(inputValue) {
- // this.setState({ triggerPath: inputValue });
- // }
- // onChangeNotifyToType(notifyToType) {
- // this.setState({ notifyToType });
- // }
- // onChangeEmailToSend(inputValue) {
- // this.setState({ emailToSend: inputValue });
- // }
- // onChangeSlackChannelToSend(inputValue) {
- // this.setState({ slackChannelToSend: inputValue });
- // }
- const onChangeTriggerEvents = (triggerEvent) => {
- if (triggerEvents.has(triggerEvent)) {
- triggerEvents.delete(triggerEvent);
- this.setState({ triggerEvents });
- }
- else {
- triggerEvents.add(triggerEvent);
- this.setState({ triggerEvents });
- }
- };
- const submitHandler = useCallback(async() => {
- const requestParams = {
- triggerPath,
- notifyToType,
- emailToSend,
- slacChannelToSend,
- triggerEvents,
- };
- try {
- if (globalNotificationId != null) {
- await apiv3Put(`/notification-setting/global-notification/${globalNotificationId}`, requestParams);
- }
- else {
- await apiv3Post('/notification-setting/global-notification', requestParams);
- }
- window.location.href = urljoin(window.location.origin, '/admin/notification#global-notification');
- }
- catch (err) {
- // toastError(err);
- logger.error(err);
- }
- }, []);
- const { isMailerSetup } = props;
- const { t } = useTranslation('admin');
- return (
- <>
- <div className="my-3">
- <a href="/admin/notification#global-notification" className="btn btn-outline-secondary">
- <i className="icon-fw ti-arrow-left" aria-hidden="true"></i>
- {t('notification_settings.back_to_list')}
- </a>
- </div>
- <div className="row">
- <div className="form-box col-md-12">
- <h2 className="border-bottom mb-5">{t('notification_settings.notification_detail')}</h2>
- </div>
- <div className="col-sm-4">
- <h3 htmlFor="triggerPath">{t('notification_settings.trigger_path')}
- {/* eslint-disable-next-line react/no-danger */}
- <small dangerouslySetInnerHTML={{ __html: t('notification_settings.trigger_path_help', '<code>*</code>') }} />
- </h3>
- <div className="form-group">
- <input
- className="form-control"
- type="text"
- name="triggerPath"
- value={triggerPath}
- onChange={(e) => { setTriggerPath(e.target.value) }}
- required
- />
- </div>
- <h3>{t('notification_settings.notify_to')}</h3>
- <div className="form-group form-inline">
- <div className="custom-control custom-radio">
- <input
- className="custom-control-input"
- type="radio"
- id="mail"
- name="notifyToType"
- value="mail"
- checked={notifyToType === 'mail'}
- onChange={() => { setNotifyToType('mail') }}
- />
- <label className="custom-control-label" htmlFor="mail">
- <p className="font-weight-bold">Email</p>
- </label>
- </div>
- <div className="custom-control custom-radio ml-2">
- <input
- className="custom-control-input"
- type="radio"
- id="slack"
- name="notifyToType"
- value="slack"
- checked={notifyToType === 'slack'}
- onChange={() => { this.onChangeNotifyToType('slack') }}
- />
- <label className="custom-control-label" htmlFor="slack">
- <p className="font-weight-bold">Slack</p>
- </label>
- </div>
- </div>
- {notifyToType === 'mail'
- ? (
- <>
- <div className="input-group notify-to-option" id="mail-input">
- <div className="input-group-prepend">
- <span className="input-group-text" id="mail-addon"><i className="ti ti-email" /></span>
- </div>
- <input
- className="form-control"
- type="text"
- aria-describedby="mail-addon"
- name="toEmail"
- placeholder="Email"
- value={emailToSend}
- onChange={(e) => { setEmailToSend(e.target.value) }}
- />
- </div>
- <p className="p-2">
- {/* eslint-disable-next-line react/no-danger */}
- {!isMailerSetup && <span className="form-text text-muted" dangerouslySetInnerHTML={{ __html: t('admin:mailer_setup_required') }} />}
- <b>Hint: </b>
- <a href="https://ifttt.com/create" target="blank">{t('notification_settings.email.ifttt_link')}
- <i className="icon-share-alt" />
- </a>
- </p>
- </>
- )
- : (
- <>
- <div className="input-group notify-to-option" id="slack-input">
- <div className="input-group-prepend">
- <span className="input-group-text" id="slack-channel-addon"><i className="fa fa-hashtag" /></span>
- </div>
- <input
- className="form-control"
- type="text"
- aria-describedby="slack-channel-addon"
- name="notificationGlobal[slackChannels]"
- placeholder="Slack Channel"
- value={slacChannelToSend}
- onChange={(e) => { setSlackChannelToSend(e.target.value) }}
- />
- </div>
- <p className="p-2">
- {/* eslint-disable-next-line react/no-danger */}
- <span dangerouslySetInnerHTML={{ __html: t('notification_settings.channel_desc') }} />
- </p>
- </>
- )}
- </div>
- <div className="offset-1 col-sm-5">
- <div className="form-group">
- <h3>{t('notification_settings.trigger_events')}</h3>
- <div className="my-1">
- <TriggerEventCheckBox
- checkbox="success"
- event="pageCreate"
- checked={triggerEvents.has('pageCreate')}
- onChange={() => onChangeTriggerEvents('pageCreate')}
- >
- <span className="badge badge-pill badge-success">
- <i className="icon-doc mr-1" /> CREATE
- </span>
- </TriggerEventCheckBox>
- </div>
- <div className="my-1">
- <TriggerEventCheckBox
- checkbox="warning"
- event="pageEdit"
- checked={triggerEvents.has('pageEdit')}
- onChange={() => this.onChangeTriggerEvents('pageEdit')}
- >
- <span className="badge badge-pill badge-warning">
- <i className="icon-pencil mr-1" />EDIT
- </span>
- </TriggerEventCheckBox>
- </div>
- <div className="my-1">
- <TriggerEventCheckBox
- checkbox="pink"
- event="pageMove"
- checked={triggerEvents.has('pageMove')}
- onChange={() => this.onChangeTriggerEvents('pageMove')}
- >
- <span className="badge badge-pill badge-pink">
- <i className="icon-action-redo mr-1" />MOVE
- </span>
- </TriggerEventCheckBox>
- </div>
- <div className="my-1">
- <TriggerEventCheckBox
- checkbox="danger"
- event="pageDelete"
- checked={triggerEvents.has('pageDelete')}
- onChange={() => this.onChangeTriggerEvents('pageDelete')}
- >
- <span className="badge badge-pill badge-danger">
- <i className="icon-fire mr-1" />DELETE
- </span>
- </TriggerEventCheckBox>
- </div>
- <div className="my-1">
- <TriggerEventCheckBox
- checkbox="info"
- event="pageLike"
- checked={triggerEvents.has('pageLike')}
- onChange={() => this.onChangeTriggerEvents('pageLike')}
- >
- <span className="badge badge-pill badge-info">
- <i className="fa fa-heart-o mr-1" />LIKE
- </span>
- </TriggerEventCheckBox>
- </div>
- <div className="my-1">
- <TriggerEventCheckBox
- checkbox="secondary"
- event="comment"
- checked={triggerEvents.has('comment')}
- onChange={() => this.onChangeTriggerEvents('comment')}
- >
- <span className="badge badge-pill badge-secondary">
- <i className="icon-bubble mr-1" />POST
- </span>
- </TriggerEventCheckBox>
- </div>
- </div>
- </div>
- </div>
- <AdminUpdateButtonRow
- onClick={submitHandler}
- disabled={retrieveError != null}
- />
- </>
- );
- };
- ManageGlobalNotification.propTypes = {
- isMailerSetup: PropTypes.bool,
- };
- // const ManageGlobalNotificationWrapperFC = (props) => {
- // const { t } = useTranslation();
- // return <ManageGlobalNotification t={t} {...props} />;
- // };
- // const ManageGlobalNotificationWrapper = withUnstatedContainers(ManageGlobalNotificationWrapperFC, [AppContainer]);
- export default ManageGlobalNotification;
|