-
Notifications
You must be signed in to change notification settings - Fork 932
/
Copy pathindex.js
183 lines (165 loc) · 5.99 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
import { Button, CircularProgress } from '@mui/material';
import React from 'react';
import ReactDOM from 'react-dom';
import MUIDataTable from '../../src';
const theData = [
['Gabby George', 'Business Analyst', 'Minneapolis', 30, '$100,000'],
['Aiden Lloyd', 'Business Consultant', 'Dallas', 55, '$200,000'],
['Jaden Collins', 'Attorney', 'Santa Ana', 27, '$500,000'],
['Franky Rees', 'Business Analyst', 'St. Petersburg', 22, '$50,000'],
['Aaren Rose', 'Business Consultant', 'Toledo', 28, '$75,000'],
['Blake Duncan', 'Business Management Analyst', 'San Diego', 65, '$94,000'],
['Frankie Parry', 'Agency Legal Counsel', 'Jacksonville', 71, '$210,000'],
['Lane Wilson', 'Commercial Specialist', 'Chicago', 19, '$65,000'],
['Robin Duncan', 'Business Analyst', 'Los Angeles', 20, '$77,000'],
['Mel Brooks', 'Business Consultant', 'Oklahoma City', 37, '$135,000'],
['Harper White', 'Attorney', 'Pittsburgh', 52, '$420,000'],
['Kris Humphrey', 'Agency Legal Counsel', 'Laredo', 30, '$150,000'],
['Frankie Long', 'Industrial Analyst', 'Austin', 31, '$170,000'],
['Brynn Robbins', 'Business Analyst', 'Norfolk', 22, '$90,000'],
['Justice Mann', 'Business Consultant', 'Chicago', 24, '$133,000'],
['Addison Navarro', 'Business Management Analyst', 'New York', 50, '$295,000'],
['Jesse Welch', 'Agency Legal Counsel', 'Seattle', 28, '$200,000'],
['Eli Mejia', 'Commercial Specialist', 'Long Beach', 65, '$400,000'],
['Gene Leblanc', 'Industrial Analyst', 'Hartford', 34, '$110,000'],
['Danny Leon', 'Computer Scientist', 'Newark', 60, '$220,000'],
['Lane Lee', 'Corporate Counselor', 'Cincinnati', 52, '$180,000'],
['Jesse Hall', 'Business Analyst', 'Baltimore', 44, '$99,000'],
['Danni Hudson', 'Agency Legal Counsel', 'Tampa', 37, '$90,000'],
['Terry Macdonald', 'Commercial Specialist', 'Miami', 39, '$140,000'],
['Justice Mccarthy', 'Attorney', 'Tucson', 26, '$330,000'],
['Silver Carey', 'Computer Scientist', 'Memphis', 47, '$250,000'],
['Franky Miles', 'Industrial Analyst', 'Buffalo', 49, '$190,000'],
['Glen Nixon', 'Corporate Counselor', 'Arlington', 44, '$80,000'],
['Gabby Strickland', 'Business Process Consultant', 'Scottsdale', 26, '$45,000'],
['Mason Ray', 'Computer Scientist', 'San Francisco', 39, '$142,000'],
];
class Example extends React.Component {
state = {
isLoading: false,
data: theData
};
// mock async function
xhrRequest = (url, filterList) => {
return new Promise(resolve => {
window.setTimeout(
() => {
const data = theData;
if (
filterList.reduce( (accu, cur) => accu + cur.length, 0) === 0
) {
resolve({ data });
} else {
/*
This code simulates filtering that would occur on the back-end
*/
var filteredData = data.filter(row => {
var ret = true;
for (var ii = 0; ii <= 4; ii++) {
if (filterList[ii] && filterList[ii].length) {
ret = ret && filterList[ii].filter(ff => {
return row[ii] == ff;
}).length > 0;
}
}
return ret;
});
resolve({ data: filteredData });
}
},
2000
);
});
}
handleFilterSubmit = applyFilters => {
let filterList = applyFilters();
this.setState({ isLoading: true });
// fake async request
this.xhrRequest(`/myApiServer?filters=${filterList}`, filterList).then(res => {
this.setState({ isLoading: false, data: res.data });
});
};
render() {
const columns = [
{
name: 'Name',
options: {
filter: true,
},
},
{
label: 'Title',
name: 'Title',
options: {
filter: true,
},
},
{
name: 'Location',
options: {
filter: true,
},
},
{
name: 'Age',
options: {
filter: true,
},
},
{
name: 'Salary',
options: {
filter: true,
},
},
];
const options = {
filter: true, // show the filter icon in the toolbar (true by default)
filterType: 'dropdown',
responsive: 'standard',
serverSide: true,
rowsPerPage: 50,
rowsPerPageOptions: [50],
// makes it so filters have to be "confirmed" before being applied to the
// table's internal filterList
confirmFilters: true,
// Calling the applyNewFilters parameter applies the selected filters to the table
customFilterDialogFooter: (currentFilterList, applyNewFilters) => {
return (
<div style={{ marginTop: '40px' }}>
<Button variant="contained" onClick={() => this.handleFilterSubmit(applyNewFilters)}>Apply Filters</Button>
</div>
);
},
// callback that gets executed when filters are confirmed
onFilterConfirm: (filterList) => {
console.log('onFilterConfirm');
console.dir(filterList);
},
onFilterDialogOpen: () => {
console.log('filter dialog opened');
},
onFilterDialogClose: () => {
console.log('filter dialog closed');
},
onFilterChange: (column, filterList, type) => {
if (type === 'chip') {
var newFilters = () => (filterList);
console.log('updating filters via chip');
this.handleFilterSubmit(newFilters);
}
},
};
return (
<React.Fragment>
{this.state.isLoading && (
<div style={{ position: 'absolute', top: '50%', left: '50%' }}>
<CircularProgress />
</div>
)}
<MUIDataTable title={'ACME Employee list'} data={this.state.data} columns={columns} options={options} />
</React.Fragment>
);
}
}
export default Example;