mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-14 11:50:31 +00:00
124 lines
3.7 KiB
TypeScript
124 lines
3.7 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import moment from 'moment';
|
|
import styled from 'styled-components';
|
|
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 InventoryValuationHeaderGeneralPanel from './InventoryValuationHeaderGeneralPanel';
|
|
import InventoryValuationHeaderDimensionsPanel from './InventoryValuationHeaderDimensionsPanel';
|
|
import withInventoryValuation from './withInventoryValuation';
|
|
import withInventoryValuationActions from './withInventoryValuationActions';
|
|
|
|
import { compose, transformToForm } from '@/utils';
|
|
import { useFeatureCan } from '@/hooks/state';
|
|
import { Features } from '@/constants';
|
|
import {
|
|
getInventoryValuationQuery,
|
|
getInventoryValuationQuerySchema,
|
|
} from './utils';
|
|
|
|
/**
|
|
* inventory valuation header.
|
|
*/
|
|
function InventoryValuationHeader({
|
|
// #ownProps
|
|
pageFilter,
|
|
onSubmitFilter,
|
|
|
|
// #withInventoryValuation
|
|
isFilterDrawerOpen,
|
|
|
|
// #withInventoryValuationActions
|
|
toggleInventoryValuationFilterDrawer,
|
|
}) {
|
|
// Form validation schema.
|
|
const validationSchema = getInventoryValuationQuerySchema();
|
|
const defaultQuery = getInventoryValuationQuery();
|
|
|
|
// Initial values.
|
|
const initialValues = transformToForm(
|
|
{
|
|
...defaultQuery,
|
|
...pageFilter,
|
|
asDate: moment(pageFilter.asDate).toDate(),
|
|
},
|
|
defaultQuery,
|
|
);
|
|
|
|
// Handle the form of header submit.
|
|
const handleSubmit = (values, { setSubmitting }) => {
|
|
onSubmitFilter(values);
|
|
toggleInventoryValuationFilterDrawer(false);
|
|
setSubmitting(false);
|
|
};
|
|
// Handle drawer close action.
|
|
const handleDrawerClose = () => {
|
|
toggleInventoryValuationFilterDrawer(false);
|
|
};
|
|
// Handle cancel button click.
|
|
const handleCancelClick = () => {
|
|
toggleInventoryValuationFilterDrawer(false);
|
|
};
|
|
// Detarmines the given feature whether is enabled.
|
|
const { featureCan } = useFeatureCan();
|
|
|
|
// Detarmine if these feature are enabled.
|
|
const isBranchesFeatureCan = featureCan(Features.Branches);
|
|
const isWarehousesFeatureCan = featureCan(Features.Warehouses);
|
|
|
|
return (
|
|
<InventoryValuationDrawerHeader
|
|
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={<InventoryValuationHeaderGeneralPanel />}
|
|
/>
|
|
{(isBranchesFeatureCan || isWarehousesFeatureCan) && (
|
|
<Tab
|
|
id="dimensions"
|
|
title={<T id={'dimensions'} />}
|
|
panel={<InventoryValuationHeaderDimensionsPanel />}
|
|
/>
|
|
)}
|
|
</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>
|
|
</InventoryValuationDrawerHeader>
|
|
);
|
|
}
|
|
|
|
export default compose(
|
|
withInventoryValuation(({ inventoryValuationDrawerFilter }) => ({
|
|
isFilterDrawerOpen: inventoryValuationDrawerFilter,
|
|
})),
|
|
withInventoryValuationActions,
|
|
)(InventoryValuationHeader);
|
|
|
|
const InventoryValuationDrawerHeader = styled(FinancialStatementHeader)`
|
|
.bp4-drawer {
|
|
max-height: 450px;
|
|
}
|
|
`;
|