mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
107 lines
2.9 KiB
TypeScript
107 lines
2.9 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
|
|
import styled from 'styled-components';
|
|
import moment from 'moment';
|
|
import { Formik, Form } from 'formik';
|
|
import { Tabs, Tab, Button, Intent } from '@blueprintjs/core';
|
|
import { FormattedMessage as T } from '@/components';
|
|
|
|
import FinancialStatementHeader from '../FinancialStatementHeader';
|
|
import withCustomersBalanceSummary from './withCustomersBalanceSummary';
|
|
import withCustomersBalanceSummaryActions from './withCustomersBalanceSummaryActions';
|
|
import CustomersBalanceSummaryGeneralPanel from './CustomersBalanceSummaryGeneralPanel';
|
|
|
|
import { compose, transformToForm } from '@/utils';
|
|
import { getCustomersBalanceQuerySchema } from './utils';
|
|
|
|
/**
|
|
* Customers balance summary.
|
|
*/
|
|
function CustomersBalanceSummaryHeader({
|
|
// #ownProps
|
|
onSubmitFilter,
|
|
pageFilter,
|
|
|
|
// #withCustomersBalanceSummary
|
|
customersBalanceDrawerFilter,
|
|
|
|
// #withCustomersBalanceSummaryActions
|
|
toggleCustomerBalanceFilterDrawer,
|
|
}) {
|
|
// validation schema.
|
|
const validationSchema = getCustomersBalanceQuerySchema();
|
|
|
|
// Default form values.
|
|
const defaultValues = {
|
|
...pageFilter,
|
|
asDate: moment().toDate(),
|
|
customersIds: [],
|
|
};
|
|
|
|
// Filter form initial values.
|
|
const initialValues = transformToForm(
|
|
{
|
|
...defaultValues,
|
|
...pageFilter,
|
|
asDate: moment(pageFilter.asDate).toDate(),
|
|
},
|
|
defaultValues,
|
|
);
|
|
// handle form submit.
|
|
const handleSubmit = (values, { setSubmitting }) => {
|
|
onSubmitFilter(values);
|
|
toggleCustomerBalanceFilterDrawer(false);
|
|
setSubmitting(false);
|
|
};
|
|
// handle close drawer.
|
|
const handleDrawerClose = () => {
|
|
toggleCustomerBalanceFilterDrawer(false);
|
|
};
|
|
|
|
return (
|
|
<CustomerBalanceDrawerHeader
|
|
isOpen={customersBalanceDrawerFilter}
|
|
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={<CustomersBalanceSummaryGeneralPanel />}
|
|
/>
|
|
</Tabs>
|
|
|
|
<div class="financial-header-drawer__footer">
|
|
<Button className={'mr1'} intent={Intent.PRIMARY} type={'submit'}>
|
|
<T id={'calculate_report'} />
|
|
</Button>
|
|
<Button onClick={handleDrawerClose} minimal={true}>
|
|
<T id={'cancel'} />
|
|
</Button>
|
|
</div>
|
|
</Form>
|
|
</Formik>
|
|
</CustomerBalanceDrawerHeader>
|
|
);
|
|
}
|
|
|
|
export default compose(
|
|
withCustomersBalanceSummary(({ customersBalanceDrawerFilter }) => ({
|
|
customersBalanceDrawerFilter,
|
|
})),
|
|
withCustomersBalanceSummaryActions,
|
|
)(CustomersBalanceSummaryHeader);
|
|
|
|
const CustomerBalanceDrawerHeader = styled(FinancialStatementHeader)`
|
|
.bp4-drawer {
|
|
max-height: 450px;
|
|
}
|
|
`;
|