-
Notifications
You must be signed in to change notification settings - Fork 2
/
GridOptionsPanel.js
91 lines (83 loc) · 2.59 KB
/
GridOptionsPanel.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
import React from "react";
import { COLDEFS_WITH_GROUPING, COLDEFS_WITHOUT_GROUPING } from "./columnDefs";
const GridOptionsPanel = props => {
const updateColumnGrouping = event => {
const withColumnGroups = event.target.checked;
props.gridApi.setColumnDefs(
withColumnGroups ? COLDEFS_WITH_GROUPING : COLDEFS_WITHOUT_GROUPING
);
};
const updateGroupByCountry = event => {
props.columnApi.applyColumnState({
state: [
{
colId: "country",
rowGroup: event.target.checked
}
]
});
};
const updateFilterByArgentina = event => {
const countryFilterComponent = props.gridApi.getFilterInstance("country");
const filterModel = event.target.checked ? { values: ["Argentina"] } : null;
countryFilterComponent.setModel(filterModel);
props.gridApi.onFilterChanged();
};
const updateSortAthleteAsc = event => {
let athleteSort = event.target.checked ? "asc" : null;
props.columnApi.applyColumnState({
state: [{ colId: "athlete", sort: athleteSort }],
defaultState: { sort: null }
});
};
return (
<form>
<h4 className="text-secondary">Grid Options</h4>
<span className="form-check">
<input
className="form-check-input"
type="checkbox"
id="grid-setting-column-groups"
onChange={updateColumnGrouping}
/>
<label className="form-check-label" for="grid-setting-column-groups">
Column Groups
</label>
</span>
<span className="form-check">
<input
className="form-check-input"
type="checkbox"
id="grid-setting-group-country"
onChange={updateGroupByCountry}
/>
<label className="form-check-label" for="grid-setting-group-country">
Group by "country"
</label>
</span>
<span className="form-check">
<input
className="form-check-input"
type="checkbox"
id="grid-setting-filter-argentina"
onChange={updateFilterByArgentina}
/>
<label className="form-check-label" for="grid-setting-filter-argentina">
Filter by "Argentina"
</label>
</span>
<span className="form-check">
<input
className="form-check-input"
type="checkbox"
id="grid-setting-sort-athlete-asc"
onChange={updateSortAthleteAsc}
/>
<label className="form-check-label" for="grid-setting-sort-athlete-asc">
Sort Athlete (ascending)
</label>
</span>
</form>
);
};
export default GridOptionsPanel;