mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 02:36:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			77 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import React from 'react';
 | |
| import { Actions, State, useStoreActions, useStoreState } from 'easy-peasy';
 | |
| import { Form, Formik, FormikHelpers } from 'formik';
 | |
| import * as Yup from 'yup';
 | |
| import SpinnerOverlay from '@/components/elements/SpinnerOverlay';
 | |
| import Field from '@/components/elements/Field';
 | |
| import { httpErrorToHuman } from '@/api/http';
 | |
| import { ApplicationStore } from '@/state';
 | |
| import tw from 'twin.macro';
 | |
| import { Button } from '@/components/elements/button/index';
 | |
| 
 | |
| interface Values {
 | |
|     email: string;
 | |
|     password: string;
 | |
| }
 | |
| 
 | |
| const schema = Yup.object().shape({
 | |
|     email: Yup.string().email().required(),
 | |
|     password: Yup.string().required('You must provide your current account password.'),
 | |
| });
 | |
| 
 | |
| export default () => {
 | |
|     const user = useStoreState((state: State<ApplicationStore>) => state.user.data);
 | |
|     const updateEmail = useStoreActions((state: Actions<ApplicationStore>) => state.user.updateUserEmail);
 | |
| 
 | |
|     const { clearFlashes, addFlash } = useStoreActions((actions: Actions<ApplicationStore>) => actions.flashes);
 | |
| 
 | |
|     const submit = (values: Values, { resetForm, setSubmitting }: FormikHelpers<Values>) => {
 | |
|         clearFlashes('account:email');
 | |
| 
 | |
|         updateEmail({ ...values })
 | |
|             .then(() =>
 | |
|                 addFlash({
 | |
|                     type: 'success',
 | |
|                     key: 'account:email',
 | |
|                     message: 'Your primary email has been updated.',
 | |
|                 })
 | |
|             )
 | |
|             .catch((error) =>
 | |
|                 addFlash({
 | |
|                     type: 'error',
 | |
|                     key: 'account:email',
 | |
|                     title: 'Error',
 | |
|                     message: httpErrorToHuman(error),
 | |
|                 })
 | |
|             )
 | |
|             .then(() => {
 | |
|                 resetForm();
 | |
|                 setSubmitting(false);
 | |
|             });
 | |
|     };
 | |
| 
 | |
|     return (
 | |
|         <Formik onSubmit={submit} validationSchema={schema} initialValues={{ email: user!.email, password: '' }}>
 | |
|             {({ isSubmitting, isValid }) => (
 | |
|                 <React.Fragment>
 | |
|                     <SpinnerOverlay size={'large'} visible={isSubmitting} />
 | |
|                     <Form css={tw`m-0`}>
 | |
|                         <Field id={'current_email'} type={'email'} name={'email'} label={'Email'} />
 | |
|                         <div css={tw`mt-6`}>
 | |
|                             <Field
 | |
|                                 id={'confirm_password'}
 | |
|                                 type={'password'}
 | |
|                                 name={'password'}
 | |
|                                 label={'Confirm Password'}
 | |
|                             />
 | |
|                         </div>
 | |
|                         <div css={tw`mt-6`}>
 | |
|                             <Button disabled={isSubmitting || !isValid}>Update Email</Button>
 | |
|                         </div>
 | |
|                     </Form>
 | |
|                 </React.Fragment>
 | |
|             )}
 | |
|         </Formik>
 | |
|     );
 | |
| };
 | 
