mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
81 lines
2.2 KiB
TypeScript
81 lines
2.2 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import intl from 'react-intl-universal';
|
|
import moment from 'moment';
|
|
import { Intent } from '@blueprintjs/core';
|
|
import { Formik } from 'formik';
|
|
|
|
import '@/style/pages/TransactionsLocking/TransactionsLockingDialog.scss';
|
|
|
|
import { AppToaster } from '@/components';
|
|
import { CreateUnLockingPartialTransactionsFormSchema } from './UnlockingPartialTransactionsForm.schema';
|
|
|
|
import { useUnlockingPartialTransactionsContext } from './UnlockingPartialTransactionsFormProvider';
|
|
import UnlockingPartialTransactionsFormContent from './UnlockingPartialTransactionsFormContent';
|
|
|
|
import withDialogActions from '@/containers/Dialog/withDialogActions';
|
|
import { compose } from '@/utils';
|
|
|
|
const defaultInitialValues = {
|
|
module: '',
|
|
unlock_from_date: moment(new Date()).format('YYYY-MM-DD'),
|
|
unlock_to_date: moment(new Date()).format('YYYY-MM-DD'),
|
|
reason: '',
|
|
};
|
|
|
|
/**
|
|
* Partial Unlocking transactions form.
|
|
*/
|
|
function UnlockingPartialTransactionsForm({
|
|
// #withDialogActions
|
|
closeDialog,
|
|
}) {
|
|
const { dialogName, moduleName, createUnlockingPartialTransactionsMutate } =
|
|
useUnlockingPartialTransactionsContext();
|
|
|
|
// Initial form values.
|
|
const initialValues = {
|
|
...defaultInitialValues,
|
|
module: moduleName,
|
|
};
|
|
|
|
// Handles the form submit.
|
|
const handleFormSubmit = (values, { setSubmitting, setErrors }) => {
|
|
setSubmitting(true);
|
|
|
|
// Handle request response success.
|
|
const onSuccess = (response) => {
|
|
AppToaster.show({
|
|
message: intl.get(
|
|
'unlocking_partial_transactions.dialog.success_message',
|
|
),
|
|
intent: Intent.SUCCESS,
|
|
});
|
|
closeDialog(dialogName);
|
|
};
|
|
// Handle request response errors.
|
|
const onError = ({
|
|
response: {
|
|
data: { errors },
|
|
},
|
|
}) => {
|
|
setSubmitting(false);
|
|
};
|
|
|
|
createUnlockingPartialTransactionsMutate(values)
|
|
.then(onSuccess)
|
|
.catch(onError);
|
|
};
|
|
|
|
return (
|
|
<Formik
|
|
validationSchema={CreateUnLockingPartialTransactionsFormSchema}
|
|
initialValues={initialValues}
|
|
onSubmit={handleFormSubmit}
|
|
component={UnlockingPartialTransactionsFormContent}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default compose(withDialogActions)(UnlockingPartialTransactionsForm);
|