mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
129 lines
3.8 KiB
JavaScript
129 lines
3.8 KiB
JavaScript
import React, {useState, useCallback, useEffect} from 'react';
|
|
import moment from 'moment';
|
|
import {compose} from 'utils';
|
|
import { useQuery } from 'react-query';
|
|
import { useIntl } from 'react-intl';
|
|
import { queryCache } from 'react-query';
|
|
|
|
import ProfitLossSheetHeader from './ProfitLossSheetHeader';
|
|
import ProfitLossSheetTable from './ProfitLossSheetTable';
|
|
import ProfitLossActionsBar from './ProfitLossActionsBar';
|
|
|
|
import DashboardInsider from 'components/Dashboard/DashboardInsider'
|
|
import DashboardPageContent from 'components/Dashboard/DashboardPageContent'
|
|
|
|
import withDashboardActions from 'containers/Dashboard/withDashboardActions';
|
|
import withProfitLossActions from './withProfitLossActions';
|
|
import withProfitLoss from './withProfitLoss';
|
|
import withSettings from 'containers/Settings/withSettings';
|
|
|
|
import { transformFilterFormToQuery } from 'containers/FinancialStatements/common';
|
|
|
|
import 'style/pages/FinancialStatements/ProfitLossSheet.scss';
|
|
|
|
/**
|
|
* Profit/Loss financial statement sheet.
|
|
*/
|
|
function ProfitLossSheet({
|
|
// #withDashboardActions
|
|
changePageTitle,
|
|
setDashboardBackLink,
|
|
setSidebarShrink,
|
|
|
|
// #withProfitLoss
|
|
profitLossSheetRefresh,
|
|
|
|
// #withProfitLossActions
|
|
fetchProfitLossSheet,
|
|
refreshProfitLossSheet,
|
|
|
|
// #withPreferences
|
|
organizationName,
|
|
}) {
|
|
const [filter, setFilter] = useState({
|
|
basis: 'cash',
|
|
fromDate: moment().startOf('year').format('YYYY-MM-DD'),
|
|
toDate: moment().endOf('year').format('YYYY-MM-DD'),
|
|
displayColumnsType: 'total',
|
|
accountsFilter: 'all-accounts',
|
|
});
|
|
const { formatMessage } = useIntl();
|
|
|
|
// Change page title of the dashboard.
|
|
useEffect(() => {
|
|
changePageTitle(formatMessage({ id: 'profit_loss_sheet' }));
|
|
}, [changePageTitle, formatMessage]);
|
|
|
|
// Observes the P&L sheet refresh to invalid the query to refresh it.
|
|
useEffect(() => {
|
|
if (profitLossSheetRefresh) {
|
|
refreshProfitLossSheet(false);
|
|
queryCache.invalidateQueries('profit-loss-sheet');
|
|
}
|
|
}, [profitLossSheetRefresh, refreshProfitLossSheet]);
|
|
|
|
useEffect(() => {
|
|
setSidebarShrink()
|
|
// Show the back link on dashboard topbar.
|
|
setDashboardBackLink(true);
|
|
|
|
return () => {
|
|
// Hide the back link on dashboard topbar.
|
|
setDashboardBackLink(false);
|
|
};
|
|
},[setDashboardBackLink,setSidebarShrink]);
|
|
|
|
// Fetches profit/loss sheet.
|
|
const fetchSheetHook = useQuery(['profit-loss-sheet', filter],
|
|
(key, query) => fetchProfitLossSheet({ ...transformFilterFormToQuery(query) }),
|
|
{ manual: true });
|
|
|
|
// Handle submit filter.
|
|
const handleSubmitFilter = (filter) => {
|
|
const _filter = {
|
|
...filter,
|
|
fromDate: moment(filter.fromDate).format('YYYY-MM-DD'),
|
|
toDate: moment(filter.toDate).format('YYYY-MM-DD'),
|
|
};
|
|
setFilter(_filter);
|
|
};
|
|
// Handle number format submit.
|
|
const handleNumberFormatSubmit = (numberFormat) => {
|
|
setFilter({
|
|
...filter,
|
|
numberFormat,
|
|
});
|
|
};
|
|
|
|
return (
|
|
<DashboardInsider>
|
|
<ProfitLossActionsBar
|
|
numberFormat={filter.numberFormat}
|
|
onNumberFormatSubmit={handleNumberFormatSubmit}
|
|
/>
|
|
|
|
<DashboardPageContent>
|
|
<div class="financial-statement">
|
|
<ProfitLossSheetHeader
|
|
pageFilter={filter}
|
|
onSubmitFilter={handleSubmitFilter} />
|
|
|
|
<div class="financial-statement__body">
|
|
<ProfitLossSheetTable
|
|
companyName={organizationName}
|
|
profitLossQuery={filter} />
|
|
</div>
|
|
</div>
|
|
</DashboardPageContent>
|
|
</DashboardInsider>
|
|
);
|
|
}
|
|
|
|
export default compose(
|
|
withDashboardActions,
|
|
withProfitLossActions,
|
|
withProfitLoss(({ profitLossSheetRefresh }) => ({ profitLossSheetRefresh })),
|
|
withSettings(({ organizationSettings }) => ({
|
|
organizationName: organizationSettings.name,
|
|
})),
|
|
)(ProfitLossSheet); |