| 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 |
120x
120x
120x
120x
28x
28x
| import React from 'react';
import { createClass, omitProps } from '../../util/component-types';
import { lucidClassNames } from '../../util/style-helpers';
import Table from '../Table/Table';
const cx = lucidClassNames.bind('&-ScrollTable');
const {
object,
string,
bool,
node,
number,
oneOfType,
} = React.PropTypes;
/**
* {"categories": ["table"], "madeFrom": ["Table"]}
*
* Table in a scrollable container.
*/
const ScrollTable = createClass({
displayName: 'ScrollTable',
components: {
Thead: Table.Thead,
Tbody: Table.Tbody,
Tr: Table.Tr,
Th: Table.Th,
Td: Table.Td,
},
propTypes: {
/**
* {Thead, Tbody, Tr, Th, Td} are the child components of Scrolltable, same as Table.
*/
children: node,
/**
* Class names that are appended to the defaults.
*/
className: string,
/**
* Styles that are passed through to the root container.
*/
style: object,
/**
* Set the width of the Table inside the scrollable container.
*/
tableWidth: oneOfType([number, string]),
/**
* Set the Table contents to not allow word wrapping.
*/
hasWordWrap: bool,
/**
* render the table with borders on the outer edge
*/
hasBorder: bool,
},
getDefaultProps() {
return {
hasWordWrap: false,
hasBorder: false,
};
},
render() {
const {
children,
className,
style,
tableWidth,
hasWordWrap,
hasBorder,
...passThroughs,
} = this.props;
return (
<div
className={cx('&', {
'&-has-border': hasBorder,
}, className)}
style={style}
>
<Table
{...omitProps(passThroughs, ScrollTable)}
style={{
width: tableWidth,
}}
hasWordWrap={hasWordWrap}
>
{children}
</Table>
</div>
);
},
});
export default ScrollTable;
|