mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
95 lines
2.3 KiB
TypeScript
95 lines
2.3 KiB
TypeScript
// @ts-nocheck
|
|
import React, { useMemo } from 'react';
|
|
import intl from 'react-intl-universal';
|
|
import styled from 'styled-components';
|
|
|
|
import { TableStyle } from '@/constants';
|
|
import {
|
|
ReportDataTable,
|
|
FinancialSheet,
|
|
TableFastCell,
|
|
TableVirtualizedListRows,
|
|
} from '@/components';
|
|
|
|
import { useJournalSheetContext } from './JournalProvider';
|
|
|
|
import { defaultExpanderReducer, tableRowTypesToClassnames } from '@/utils';
|
|
import { useJournalSheetColumns } from './dynamicColumns';
|
|
|
|
/**
|
|
* Journal sheet table.
|
|
* @returns {JSX.Element}
|
|
*/
|
|
export function JournalTable({ companyName }) {
|
|
// Journal sheet context.
|
|
const {
|
|
journalSheet: { table, query },
|
|
isLoading,
|
|
} = useJournalSheetContext();
|
|
|
|
// Retrieves the journal table columns.
|
|
const columns = useJournalSheetColumns();
|
|
|
|
// Default expanded rows of general journal table.
|
|
const expandedRows = useMemo(() => defaultExpanderReducer([], 1), []);
|
|
|
|
return (
|
|
<FinancialSheet
|
|
companyName={companyName}
|
|
sheetType={intl.get('journal_sheet')}
|
|
fromDate={query.from_date}
|
|
toDate={query.to_date}
|
|
loading={isLoading}
|
|
fullWidth={true}
|
|
name="journal"
|
|
>
|
|
<JournalDataTable
|
|
columns={columns}
|
|
data={table.rows}
|
|
rowClassNames={tableRowTypesToClassnames}
|
|
noResults={intl.get(
|
|
'this_report_does_not_contain_any_data_between_date_period',
|
|
)}
|
|
expanded={expandedRows}
|
|
sticky={true}
|
|
TableRowsRenderer={TableVirtualizedListRows}
|
|
// #TableVirtualizedListRows props.
|
|
vListrowHeight={28}
|
|
vListOverscanRowCount={2}
|
|
TableCellRenderer={TableFastCell}
|
|
id={'journal'}
|
|
styleName={TableStyle.Constrant}
|
|
/>
|
|
</FinancialSheet>
|
|
);
|
|
}
|
|
|
|
const JournalDataTable = styled(ReportDataTable)`
|
|
.table {
|
|
.tbody {
|
|
.tr:not(.no-results) .td {
|
|
padding: 0.3rem 0.4rem;
|
|
color: #000;
|
|
border-bottom-color: transparent;
|
|
min-height: 28px;
|
|
border-left: 1px solid #ececec;
|
|
|
|
&:first-of-type {
|
|
border-left: 0;
|
|
}
|
|
}
|
|
.tr:not(.no-results):last-child {
|
|
.td {
|
|
border-bottom: 1px solid #dbdbdb;
|
|
}
|
|
}
|
|
.tr.row_type--TOTAL{
|
|
font-weight: 600;
|
|
}
|
|
.tr:not(.no-results) {
|
|
height: 28px;
|
|
}
|
|
}
|
|
}
|
|
`;
|