@@ -44,12 +44,14 @@ const defaultProps = {
44
44
sortBy : [ ] ,
45
45
} ;
46
46
47
- export type DataTableProps = {
48
- columns : readonly Column < object > [ ] ;
49
- data : object [ ] ;
47
+ export type DataTableProps < TValue > = {
48
+ columns : Column < TValue > [ ] ;
49
+ data : TValue [ ] ;
50
50
count ?: number ;
51
51
setPageInfo ?: React . Dispatch < React . SetStateAction < PageInfo | undefined > > ;
52
52
isLoading ?: boolean ;
53
+ onRowClick ?: ( row : TValue ) => void ;
54
+ isRowClickable ?: ( row : TValue ) => boolean ;
53
55
obj ?: string ;
54
56
sortBy ?: { id : string ; desc : boolean } [ ] ;
55
57
hiddenColumns ?: string [ ] ;
@@ -68,7 +70,7 @@ type TableInstanceWithHooks<T extends object> = TableInstance<T> &
68
70
state : UsePaginationState < T > ;
69
71
} ;
70
72
71
- const _DataTable = ( {
73
+ const _DataTable = < TValue extends object > ( {
72
74
columns,
73
75
data,
74
76
isLoading,
@@ -84,7 +86,9 @@ const _DataTable = ({
84
86
isManual,
85
87
saveSettingsId,
86
88
showAllRows,
87
- } : DataTableProps ) => {
89
+ onRowClick,
90
+ isRowClickable,
91
+ } : DataTableProps < TValue > ) => {
88
92
const { t } = useTranslation ( ) ;
89
93
const breakpoint = useBreakpoint ( ) ;
90
94
const textColor = useColorModeValue ( 'gray.700' , 'white' ) ;
@@ -143,7 +147,7 @@ const _DataTable = ({
143
147
} ,
144
148
useSortBy ,
145
149
usePagination ,
146
- ) as TableInstanceWithHooks < object > ;
150
+ ) as TableInstanceWithHooks < TValue > ;
147
151
148
152
const handleGoToPage = ( newPage : number ) => {
149
153
if ( saveSettingsId ) localStorage . setItem ( `${ saveSettingsId } .page` , String ( newPage ) ) ;
@@ -260,15 +264,18 @@ const _DataTable = ({
260
264
</ Thead >
261
265
{ data . length > 0 && (
262
266
< Tbody { ...getTableBodyProps ( ) } >
263
- { page . map ( ( row : Row ) => {
267
+ { page . map ( ( row : Row < TValue > ) => {
264
268
prepareRow ( row ) ;
269
+ const rowIsClickable = isRowClickable ? isRowClickable ( row . original ) : true ;
270
+ const onClick = rowIsClickable && onRowClick ? ( ) => onRowClick ( row . original ) : undefined ;
265
271
return (
266
272
< Tr
267
273
{ ...row . getRowProps ( ) }
268
274
key = { uuid ( ) }
269
275
_hover = { {
270
276
backgroundColor : hoveredRowBg ,
271
277
} }
278
+ onClick = { onClick }
272
279
>
273
280
{
274
281
// @ts -ignore
@@ -288,8 +295,26 @@ const _DataTable = ({
288
295
fontSize = "14px"
289
296
// @ts -ignore
290
297
textAlign = { cell . column . isCentered ? 'center' : undefined }
291
- // @ts -ignore
292
- fontFamily = { cell . column . isMonospace ? 'monospace' : undefined }
298
+ fontFamily = {
299
+ // @ts -ignore
300
+ cell . column . isMonospace
301
+ ? 'Inter, SFMono-Regular, Menlo, Monaco, Consolas, monospace'
302
+ : undefined
303
+ }
304
+ onClick = {
305
+ // @ts -ignore
306
+ cell . column . stopPropagation || ( cell . column . id === 'actions' && onRowClick )
307
+ ? ( e ) => {
308
+ e . stopPropagation ( ) ;
309
+ }
310
+ : undefined
311
+ }
312
+ cursor = {
313
+ // @ts -ignore
314
+ ! cell . column . stopPropagation && cell . column . id !== 'actions' && onRowClick
315
+ ? 'pointer'
316
+ : undefined
317
+ }
293
318
>
294
319
{ cell . render ( 'Cell' ) }
295
320
</ Td >
@@ -414,4 +439,4 @@ const _DataTable = ({
414
439
415
440
_DataTable . defaultProps = defaultProps ;
416
441
417
- export const DataTable = React . memo ( _DataTable ) ;
442
+ export const DataTable = React . memo ( _DataTable ) as unknown as typeof _DataTable ;
0 commit comments