* refactor: switch ExternalAPI to Fetch API * fix: add missing auth token in Plex request * fix: send proper URL params * ci: try to fix format checker * ci: ci: try to fix format checker * ci: try to fix format checker * refactor: make tautulli use the ExternalAPI class * refactor: add rate limit to fetch api * refactor: add rate limit to fetch api * refactor: switch server from axios to fetch api * refactor: switch frontend from axios to fetch api * fix: switch from URL objects to strings * fix: use the right search params for ExternalAPI * fix: better log for ExternalAPI errors * feat: add retry to external API requests * fix: try to fix network errors with IPv6 * fix: imageProxy rate limit * revert: remove retry to external API requests * feat: set IPv4 first as an option * fix(jellyfinapi): add missing argument in JellyfinAPI constructor * refactor: clean the rate limit utility
118 lines
3.5 KiB
TypeScript
118 lines
3.5 KiB
TypeScript
import Modal from '@app/components/Common/Modal';
|
|
import useSettings from '@app/hooks/useSettings';
|
|
import defineMessages from '@app/utils/defineMessages';
|
|
import { Transition } from '@headlessui/react';
|
|
import { Field, Formik } from 'formik';
|
|
import { useIntl } from 'react-intl';
|
|
import * as Yup from 'yup';
|
|
|
|
const messages = defineMessages('components.Login', {
|
|
title: 'Add Email',
|
|
description:
|
|
'Since this is your first time logging into {applicationName}, you are required to add a valid email address.',
|
|
email: 'Email address',
|
|
validationEmailRequired: 'You must provide an email',
|
|
validationEmailFormat: 'Invalid email',
|
|
saving: 'Adding…',
|
|
save: 'Add',
|
|
});
|
|
|
|
interface AddEmailModalProps {
|
|
username: string;
|
|
password: string;
|
|
onClose: () => void;
|
|
onSave: () => void;
|
|
}
|
|
|
|
const AddEmailModal: React.FC<AddEmailModalProps> = ({
|
|
onClose,
|
|
username,
|
|
password,
|
|
onSave,
|
|
}) => {
|
|
const intl = useIntl();
|
|
const settings = useSettings();
|
|
|
|
const EmailSettingsSchema = Yup.object().shape({
|
|
email: Yup.string()
|
|
.email(intl.formatMessage(messages.validationEmailFormat))
|
|
.required(intl.formatMessage(messages.validationEmailRequired)),
|
|
});
|
|
|
|
return (
|
|
<Transition
|
|
appear
|
|
show
|
|
enter="transition ease-in-out duration-300 transform opacity-0"
|
|
enterFrom="opacity-0"
|
|
enterTo="opacuty-100"
|
|
leave="transition ease-in-out duration-300 transform opacity-100"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<Formik
|
|
initialValues={{
|
|
email: '',
|
|
}}
|
|
validationSchema={EmailSettingsSchema}
|
|
onSubmit={async (values) => {
|
|
try {
|
|
const res = await fetch('/api/v1/auth/jellyfin', {
|
|
method: 'POST',
|
|
body: JSON.stringify({
|
|
username: username,
|
|
password: password,
|
|
email: values.email,
|
|
}),
|
|
});
|
|
if (!res.ok) throw new Error();
|
|
|
|
onSave();
|
|
} catch (e) {
|
|
// set error here
|
|
}
|
|
}}
|
|
>
|
|
{({ errors, touched, handleSubmit, isSubmitting, isValid }) => {
|
|
return (
|
|
<Modal
|
|
onCancel={onClose}
|
|
okButtonType="primary"
|
|
okText={
|
|
isSubmitting
|
|
? intl.formatMessage(messages.saving)
|
|
: intl.formatMessage(messages.save)
|
|
}
|
|
okDisabled={isSubmitting || !isValid}
|
|
onOk={() => handleSubmit()}
|
|
title={intl.formatMessage(messages.title)}
|
|
>
|
|
{intl.formatMessage(messages.description, {
|
|
applicationName: settings.currentSettings.applicationTitle,
|
|
})}
|
|
<label htmlFor="email" className="text-label">
|
|
{intl.formatMessage(messages.email)}
|
|
</label>
|
|
<div className="mt-1 mb-2 sm:col-span-2 sm:mt-0">
|
|
<div className="flex rounded-md shadow-sm">
|
|
<Field
|
|
id="email"
|
|
name="email"
|
|
type="text"
|
|
placeholder={intl.formatMessage(messages.email)}
|
|
/>
|
|
</div>
|
|
{errors.email && touched.email && (
|
|
<div className="error">{errors.email}</div>
|
|
)}
|
|
</div>
|
|
</Modal>
|
|
);
|
|
}}
|
|
</Formik>
|
|
</Transition>
|
|
);
|
|
};
|
|
|
|
export default AddEmailModal;
|