-
Notifications
You must be signed in to change notification settings - Fork 933
/
index.js
237 lines (226 loc) · 6.89 KB
/
index.js
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
import React from 'react';
import MUIDataTable from '../../src/';
import { ThemeProvider } from '@mui/material/styles';
import { withStyles } from 'tss-react/mui';
import { createTheme } from '@mui/material/styles';
import Switch from '@mui/material/Switch';
import FormGroup from '@mui/material/FormGroup';
import FormControlLabel from '@mui/material/FormControlLabel';
import clsx from 'clsx';
const customStyles = theme => ({
BusinessAnalystRow: {
'& td': { backgroundColor: '#FAA' },
},
GreyLine: {
'& td': { backgroundColor: theme.palette.grey[200] },
},
NameCell: {
fontWeight: 900,
},
});
class Example extends React.Component {
constructor(props) {
super(props);
this.state = {
denseTable: false,
vertical: true,
};
}
getMuiTheme = () =>
createTheme({
components: {
MUIDataTable: {
styleOverrides: {
root: {
backgroundColor: '#red',
},
paper: {
boxShadow: 'none',
},
},
},
MuiToolbar: {
styleOverrides: {
root: {
backgroundColor: '#f00',
},
},
},
MuiTableCell: {
styleOverrides: {
head: {
backgroundColor: 'purple',
},
},
},
MUIDataTableSelectCell: {
styleOverrides: {
headerCell: {
backgroundColor: 'blue',
},
},
},
MuiTableFooter: {
styleOverrides: {
root: {
'& .MuiToolbar-root': {
backgroundColor: 'white',
},
},
},
},
},
});
toggleDenseTable = event => {
this.setState({
denseTable: event.target.checked,
});
};
toggleResponsive = event => {
this.setState({
vertical: !!event.target.checked,
});
};
render() {
const columns = [
{
name: 'Name',
options: {
filter: true,
setCellProps: value => {
return {
className: clsx({
[this.props.classes.NameCell]: value === 'Mel Brooks',
}),
style: {
borderRight: '2px solid blue',
},
};
},
setCellHeaderProps: value => {
return {
className: clsx({
[this.props.classes.NameCell]: true,
}),
style: {
textDecoration: 'underline',
},
};
},
},
},
{
name: 'Title',
options: {
filter: true,
setCellHeaderProps: value => ({ style: { textDecoration: 'underline' } }),
},
},
{
name: 'Location',
options: {
filter: false,
},
},
{
name: 'Age',
options: {
filter: true,
},
},
{
name: 'Salary',
options: {
filter: true,
sort: false,
},
},
];
const data = [
['Gabby George', 'Business Analyst', 'Minneapolis', 30, 100000],
['Aiden Lloyd', 'Business Consultant', 'Dallas', 55, 200000],
['Jaden Collins', 'Attorney', 'Santa Ana', 27, 500000],
['Franky Rees', 'Business Analyst', 'St. Petersburg', 22, 50000],
['Aaren Rose', 'Business Consultant', 'Toledo', 28, 75000],
['Blake Duncan', 'Business Management Analyst', 'San Diego', 65, 94000],
['Frankie Parry', 'Agency Legal Counsel', 'Jacksonville', 71, 210000],
['Lane Wilson', 'Commercial Specialist', 'Omaha', 19, 65000],
['Robin Duncan', 'Business Analyst', 'Los Angeles', 20, 77000],
['Mel Brooks', 'Business Consultant', 'Oklahoma City', 37, 135000],
['Harper White', 'Attorney', 'Pittsburgh', 52, 420000],
['Kris Humphrey', 'Agency Legal Counsel', 'Laredo', 30, 150000],
['Frankie Long', 'Industrial Analyst', 'Austin', 31, 170000],
['Brynn Robbins', 'Business Analyst', 'Norfolk', 22, 90000],
['Justice Mann', 'Business Consultant', 'Chicago', 24, 133000],
['Addison Navarro', 'Business Management Analyst', 'New York', 50, 295000],
['Jesse Welch', 'Agency Legal Counsel', 'Seattle', 28, 200000],
['Eli Mejia', 'Commercial Specialist', 'Long Beach', 65, 400000],
['Gene Leblanc', 'Industrial Analyst', 'Hartford', 34, 110000],
['Danny Leon', 'Computer Scientist', 'Newark', 60, 220000],
['Lane Lee', 'Corporate Counselor', 'Cincinnati', 52, 180000],
['Jesse Hall', 'Business Analyst', 'Baltimore', 44, 99000],
['Danni Hudson', 'Agency Legal Counsel', 'Tampa', 37, 90000],
['Terry Macdonald', 'Commercial Specialist', 'Miami', 39, 140000],
['Justice Mccarthy', 'Attorney', 'Tucson', 26, 330000],
['Silver Carey', 'Computer Scientist', 'Memphis', 47, 250000],
['Franky Miles', 'Industrial Analyst', 'Buffalo', 49, 190000],
['Glen Nixon', 'Corporate Counselor', 'Arlington', 44, 80000],
['Gabby Strickland', 'Business Process Consultant', 'Scottsdale', 26, 45000],
['Mason Ray', 'Computer Scientist', 'San Francisco', 39, 142000],
];
const options = {
filter: true,
filterType: 'dropdown',
responsive: this.state.vertical ? 'vertical' : 'standard',
fixedHeader: false,
fixedSelectColumn: false,
rowHover: false,
setRowProps: (row, dataIndex, rowIndex) => {
return {
className: clsx({
[this.props.classes.BusinessAnalystRow]: row[1] === 'Business Analyst',
[this.props.classes.GreyLine]: rowIndex % 2 === 0 && row[1] !== 'Business Analyst',
}),
style: { border: '3px solid blue' },
};
},
setTableProps: () => {
return {
padding: this.state.denseTable ? 'none' : 'default',
// material ui v4 only
size: this.state.denseTable ? 'small' : 'medium',
};
},
};
return (
<ThemeProvider theme={this.getMuiTheme()}>
<FormGroup row>
<FormControlLabel
control={
<Switch
checked={this.state.denseTable}
onChange={this.toggleDenseTable}
value="denseTable"
color="primary"
/>
}
label="Dense Table"
/>
<FormControlLabel
control={
<Switch
checked={this.state.vertical}
onChange={this.toggleResponsive}
value="vertical"
color="primary"
/>
}
label="Responsive Vertical Table"
/>
</FormGroup>
<MUIDataTable title={'ACME Employee list'} data={data} columns={columns} options={options} />
</ThemeProvider>
);
}
}
export default withStyles(Example, customStyles, { name: 'ExampleCardjs' });