1
- // @ts -strict-ignore
2
1
import React , {
2
+ type RefObject ,
3
3
useCallback ,
4
4
useLayoutEffect ,
5
5
useRef ,
6
6
type UIEventHandler ,
7
7
} from 'react' ;
8
- import { type RefProp } from 'react-spring' ;
9
8
10
- import { type GroupedEntity } from 'loot-core/src/types/models/reports' ;
9
+ import {
10
+ type GroupedEntity ,
11
+ type DataEntity ,
12
+ } from 'loot-core/src/types/models/reports' ;
11
13
import { type RuleConditionEntity } from 'loot-core/types/models/rule' ;
12
14
13
15
import { type CSSProperties } from '../../../../style' ;
@@ -19,11 +21,11 @@ import { ReportTableRow } from './ReportTableRow';
19
21
20
22
type ReportTableProps = {
21
23
saveScrollWidth : ( value : number ) => void ;
22
- listScrollRef : RefProp < HTMLDivElement > ;
24
+ listScrollRef : RefObject < HTMLDivElement > ;
23
25
handleScroll : UIEventHandler < HTMLDivElement > ;
24
26
groupBy : string ;
25
27
balanceTypeOp : 'totalDebts' | 'totalTotals' | 'totalAssets' ;
26
- data : GroupedEntity ;
28
+ data : DataEntity ;
27
29
filters ?: RuleConditionEntity [ ] ;
28
30
mode : string ;
29
31
intervalsCount : number ;
@@ -34,6 +36,15 @@ type ReportTableProps = {
34
36
showOffBudget ?: boolean ;
35
37
} ;
36
38
39
+ export type renderRowProps = {
40
+ item : GroupedEntity ;
41
+ mode : string ;
42
+ intervalsCount : number ;
43
+ compact : boolean ;
44
+ style ?: CSSProperties ;
45
+ compactStyle ?: CSSProperties ;
46
+ } ;
47
+
37
48
export function ReportTable ( {
38
49
saveScrollWidth,
39
50
listScrollRef,
@@ -58,8 +69,15 @@ export function ReportTable({
58
69
}
59
70
} ) ;
60
71
61
- const renderItem = useCallback (
62
- ( { item, mode, intervalsCount, compact, style, compactStyle } ) => {
72
+ const renderRow = useCallback (
73
+ ( {
74
+ item,
75
+ mode,
76
+ intervalsCount,
77
+ compact,
78
+ style,
79
+ compactStyle,
80
+ } : renderRowProps ) => {
63
81
return (
64
82
< ReportTableRow
65
83
item = { item }
@@ -109,7 +127,7 @@ export function ReportTable({
109
127
intervalsCount = { intervalsCount }
110
128
mode = { mode }
111
129
groupBy = { groupBy }
112
- renderItem = { renderItem }
130
+ renderRow = { renderRow }
113
131
compact = { compact }
114
132
style = { style }
115
133
compactStyle = { compactStyle }
0 commit comments