Files
bigcapital/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuation.js

87 lines
2.4 KiB
JavaScript

import React, { useEffect, useState, useCallback } from 'react';
import moment from 'moment';
import 'style/pages/FinancialStatements/SalesAndPurchasesSheet.scss';
import { InventoryValuationProvider } from './InventoryValuationProvider';
import InventoryValuationActionsBar from './InventoryValuationActionsBar';
import InventoryValuationHeader from './InventoryValuationHeader';
import InventoryValuationTable from './InventoryValuationTable';
import DashboardPageContent from 'components/Dashboard/DashboardPageContent';
import { InventoryValuationLoadingBar } from './components';
import withInventoryValuationActions from './withInventoryValuationActions';
import withSettings from 'containers/Settings/withSettings';
import { compose } from 'utils';
/**
* Inventory valuation.
*/
function InventoryValuation({
// #withPreferences
organizationName,
// #withInventoryValuationActions
toggleInventoryValuationFilterDrawer,
}) {
const [filter, setFilter] = useState({
asDate: moment().endOf('day').format('YYYY-MM-DD'),
});
// Handle filter form submit.
const handleFilterSubmit = useCallback((filter) => {
const _filter = {
...filter,
asDate: moment(filter.asDate).format('YYYY-MM-DD'),
};
setFilter(_filter);
}, []);
// Handle number format form submit.
const handleNumberFormatSubmit = (numberFormat) => {
setFilter({
...filter,
numberFormat,
});
};
// Hide the filter drawer once the page unmount.
useEffect(
() => () => {
toggleInventoryValuationFilterDrawer(false);
},
[toggleInventoryValuationFilterDrawer],
);
return (
<InventoryValuationProvider query={filter}>
<InventoryValuationActionsBar
numberFormat={filter.numberFormat}
onNumberFormatSubmit={handleNumberFormatSubmit}
/>
<InventoryValuationLoadingBar />
<DashboardPageContent>
<div class="financial-statement">
<InventoryValuationHeader
pageFilter={filter}
onSubmitFilter={handleFilterSubmit}
/>
<div class="financial-statement__body">
<InventoryValuationTable companyName={organizationName} />
</div>
</div>
</DashboardPageContent>
</InventoryValuationProvider>
);
}
export default compose(
withInventoryValuationActions,
withSettings(({ organizationSettings }) => ({
organizationName: organizationSettings?.name,
})),
)(InventoryValuation);