mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-13 03:10:31 +00:00
90 lines
2.3 KiB
JavaScript
90 lines
2.3 KiB
JavaScript
import React from 'react';
|
|
import moment from 'moment';
|
|
import { Intent } from '@blueprintjs/core';
|
|
import { Formik } from 'formik';
|
|
import intl from 'react-intl-universal';
|
|
|
|
import '../../../style/pages/TransactionsLocking/TransactionsLockingDialog.scss';
|
|
|
|
import { AppToaster } from 'components';
|
|
import { CreateLockingTransactionsFormSchema } from './LockingTransactionsForm.schema';
|
|
|
|
import { useLockingTransactionsContext } from './LockingTransactionsFormProvider';
|
|
import LockingTransactionsFormContent from './LockingTransactionsFormContent';
|
|
|
|
import withDialogActions from 'containers/Dialog/withDialogActions';
|
|
import { compose, transformToForm } from 'utils';
|
|
|
|
const defaultInitialValues = {
|
|
module: '',
|
|
lock_to_date: moment(new Date()).format('YYYY-MM-DD'),
|
|
reason: '',
|
|
};
|
|
|
|
/**
|
|
* Locking Transactions Form.
|
|
*/
|
|
function LockingTransactionsForm({
|
|
// #withDialogActions
|
|
closeDialog,
|
|
}) {
|
|
const {
|
|
dialogName,
|
|
moduleName,
|
|
transactionLocking,
|
|
isEnabled,
|
|
createLockingTransactionMutate,
|
|
} = useLockingTransactionsContext();
|
|
|
|
// Initial form values.
|
|
const initialValues = React.useMemo(
|
|
() => ({
|
|
...(isEnabled
|
|
? {
|
|
...transformToForm(transactionLocking, defaultInitialValues),
|
|
module: moduleName,
|
|
}
|
|
: {
|
|
...defaultInitialValues,
|
|
module: moduleName,
|
|
}),
|
|
}),
|
|
[isEnabled],
|
|
);
|
|
|
|
// Handles the form submit.
|
|
const handleFormSubmit = (values, { setSubmitting, setErrors }) => {
|
|
setSubmitting(true);
|
|
|
|
// Handle request response success.
|
|
const onSuccess = (response) => {
|
|
AppToaster.show({
|
|
message: intl.get('locking_transactions.dialog.success_message'),
|
|
intent: Intent.SUCCESS,
|
|
});
|
|
closeDialog(dialogName);
|
|
};
|
|
|
|
// Handle request response errors.
|
|
const onError = ({
|
|
response: {
|
|
data: { errors },
|
|
},
|
|
}) => {
|
|
setSubmitting(false);
|
|
};
|
|
|
|
createLockingTransactionMutate(values).then(onSuccess).catch(onError);
|
|
};
|
|
|
|
return (
|
|
<Formik
|
|
validationSchema={CreateLockingTransactionsFormSchema}
|
|
initialValues={initialValues}
|
|
onSubmit={handleFormSubmit}
|
|
component={LockingTransactionsFormContent}
|
|
/>
|
|
);
|
|
}
|
|
export default compose(withDialogActions)(LockingTransactionsForm);
|