mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
84 lines
1.9 KiB
TypeScript
84 lines
1.9 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import styled from 'styled-components';
|
|
|
|
import { TableStyle } from '@/constants';
|
|
import {
|
|
ReportDataTable,
|
|
FinancialSheet,
|
|
FormattedMessage as T,
|
|
} from '@/components';
|
|
|
|
import { useProfitLossSheetColumns } from './hooks';
|
|
import { useProfitLossSheetContext } from './ProfitLossProvider';
|
|
import { tableRowTypesToClassnames, defaultExpanderReducer } from '@/utils';
|
|
|
|
export default function ProfitLossSheetTable({
|
|
// #ownProps
|
|
companyName,
|
|
}) {
|
|
// Profit/Loss sheet context.
|
|
const {
|
|
profitLossSheet: { table, query },
|
|
} = useProfitLossSheetContext();
|
|
|
|
// Retrieves the profit/loss table columns.
|
|
const columns = useProfitLossSheetColumns();
|
|
|
|
// Retrieve default expanded rows of balance sheet.
|
|
const expandedRows = React.useMemo(
|
|
() => defaultExpanderReducer(table?.rows || [], 3),
|
|
[table],
|
|
);
|
|
|
|
return (
|
|
<FinancialSheet
|
|
companyName={companyName}
|
|
sheetType={<T id={'profit_loss_sheet'} />}
|
|
fromDate={query.from_date}
|
|
toDate={query.to_date}
|
|
basis={query.basis}
|
|
>
|
|
<ProfitLossDataTable
|
|
columns={columns}
|
|
data={table.rows}
|
|
noInitialFetch={true}
|
|
expanded={expandedRows}
|
|
rowClassNames={tableRowTypesToClassnames}
|
|
expandable={true}
|
|
expandToggleColumn={1}
|
|
sticky={true}
|
|
styleName={TableStyle.Constrant}
|
|
/>
|
|
</FinancialSheet>
|
|
);
|
|
}
|
|
|
|
const ProfitLossDataTable = styled(ReportDataTable)`
|
|
.table {
|
|
.tbody .tr {
|
|
.td {
|
|
border-bottom: 0;
|
|
padding-top: 0.32rem;
|
|
padding-bottom: 0.32rem;
|
|
color: #252A31;
|
|
}
|
|
&.is-expanded {
|
|
.td:not(.name) .cell-inner {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
&.row_type--TOTAL {
|
|
.td {
|
|
font-weight: 500;
|
|
border-top: 1px solid #bbb;
|
|
color: #000;
|
|
}
|
|
}
|
|
&:last-of-type .td {
|
|
border-bottom: 3px double #000;
|
|
}
|
|
}
|
|
}
|
|
`;
|