mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
108 lines
3.0 KiB
TypeScript
108 lines
3.0 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import moment from 'moment';
|
|
import styled from 'styled-components';
|
|
import { Tabs, Tab, Button, Intent } from '@blueprintjs/core';
|
|
import { FormattedMessage as T } from '@/components';
|
|
import { Formik, Form } from 'formik';
|
|
|
|
import FinancialStatementHeader from '../FinancialStatementHeader';
|
|
import CustomersTransactionsHeaderGeneralPanel from './CustomersTransactionsHeaderGeneralPanel';
|
|
|
|
import withCustomersTransactions from './withCustomersTransactions';
|
|
import withCustomersTransactionsActions from './withCustomersTransactionsActions';
|
|
|
|
import { compose, transformToForm } from '@/utils';
|
|
import {
|
|
getCustomersTransactionsDefaultQuery,
|
|
getCustomersTransactionsQuerySchema,
|
|
} from './_utils';
|
|
|
|
/**
|
|
* Customers transactions header.
|
|
*/
|
|
function CustomersTransactionsHeader({
|
|
// #ownProps
|
|
onSubmitFilter,
|
|
pageFilter,
|
|
|
|
//#withCustomersTransactions
|
|
isFilterDrawerOpen,
|
|
|
|
//#withCustomersTransactionsActions
|
|
toggleCustomersTransactionsFilterDrawer: toggleFilterDrawer,
|
|
}) {
|
|
// Default form values.
|
|
const defaultValues = getCustomersTransactionsDefaultQuery();
|
|
|
|
// Initial form values.
|
|
const initialValues = transformToForm(
|
|
{
|
|
...defaultValues,
|
|
...pageFilter,
|
|
fromDate: moment(pageFilter.fromDate).toDate(),
|
|
toDate: moment(pageFilter.toDate).toDate(),
|
|
},
|
|
defaultValues,
|
|
);
|
|
|
|
// Validation schema.
|
|
const validationSchema = getCustomersTransactionsQuerySchema();
|
|
|
|
// Handle form submit.
|
|
const handleSubmit = (values, { setSubmitting }) => {
|
|
onSubmitFilter(values);
|
|
toggleFilterDrawer(false);
|
|
setSubmitting(false);
|
|
};
|
|
// Handle drawer close action.
|
|
const handleDrawerClose = () => {
|
|
toggleFilterDrawer(false);
|
|
};
|
|
|
|
return (
|
|
<CustomerTransactionsDrawerHeader
|
|
isOpen={isFilterDrawerOpen}
|
|
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={<CustomersTransactionsHeaderGeneralPanel />}
|
|
/>
|
|
</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>
|
|
</CustomerTransactionsDrawerHeader>
|
|
);
|
|
}
|
|
|
|
export default compose(
|
|
withCustomersTransactions(({ customersTransactionsDrawerFilter }) => ({
|
|
isFilterDrawerOpen: customersTransactionsDrawerFilter,
|
|
})),
|
|
withCustomersTransactionsActions,
|
|
)(CustomersTransactionsHeader);
|
|
|
|
const CustomerTransactionsDrawerHeader = styled(FinancialStatementHeader)`
|
|
.bp4-drawer {
|
|
max-height: 450px;
|
|
}
|
|
`;
|