Files
bigcapital/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeader.js
2021-09-21 17:13:53 +02:00

110 lines
2.9 KiB
JavaScript

import React from 'react';
import moment from 'moment';
import * as Yup from 'yup';
import { Formik, Form } from 'formik';
import { Tabs, Tab, Button, Intent } from '@blueprintjs/core';
import { FormattedMessage as T } from 'components';
import FinancialStatementHeader from 'containers/FinancialStatements/FinancialStatementHeader';
import GeneralLedgerHeaderGeneralPane from './GeneralLedgerHeaderGeneralPane';
import withGeneralLedger from './withGeneralLedger';
import withGeneralLedgerActions from './withGeneralLedgerActions';
import { compose, transformToForm, saveInvoke } from 'utils';
/**
* Geenral Ledger (GL) - Header.
*/
function GeneralLedgerHeader({
// #ownProps
onSubmitFilter,
pageFilter,
// #withGeneralLedgerActions
toggleGeneralLedgerFilterDrawer: toggleDisplayFilterDrawer,
// #withGeneralLedger
isFilterDrawerOpen,
}) {
// Default values.
const defaultValues = {
fromDate: moment().toDate(),
toDate: moment().toDate(),
};
// Initial values.
const initialValues = transformToForm(
{
...pageFilter,
fromDate: moment(pageFilter.fromDate).toDate(),
toDate: moment(pageFilter.toDate).toDate(),
},
defaultValues,
);
// Validation schema.
const validationSchema = Yup.object().shape({
dateRange: Yup.string().optional(),
fromDate: Yup.date().required(),
toDate: Yup.date().min(Yup.ref('fromDate')).required(),
});
// Handle form submit.
const handleSubmit = (values, { setSubmitting }) => {
saveInvoke(onSubmitFilter, values);
toggleDisplayFilterDrawer();
setSubmitting(false);
};
// Handle cancel button click.
const handleCancelClick = () => {
toggleDisplayFilterDrawer(false);
};
// Handle drawer close action.
const handleDrawerClose = () => {
toggleDisplayFilterDrawer(false);
};
return (
<FinancialStatementHeader
isOpen={isFilterDrawerOpen}
drawerProps={{ onClose: handleDrawerClose }}
>
<Formik
validationSchema={validationSchema}
initialValues={initialValues}
onSubmit={handleSubmit}
>
<Form>
<Tabs animate={true} vertical={true} renderActiveTabPanelOnly={true}>
<Tab
id="general"
title={<T id={'general'} />}
panel={<GeneralLedgerHeaderGeneralPane />}
/>
</Tabs>
<div class="financial-header-drawer__footer">
<Button className={'mr1'} intent={Intent.PRIMARY} type={'submit'}>
<T id={'calculate_report'} />
</Button>
<Button onClick={handleCancelClick} minimal={true}>
<T id={'cancel'} />
</Button>
</div>
</Form>
</Formik>
</FinancialStatementHeader>
);
}
export default compose(
withGeneralLedger(({ generalLedgerFilterDrawer }) => ({
isFilterDrawerOpen: generalLedgerFilterDrawer,
})),
withGeneralLedgerActions,
)(GeneralLedgerHeader);