mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
106 lines
2.9 KiB
JavaScript
106 lines
2.9 KiB
JavaScript
import React from 'react';
|
|
import * as Yup from 'yup';
|
|
import moment from 'moment';
|
|
import { FormattedMessage as T } from 'components';
|
|
import intl from 'react-intl-universal';
|
|
import { Formik, Form } from 'formik';
|
|
import { Tabs, Tab, Button, Intent } from '@blueprintjs/core';
|
|
|
|
import FinancialStatementHeader from 'containers/FinancialStatements/FinancialStatementHeader';
|
|
import TrialBalanceSheetHeaderGeneralPanel from './TrialBalanceSheetHeaderGeneralPanel';
|
|
|
|
import withTrialBalance from './withTrialBalance';
|
|
import withTrialBalanceActions from './withTrialBalanceActions';
|
|
|
|
import { compose, transformToForm } from 'utils';
|
|
|
|
/**
|
|
* Trial balance sheet header.
|
|
*/
|
|
function TrialBalanceSheetHeader({
|
|
// #ownProps
|
|
pageFilter,
|
|
onSubmitFilter,
|
|
|
|
// #withTrialBalance
|
|
trialBalanceDrawerFilter,
|
|
|
|
// #withTrialBalanceActions
|
|
toggleTrialBalanceFilterDrawer: toggleFilterDrawer,
|
|
}) {
|
|
// Form validation schema.
|
|
const validationSchema = Yup.object().shape({
|
|
fromDate: Yup.date().required().label(intl.get('from_date')),
|
|
toDate: Yup.date()
|
|
.min(Yup.ref('fromDate'))
|
|
.required()
|
|
.label(intl.get('to_date')),
|
|
});
|
|
|
|
// 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,
|
|
);
|
|
// Handle form submit.
|
|
const handleSubmit = (values, { setSubmitting }) => {
|
|
onSubmitFilter(values);
|
|
setSubmitting(false);
|
|
toggleFilterDrawer(false);
|
|
};
|
|
// Handle drawer close action.
|
|
const handleDrawerClose = () => { toggleFilterDrawer(false); };
|
|
|
|
// Handle cancel button click.
|
|
const handleCancelClick = () => { toggleFilterDrawer(false); };
|
|
|
|
return (
|
|
<FinancialStatementHeader
|
|
isOpen={trialBalanceDrawerFilter}
|
|
drawerProps={{ onClose: handleDrawerClose }}
|
|
>
|
|
<Formik
|
|
initialValues={initialValues}
|
|
validationSchema={validationSchema}
|
|
onSubmit={handleSubmit}
|
|
>
|
|
<Form>
|
|
<Tabs animate={true} vertical={true} renderActiveTabPanelOnly={true}>
|
|
<Tab
|
|
id="general"
|
|
title={<T id={'general'} />}
|
|
panel={<TrialBalanceSheetHeaderGeneralPanel />}
|
|
/>
|
|
</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(
|
|
withTrialBalance(({ trialBalanceDrawerFilter }) => ({
|
|
trialBalanceDrawerFilter,
|
|
})),
|
|
withTrialBalanceActions,
|
|
)(TrialBalanceSheetHeader);
|