mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
90 lines
2.3 KiB
TypeScript
90 lines
2.3 KiB
TypeScript
// @ts-nocheck
|
|
import React, { useMemo } from 'react';
|
|
import intl from 'react-intl-universal';
|
|
import { Formik } from 'formik';
|
|
import { Link } from 'react-router-dom';
|
|
import { Intent } from '@blueprintjs/core';
|
|
|
|
import { AppToaster, FormattedMessage as T } from '@/components';
|
|
import AuthInsider from '@/containers/Authentication/AuthInsider';
|
|
import { useAuthLogin, useAuthRegister } from '@/hooks/query/authentication';
|
|
|
|
import RegisterForm from './RegisterForm';
|
|
import { RegisterSchema, transformRegisterErrorsToForm } from './utils';
|
|
|
|
/**
|
|
* Register form.
|
|
*/
|
|
export default function RegisterUserForm() {
|
|
const { mutateAsync: authLoginMutate } = useAuthLogin();
|
|
const { mutateAsync: authRegisterMutate } = useAuthRegister();
|
|
|
|
const initialValues = useMemo(
|
|
() => ({
|
|
first_name: '',
|
|
last_name: '',
|
|
email: '',
|
|
phone_number: '',
|
|
password: '',
|
|
country: 'LY',
|
|
}),
|
|
[],
|
|
);
|
|
|
|
const handleSubmit = (values, { setSubmitting, setErrors }) => {
|
|
authRegisterMutate(values)
|
|
.then((response) => {
|
|
authLoginMutate({
|
|
crediential: values.email,
|
|
password: values.password,
|
|
}).catch(
|
|
({
|
|
response: {
|
|
data: { errors },
|
|
},
|
|
}) => {
|
|
AppToaster.show({
|
|
message: intl.get('something_wentwrong'),
|
|
intent: Intent.SUCCESS,
|
|
});
|
|
},
|
|
);
|
|
})
|
|
.catch(
|
|
({
|
|
response: {
|
|
data: { errors },
|
|
},
|
|
}) => {
|
|
const formErrors = transformRegisterErrorsToForm(errors);
|
|
|
|
setErrors(formErrors);
|
|
setSubmitting(false);
|
|
},
|
|
);
|
|
};
|
|
|
|
return (
|
|
<AuthInsider>
|
|
<div className={'register-form'}>
|
|
<div className={'authentication-page__label-section'}>
|
|
<h3>
|
|
<T id={'register_a_new_organization'} />
|
|
</h3>
|
|
<T id={'you_have_a_bigcapital_account'} />
|
|
<Link to="/auth/login">
|
|
<T id={'login'} />
|
|
</Link>
|
|
</div>
|
|
|
|
<Formik
|
|
initialValues={initialValues}
|
|
validationSchema={RegisterSchema}
|
|
onSubmit={handleSubmit}
|
|
component={RegisterForm}
|
|
/>
|
|
</div>
|
|
</AuthInsider>
|
|
);
|
|
}
|