import { BeakerIcon, SaveIcon } from '@heroicons/react/outline'; import axios from 'axios'; import { Field, Form, Formik } from 'formik'; import React, { useState } from 'react'; import { defineMessages, useIntl } from 'react-intl'; import { useToasts } from 'react-toast-notifications'; import useSWR from 'swr'; import * as Yup from 'yup'; import globalMessages from '../../../../i18n/globalMessages'; import Button from '../../../Common/Button'; import LoadingSpinner from '../../../Common/LoadingSpinner'; import NotificationTypeSelector from '../../../NotificationTypeSelector'; const messages = defineMessages({ agentenabled: 'Enable Agent', webhookUrl: 'Webhook URL', webhookUrlTip: 'Your user- or device-based notification webhook URL', validationWebhookUrl: 'You must provide a valid URL', profileName: 'Profile Name', profileNameTip: 'Only required if not using the default profile', settingsSaved: 'LunaSea notification settings saved successfully!', settingsFailed: 'LunaSea notification settings failed to save.', toastLunaSeaTestSending: 'Sending LunaSea test notification…', toastLunaSeaTestSuccess: 'LunaSea test notification sent!', toastLunaSeaTestFailed: 'LunaSea test notification failed to send.', validationTypes: 'You must select at least one notification type', }); const NotificationsLunaSea: React.FC = () => { const intl = useIntl(); const { addToast, removeToast } = useToasts(); const [isTesting, setIsTesting] = useState(false); const { data, error, mutate: revalidate, } = useSWR('/api/v1/settings/notifications/lunasea'); const NotificationsLunaSeaSchema = 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/lunasea', { enabled: values.enabled, types: values.types, options: { webhookUrl: values.webhookUrl, profileName: values.profileName, }, }); addToast(intl.formatMessage(messages.settingsSaved), { appearance: 'success', autoDismiss: true, }); } catch (e) { addToast(intl.formatMessage(messages.settingsFailed), { 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.toastLunaSeaTestSending), { autoDismiss: false, appearance: 'info', }, (id) => { toastId = id; } ); await axios.post('/api/v1/settings/notifications/lunasea/test', { enabled: true, types: values.types, options: { webhookUrl: values.webhookUrl, profileName: values.profileName, }, }); if (toastId) { removeToast(toastId); } addToast(intl.formatMessage(messages.toastLunaSeaTestSuccess), { autoDismiss: true, appearance: 'success', }); } catch (e) { if (toastId) { removeToast(toastId); } addToast(intl.formatMessage(messages.toastLunaSeaTestFailed), { autoDismiss: true, appearance: 'error', }); } finally { setIsTesting(false); } }; return (
{errors.webhookUrl && touched.webhookUrl && (
{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 NotificationsLunaSea;