-
Notifications
You must be signed in to change notification settings - Fork 523
/
Copy pathTable.tsx
107 lines (94 loc) · 2.74 KB
/
Table.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import React, {ReactNode, useMemo} from 'react';
import styled from 'styled-components';
import {TableCell} from './TableCell/TableCell';
import {TableHeader} from './TableHeader/TableHeader';
import {TableHeaderCell} from './TableHeaderCell/TableHeaderCell';
import {TableActionCell} from './TableActionCell/TableActionCell';
import {TableRow} from './TableRow/TableRow';
import {TableContext} from './TableContext';
import {TableBody} from './TableBody/TableBody';
import {Override} from '../../shared';
const TableContainer = styled.table`
border-collapse: collapse;
width: 100%;
`;
type TableProps = Override<
React.HTMLAttributes<HTMLTableElement>,
{
/**
* Define if rows can be selected.
*/
isSelectable?: boolean;
/**
* Define if the table has some warning.
*/
hasWarningRows?: boolean;
/**
* Define if the table has some locked rows.
*/
hasLockedRows?: boolean;
/**
* Define if the checkbox should be always displayed or displayed on hover.
* This props should be true when one element is checked.
*/
displayCheckbox?: boolean;
/**
* The content of the table.
*/
children?: ReactNode;
} & (
| {
/**
* Define if rows can be reordered with drag and drop.
*/
isDragAndDroppable?: false;
onReorder?: undefined;
}
| {
/**
* Define if rows can be reordered with drag and drop.
*/
isDragAndDroppable: boolean;
/**
* Called when an element has been dragged and dropped on the table.
*/
onReorder: (updatedIndices: number[]) => void;
}
)
>;
/**
* Tables allow users to analyze and manipulate data.
*/
const Table = ({
isSelectable = false,
hasWarningRows = false,
hasLockedRows = false,
displayCheckbox = false,
isDragAndDroppable = false,
onReorder = undefined,
children,
...rest
}: TableProps) => {
const providerValue = useMemo(
() => ({isSelectable, hasWarningRows, hasLockedRows, displayCheckbox, isDragAndDroppable, onReorder}),
[isSelectable, hasWarningRows, hasLockedRows, displayCheckbox, isDragAndDroppable, onReorder]
);
return (
<TableContext.Provider value={providerValue}>
<TableContainer {...rest}>{children}</TableContainer>
</TableContext.Provider>
);
};
TableHeader.displayName = 'Table.Header';
TableHeaderCell.displayName = 'Table.HeaderCell';
TableBody.displayName = 'Table.Body';
TableRow.displayName = 'Table.Row';
TableCell.displayName = 'Table.Cell';
TableActionCell.displayName = 'Table.ActionCell';
Table.Header = TableHeader;
Table.HeaderCell = TableHeaderCell;
Table.Body = TableBody;
Table.Row = TableRow;
Table.Cell = TableCell;
Table.ActionCell = TableActionCell;
export {Table};