import Button from '@app/components/Common/Button'; import LoadingSpinner from '@app/components/Common/LoadingSpinner'; import NotificationTypeSelector from '@app/components/NotificationTypeSelector'; import globalMessages from '@app/i18n/globalMessages'; import { ArrowDownOnSquareIcon, BeakerIcon } from '@heroicons/react/24/outline'; import axios from 'axios'; import { Field, Form, Formik } from 'formik'; import { useState } from 'react'; import { defineMessages, useIntl } from 'react-intl'; import { useToasts } from 'react-toast-notifications'; import useSWR from 'swr'; import * as Yup from 'yup'; const messages = defineMessages({ agentenabled: 'Enable Agent', webhookUrl: 'Webhook URL', webhookUrlTip: 'Create an Incoming Webhook integration', slacksettingssaved: 'Slack notification settings saved successfully!', slacksettingsfailed: 'Slack notification settings failed to save.', toastSlackTestSending: 'Sending Slack test notification…', toastSlackTestSuccess: 'Slack test notification sent!', toastSlackTestFailed: 'Slack test notification failed to send.', validationWebhookUrl: 'You must provide a valid URL', validationTypes: 'You must select at least one notification type', }); const NotificationsSlack = () => { const intl = useIntl(); const { addToast, removeToast } = useToasts(); const [isTesting, setIsTesting] = useState(false); const { data, error, mutate: revalidate, } = useSWR('/api/v1/settings/notifications/slack'); const NotificationsSlackSchema = Yup.object().shape({ webhookUrl: Yup.string() .when('enabled', { is: true, then: Yup.string() .nullable() .required(intl.formatMessage(messages.validationWebhookUrl)), otherwise: Yup.string().nullable(), }) .url(intl.formatMessage(messages.validationWebhookUrl)), }); if (!data && !error) { return ; } return ( { try { await axios.post('/api/v1/settings/notifications/slack', { enabled: values.enabled, types: values.types, options: { webhookUrl: values.webhookUrl, }, }); addToast(intl.formatMessage(messages.slacksettingssaved), { appearance: 'success', autoDismiss: true, }); } catch (e) { addToast(intl.formatMessage(messages.slacksettingsfailed), { 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.toastSlackTestSending), { autoDismiss: false, appearance: 'info', }, (id) => { toastId = id; } ); await axios.post('/api/v1/settings/notifications/slack/test', { enabled: true, types: values.types, options: { webhookUrl: values.webhookUrl, }, }); if (toastId) { removeToast(toastId); } addToast(intl.formatMessage(messages.toastSlackTestSuccess), { autoDismiss: true, appearance: 'success', }); } catch (e) { if (toastId) { removeToast(toastId); } addToast(intl.formatMessage(messages.toastSlackTestFailed), { autoDismiss: true, appearance: 'error', }); } finally { setIsTesting(false); } }; return (
{errors.webhookUrl && touched.webhookUrl && typeof errors.webhookUrl === 'string' && (
{errors.webhookUrl}
)}
{ setFieldValue('types', newTypes); setFieldTouched('types'); if (newTypes) { setFieldValue('enabled', true); } }} error={ values.enabled && !values.types && touched.types ? intl.formatMessage(messages.validationTypes) : undefined } />
); }}
); }; export default NotificationsSlack;