import axios from 'axios'; import { Field, Form, Formik } from 'formik'; import React 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 Alert from '../../../Common/Alert'; import Button from '../../../Common/Button'; import LoadingSpinner from '../../../Common/LoadingSpinner'; import NotificationTypeSelector from '../../../NotificationTypeSelector'; const messages = defineMessages({ agentEnabled: 'Enable Agent', accessToken: 'Access Token', validationAccessTokenRequired: 'You must provide an access token', pushbulletSettingsSaved: 'Pushbullet notification settings saved successfully!', pushbulletSettingsFailed: 'Pushbullet notification settings failed to save.', testSent: 'Pushbullet test notification sent!', settingUpPushbulletDescription: 'To configure Pushbullet notifications, you will need to create an access token.', }); const NotificationsPushbullet: React.FC = () => { const intl = useIntl(); const { addToast } = useToasts(); const { data, error, revalidate } = useSWR( '/api/v1/settings/notifications/pushbullet' ); const NotificationsPushbulletSchema = Yup.object().shape({ accessToken: Yup.string().when('enabled', { is: true, then: Yup.string() .nullable() .required(intl.formatMessage(messages.validationAccessTokenRequired)), otherwise: Yup.string().nullable(), }), }); if (!data && !error) { return ; } return ( { try { await axios.post('/api/v1/settings/notifications/pushbullet', { enabled: values.enabled, types: values.types, options: { accessToken: values.accessToken, }, }); addToast(intl.formatMessage(messages.pushbulletSettingsSaved), { appearance: 'success', autoDismiss: true, }); } catch (e) { addToast(intl.formatMessage(messages.pushbulletSettingsFailed), { appearance: 'error', autoDismiss: true, }); } finally { revalidate(); } }} > {({ errors, touched, isSubmitting, values, isValid, setFieldValue }) => { const testSettings = async () => { await axios.post('/api/v1/settings/notifications/pushbullet/test', { enabled: true, types: values.types, options: { accessToken: values.accessToken, }, }); addToast(intl.formatMessage(messages.testSent), { appearance: 'info', autoDismiss: true, }); }; return ( <> {msg} ); }, } )} type="info" />
{errors.accessToken && touched.accessToken && (
{errors.accessToken}
)}
setFieldValue('types', newTypes)} />
); }}
); }; export default NotificationsPushbullet;