import Button from '@app/components/Common/Button'; import LoadingSpinner from '@app/components/Common/LoadingSpinner'; import NotificationTypeSelector from '@app/components/NotificationTypeSelector'; import useSettings from '@app/hooks/useSettings'; import globalMessages from '@app/i18n/globalMessages'; import defineMessages from '@app/utils/defineMessages'; import { ArrowDownOnSquareIcon, BeakerIcon } from '@heroicons/react/24/outline'; import { Field, Form, Formik } from 'formik'; import { useState } from 'react'; import { useIntl } from 'react-intl'; import { useToasts } from 'react-toast-notifications'; import useSWR from 'swr'; import * as Yup from 'yup'; const messages = defineMessages('components.Settings.Notifications', { agentenabled: 'Enable Agent', botUsername: 'Bot Username', botAvatarUrl: 'Bot Avatar URL', webhookUrl: 'Webhook URL', webhookUrlTip: 'Create a webhook integration in your server', webhookRoleId: 'Notification Role ID', webhookRoleIdTip: 'The role ID to mention in the webhook message. Leave empty to disable mentions', discordsettingssaved: 'Discord notification settings saved successfully!', discordsettingsfailed: 'Discord notification settings failed to save.', toastDiscordTestSending: 'Sending Discord test notification…', toastDiscordTestSuccess: 'Discord test notification sent!', toastDiscordTestFailed: 'Discord test notification failed to send.', validationUrl: 'You must provide a valid URL', validationWebhookRoleId: 'You must provide a valid Discord Role ID', validationTypes: 'You must select at least one notification type', enableMentions: 'Enable Mentions', }); const NotificationsDiscord = () => { const intl = useIntl(); const settings = useSettings(); const { addToast, removeToast } = useToasts(); const [isTesting, setIsTesting] = useState(false); const { data, error, mutate: revalidate, } = useSWR('/api/v1/settings/notifications/discord'); const NotificationsDiscordSchema = Yup.object().shape({ botAvatarUrl: Yup.string() .nullable() .url(intl.formatMessage(messages.validationUrl)), webhookUrl: Yup.string() .when('enabled', { is: true, then: Yup.string() .nullable() .required(intl.formatMessage(messages.validationUrl)), otherwise: Yup.string().nullable(), }) .url(intl.formatMessage(messages.validationUrl)), webhookRoleId: Yup.string() .nullable() .matches( /^\d{17,19}$/, intl.formatMessage(messages.validationWebhookRoleId) ), }); if (!data && !error) { return ; } return ( { try { const res = await fetch('/api/v1/settings/notifications/discord', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ enabled: values.enabled, types: values.types, options: { botUsername: values.botUsername, botAvatarUrl: values.botAvatarUrl, webhookUrl: values.webhookUrl, webhookRoleId: values.webhookRoleId, enableMentions: values.enableMentions, }, }), }); if (!res.ok) throw new Error(); addToast(intl.formatMessage(messages.discordsettingssaved), { appearance: 'success', autoDismiss: true, }); } catch (e) { addToast(intl.formatMessage(messages.discordsettingsfailed), { appearance: 'error', autoDismiss: true, }); } finally { revalidate(); } }} > {({ errors, touched, isSubmitting, values, isValid, setFieldValue, setFieldTouched, }) => { const testSettings = async () => { setIsTesting(true); let toastId: string | undefined; try { addToast( intl.formatMessage(messages.toastDiscordTestSending), { autoDismiss: false, appearance: 'info', }, (id) => { toastId = id; } ); const res = await fetch( '/api/v1/settings/notifications/discord/test', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ enabled: true, types: values.types, options: { botUsername: values.botUsername, botAvatarUrl: values.botAvatarUrl, webhookUrl: values.webhookUrl, webhookRoleId: values.webhookRoleId, enableMentions: values.enableMentions, }, }), } ); if (!res.ok) throw new Error(); if (toastId) { removeToast(toastId); } addToast(intl.formatMessage(messages.toastDiscordTestSuccess), { autoDismiss: true, appearance: 'success', }); } catch (e) { if (toastId) { removeToast(toastId); } addToast(intl.formatMessage(messages.toastDiscordTestFailed), { autoDismiss: true, appearance: 'error', }); } finally { setIsTesting(false); } }; return (
{errors.webhookUrl && touched.webhookUrl && typeof errors.webhookUrl === 'string' && (
{errors.webhookUrl}
)}
{errors.botUsername && touched.botUsername && typeof errors.botUsername === 'string' && (
{errors.botUsername}
)}
{errors.botAvatarUrl && touched.botAvatarUrl && typeof errors.botAvatarUrl === 'string' && (
{errors.botAvatarUrl}
)}
{errors.webhookRoleId && touched.webhookRoleId && typeof errors.webhookRoleId === 'string' && (
{errors.webhookRoleId}
)}
{ setFieldValue('types', newTypes); setFieldTouched('types'); if (newTypes) { setFieldValue('enabled', true); } }} error={ values.enabled && !values.types && touched.types ? intl.formatMessage(messages.validationTypes) : undefined } />
); }}
); }; export default NotificationsDiscord;