mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
78 lines
2.0 KiB
JavaScript
78 lines
2.0 KiB
JavaScript
import React from 'react';
|
|
import { Formik } from 'formik';
|
|
import { Intent } from '@blueprintjs/core';
|
|
import { pick, snakeCase } from 'lodash';
|
|
import { useIntl } from 'react-intl';
|
|
import { AppToaster } from 'components';
|
|
|
|
import withDialogActions from 'containers/Dialog/withDialogActions';
|
|
|
|
import { InviteUserFormSchema } from './InviteUserDialog.schema';
|
|
import InviteUserFormContent from './InviteUserFormContent';
|
|
import { useInviteUserFormContext } from './InviteUserFormProvider';
|
|
|
|
import { transformApiErrors } from './utils';
|
|
|
|
import { compose, objectKeysTransform } from 'utils';
|
|
|
|
function InviteUserForm({
|
|
// #withDialogActions
|
|
closeDialog,
|
|
}) {
|
|
const { formatMessage } = useIntl();
|
|
|
|
const {
|
|
dialogName,
|
|
isEditMode,
|
|
inviteUserMutate,
|
|
userId,
|
|
} = useInviteUserFormContext();
|
|
|
|
const initialValues = {
|
|
status: 1,
|
|
...(isEditMode &&
|
|
pick(
|
|
objectKeysTransform(userId, snakeCase),
|
|
Object.keys(InviteUserFormSchema.fields),
|
|
)),
|
|
};
|
|
|
|
const handleSubmit = (values, { setSubmitting, setErrors }) => {
|
|
const form = { ...values };
|
|
|
|
// Handle close the dialog after success response.
|
|
const afterSubmit = () => {
|
|
closeDialog(dialogName);
|
|
};
|
|
const onSuccess = ({ response }) => {
|
|
AppToaster.show({
|
|
message: formatMessage({
|
|
id: 'teammate_invited_to_organization_account',
|
|
}),
|
|
intent: Intent.SUCCESS,
|
|
});
|
|
afterSubmit(response);
|
|
};
|
|
|
|
// Handle the response error.
|
|
const onError = (errors) => {
|
|
const errorsTransformed = transformApiErrors(errors);
|
|
|
|
setErrors({ ...errorsTransformed });
|
|
setSubmitting(false);
|
|
};
|
|
inviteUserMutate(form).then(onSuccess).catch(onError);
|
|
};
|
|
|
|
return (
|
|
<Formik
|
|
validationSchema={InviteUserFormSchema}
|
|
initialValues={initialValues}
|
|
onSubmit={handleSubmit}
|
|
>
|
|
<InviteUserFormContent />
|
|
</Formik>
|
|
);
|
|
}
|
|
export default compose(withDialogActions)(InviteUserForm);
|