playbook_ui 13.16.0.pre.alpha.PBNTR177NewAdvancedTableKit2035 → 13.16.0.pre.alpha.PBNTR178AdvancedTableDocs2072
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_advanced_table/README.md +159 -4
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_collapsible_trail.jsx +52 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_collapsible_trail.md +1 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_default.md +5 -2
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_expanded_control.jsx +59 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_expanded_control.md +18 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading.jsx +60 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading.md +3 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sort.jsx +1 -6
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sort.md +5 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sort_control.jsx +63 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sort_control.md +3 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_subrow_headers.jsx +57 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_subrow_headers.md +3 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_options.jsx +61 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_options.md +3 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props.jsx +55 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props.md +1 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/example.yml +10 -4
- data/app/pb_kits/playbook/pb_advanced_table/docs/index.js +7 -0
- data/lib/playbook/version.rb +1 -1
- metadata +17 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a3f84c9ada938622a17b30501cba912f98fe09c68fb50d2f9880f1b55026d6c1
|
4
|
+
data.tar.gz: ace64b8414d943043df0acaf4809bf139e226dc681dd059a36540e646327444d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a49054e9f6ec1d8603aee090092392f5a4f3dde7b1f687bd3f1318b47dce1670f859a42b1e09aaff370333aef5e613df175f1a1ff000707f99c5705d373c14f
|
7
|
+
data.tar.gz: f287762d5c8446c9594b02a24d5dd7a178f24802725318f906061fd8edf12907b085700e7b2c788e92c0b69446ffa91df23e7b79e231188419aea5efec78b9c3
|
@@ -5,7 +5,7 @@ The AdvancedTable Kit's `tableData` prop consumes the data that will render the
|
|
5
5
|
Here is the data structure being used within the kits doc examples:
|
6
6
|
|
7
7
|
```
|
8
|
-
MOCK_DATA = [
|
8
|
+
const MOCK_DATA = [
|
9
9
|
{
|
10
10
|
year: "2021",
|
11
11
|
quarter: null,
|
@@ -110,8 +110,85 @@ MOCK_DATA = [
|
|
110
110
|
classCompletionRate: "45%",
|
111
111
|
graduatedStudents: "32",
|
112
112
|
children: [
|
113
|
-
|
114
|
-
|
113
|
+
{
|
114
|
+
year: "2022",
|
115
|
+
quarter: "Q1",
|
116
|
+
month: null,
|
117
|
+
day: null,
|
118
|
+
newEnrollments: "2",
|
119
|
+
scheduledMeetings: "35",
|
120
|
+
attendanceRate: "32%",
|
121
|
+
completedClasses: "15",
|
122
|
+
classCompletionRate: "52%",
|
123
|
+
graduatedStudents: "36",
|
124
|
+
children: [
|
125
|
+
{
|
126
|
+
year: "2022",
|
127
|
+
quarter: "Q1",
|
128
|
+
month: "January",
|
129
|
+
day: null,
|
130
|
+
newEnrollments: "16",
|
131
|
+
scheduledMeetings: "20",
|
132
|
+
attendanceRate: "11%",
|
133
|
+
completedClasses: "13",
|
134
|
+
classCompletionRate: "47%",
|
135
|
+
graduatedStudents: "28",
|
136
|
+
children: [
|
137
|
+
{
|
138
|
+
year: "2022",
|
139
|
+
quarter: "Q1",
|
140
|
+
month: "January",
|
141
|
+
day: "15",
|
142
|
+
newEnrollments: "34",
|
143
|
+
scheduledMeetings: "28",
|
144
|
+
attendanceRate: "97%",
|
145
|
+
completedClasses: "20",
|
146
|
+
classCompletionRate: "15%",
|
147
|
+
graduatedStudents: "17",
|
148
|
+
},
|
149
|
+
{
|
150
|
+
year: "2022",
|
151
|
+
quarter: "Q1",
|
152
|
+
month: "January",
|
153
|
+
day: "25",
|
154
|
+
newEnrollments: "43",
|
155
|
+
scheduledMeetings: "23",
|
156
|
+
attendanceRate: "66%",
|
157
|
+
completedClasses: "26",
|
158
|
+
classCompletionRate: "47%",
|
159
|
+
graduatedStudents: "9",
|
160
|
+
},
|
161
|
+
],
|
162
|
+
},
|
163
|
+
{
|
164
|
+
year: "2022",
|
165
|
+
quarter: "Q1",
|
166
|
+
month: "May",
|
167
|
+
day: null,
|
168
|
+
newEnrollments: "20",
|
169
|
+
scheduledMeetings: "41",
|
170
|
+
attendanceRate: "95%",
|
171
|
+
completedClasses: "26",
|
172
|
+
classCompletionRate: "83%",
|
173
|
+
graduatedStudents: "43",
|
174
|
+
children: [
|
175
|
+
{
|
176
|
+
year: "2011",
|
177
|
+
quarter: "Q1",
|
178
|
+
month: "May",
|
179
|
+
day: "2",
|
180
|
+
newEnrollments: "19",
|
181
|
+
scheduledMeetings: "35",
|
182
|
+
attendanceRate: "69%",
|
183
|
+
completedClasses: "8",
|
184
|
+
classCompletionRate: "75%",
|
185
|
+
graduatedStudents: "23",
|
186
|
+
},
|
187
|
+
],
|
188
|
+
},
|
189
|
+
],
|
190
|
+
},
|
191
|
+
],
|
115
192
|
},
|
116
193
|
{
|
117
194
|
year: "2023",
|
@@ -125,9 +202,87 @@ MOCK_DATA = [
|
|
125
202
|
classCompletionRate: "49%",
|
126
203
|
graduatedStudents: "29",
|
127
204
|
children: [
|
128
|
-
|
205
|
+
{
|
206
|
+
year: "2023",
|
207
|
+
quarter: "Q1",
|
208
|
+
month: null,
|
209
|
+
day: null,
|
210
|
+
newEnrollments: "2",
|
211
|
+
scheduledMeetings: "35",
|
212
|
+
attendanceRate: "32%",
|
213
|
+
completedClasses: "15",
|
214
|
+
classCompletionRate: "52%",
|
215
|
+
graduatedStudents: "36",
|
216
|
+
children: [
|
217
|
+
{
|
218
|
+
year: "2023",
|
219
|
+
quarter: "Q1",
|
220
|
+
month: "March",
|
221
|
+
day: null,
|
222
|
+
newEnrollments: "16",
|
223
|
+
scheduledMeetings: "20",
|
224
|
+
attendanceRate: "11%",
|
225
|
+
completedClasses: "13",
|
226
|
+
classCompletionRate: "47%",
|
227
|
+
graduatedStudents: "28",
|
228
|
+
children: [
|
229
|
+
{
|
230
|
+
year: "2023",
|
231
|
+
quarter: "Q1",
|
232
|
+
month: "March",
|
233
|
+
day: "10",
|
234
|
+
newEnrollments: "34",
|
235
|
+
scheduledMeetings: "28",
|
236
|
+
attendanceRate: "97%",
|
237
|
+
completedClasses: "20",
|
238
|
+
classCompletionRate: "15%",
|
239
|
+
graduatedStudents: "17",
|
240
|
+
},
|
241
|
+
{
|
242
|
+
year: "2023",
|
243
|
+
quarter: "Q1",
|
244
|
+
month: "March",
|
245
|
+
day: "11",
|
246
|
+
newEnrollments: "43",
|
247
|
+
scheduledMeetings: "23",
|
248
|
+
attendanceRate: "66%",
|
249
|
+
completedClasses: "26",
|
250
|
+
classCompletionRate: "47%",
|
251
|
+
graduatedStudents: "9",
|
252
|
+
},
|
253
|
+
],
|
254
|
+
},
|
255
|
+
{
|
256
|
+
year: "2023",
|
257
|
+
quarter: "Q1",
|
258
|
+
month: "April",
|
259
|
+
day: null,
|
260
|
+
newEnrollments: "20",
|
261
|
+
scheduledMeetings: "41",
|
262
|
+
attendanceRate: "95%",
|
263
|
+
completedClasses: "26",
|
264
|
+
classCompletionRate: "83%",
|
265
|
+
graduatedStudents: "43",
|
266
|
+
children: [
|
267
|
+
{
|
268
|
+
year: "2023",
|
269
|
+
quarter: "Q1",
|
270
|
+
month: "April",
|
271
|
+
day: "15",
|
272
|
+
newEnrollments: "19",
|
273
|
+
scheduledMeetings: "35",
|
274
|
+
attendanceRate: "69%",
|
275
|
+
completedClasses: "8",
|
276
|
+
classCompletionRate: "75%",
|
277
|
+
graduatedStudents: "23",
|
278
|
+
},
|
279
|
+
],
|
280
|
+
},
|
281
|
+
],
|
282
|
+
},
|
129
283
|
],
|
130
284
|
},
|
131
285
|
];
|
132
286
|
|
287
|
+
|
133
288
|
```
|
@@ -0,0 +1,52 @@
|
|
1
|
+
import React from "react";
|
2
|
+
import { AdvancedTable } from "../../";
|
3
|
+
import { MOCK_DATA } from "./_mock_data";
|
4
|
+
|
5
|
+
const AdvancedTableCollapsibleTrail = (props) => {
|
6
|
+
const columnDefinitions = [
|
7
|
+
{
|
8
|
+
accessor: "year",
|
9
|
+
label: "Year",
|
10
|
+
cellAccessors: ["quarter", "month", "day"],
|
11
|
+
},
|
12
|
+
{
|
13
|
+
accessor: "newEnrollments",
|
14
|
+
label: "New Enrollments",
|
15
|
+
},
|
16
|
+
{
|
17
|
+
accessor: "scheduledMeetings",
|
18
|
+
label: "Scheduled Meetings",
|
19
|
+
},
|
20
|
+
{
|
21
|
+
accessor: "attendanceRate",
|
22
|
+
label: "Attendance Rate",
|
23
|
+
},
|
24
|
+
{
|
25
|
+
accessor: "completedClasses",
|
26
|
+
label: "Completed Classes",
|
27
|
+
},
|
28
|
+
{
|
29
|
+
accessor: "classCompletionRate",
|
30
|
+
label: "Class Completion Rate",
|
31
|
+
},
|
32
|
+
{
|
33
|
+
accessor: "graduatedStudents",
|
34
|
+
label: "Graduated Students",
|
35
|
+
},
|
36
|
+
];
|
37
|
+
|
38
|
+
return (
|
39
|
+
<div>
|
40
|
+
<AdvancedTable
|
41
|
+
columnDefinitions={columnDefinitions}
|
42
|
+
tableData={MOCK_DATA}
|
43
|
+
{...props}
|
44
|
+
>
|
45
|
+
<AdvancedTable.Header />
|
46
|
+
<AdvancedTable.Body collapsibleTrail={false} />
|
47
|
+
</AdvancedTable>
|
48
|
+
</div>
|
49
|
+
);
|
50
|
+
};
|
51
|
+
|
52
|
+
export default AdvancedTableCollapsibleTrail;
|
@@ -0,0 +1 @@
|
|
1
|
+
`collapsibleTrail` is an optional prop that is set to 'true' by default. If set to 'false', it will remove the trail on the left of rows when subRows are toggled open.
|
@@ -1,7 +1,10 @@
|
|
1
|
-
The AdvancedTable kit takes the table data and automatically renders expandable subrows for nested items to any depth needed. In it's simplest form,
|
1
|
+
The AdvancedTable kit takes the table data and automatically renders expandable subrows for nested items to any depth needed. In it's simplest form, __the kit has two required props__:
|
2
2
|
|
3
|
-
|
3
|
+
### tableData
|
4
4
|
|
5
|
+
`tableData` is the data that the kit needs to consume to render the table. This data will take the structure of an array of objects where each object will be rendered as a row with the key/value pairs being the column values. If an object within that data has children, the kit will automatically create subRows with icon buttons on the parent rows to toggle the subRows open or closed. The toggleExpansionAll button in the first column header can also be used to toggle expansion for the top level parent rows. For a visual of the data structure needed for `tableData`, see [here](https://github.com/powerhome/playbook/blob/PBNTR-177-New-Advanced-Table-Kit/playbook/app/pb_kits/playbook/pb_advanced_table/README.md).
|
6
|
+
|
7
|
+
### columnDefinitions
|
5
8
|
|
6
9
|
`columnDefinitions` maps to the columns prop on the Tanstack table. Column definitions are the single most important part of building a table as they are responsible for building the underlying data model that is used for all sorting, expansion, etc. `ColumnDefinitions` in the AdvancedTable kit is a array of objects as seen in the code snippet below. Each object within the array has two REQUIRED items:
|
7
10
|
|
@@ -0,0 +1,59 @@
|
|
1
|
+
import React, { useState } from "react";
|
2
|
+
import { AdvancedTable } from "../../";
|
3
|
+
import { MOCK_DATA } from "./_mock_data";
|
4
|
+
|
5
|
+
const AdvancedTableExpandedControl = (props) => {
|
6
|
+
const columnDefinitions = [
|
7
|
+
{
|
8
|
+
accessor: "year",
|
9
|
+
label: "Year",
|
10
|
+
cellAccessors: ["quarter", "month", "day"],
|
11
|
+
},
|
12
|
+
{
|
13
|
+
accessor: "newEnrollments",
|
14
|
+
label: "New Enrollments",
|
15
|
+
},
|
16
|
+
{
|
17
|
+
accessor: "scheduledMeetings",
|
18
|
+
label: "Scheduled Meetings",
|
19
|
+
},
|
20
|
+
{
|
21
|
+
accessor: "attendanceRate",
|
22
|
+
label: "Attendance Rate",
|
23
|
+
},
|
24
|
+
{
|
25
|
+
accessor: "completedClasses",
|
26
|
+
label: "Completed Classes",
|
27
|
+
},
|
28
|
+
{
|
29
|
+
accessor: "classCompletionRate",
|
30
|
+
label: "Class Completion Rate",
|
31
|
+
},
|
32
|
+
{
|
33
|
+
accessor: "graduatedStudents",
|
34
|
+
label: "Graduated Students",
|
35
|
+
},
|
36
|
+
];
|
37
|
+
|
38
|
+
//State for manually effecting what is expanded
|
39
|
+
const [expanded, setExpanded] = useState({'0': true, '0.0': true, '0.0.1': true})
|
40
|
+
|
41
|
+
//Passing expanded state to AdvancedTable as prop
|
42
|
+
const expandedControl = {
|
43
|
+
value: expanded,
|
44
|
+
onChange: setExpanded,
|
45
|
+
}
|
46
|
+
|
47
|
+
return (
|
48
|
+
<div>
|
49
|
+
<AdvancedTable
|
50
|
+
columnDefinitions={columnDefinitions}
|
51
|
+
expandedControl={expandedControl}
|
52
|
+
tableData={MOCK_DATA}
|
53
|
+
{...props}
|
54
|
+
/>
|
55
|
+
</div>
|
56
|
+
);
|
57
|
+
};
|
58
|
+
|
59
|
+
export default AdvancedTableExpandedControl;
|
@@ -0,0 +1,18 @@
|
|
1
|
+
`expandedControl` is an optional prop that can be used to gain greater control over the expansion state of the Advanced Table. Tanstack handles expansion itself, however it does provide for a way to handle the state manually if needed. Usecases for this include needing to store the expansion state so it persists on page reload, set an initial expansion state, etc.
|
2
|
+
|
3
|
+
In this example we are showing that if initial expansion state is set, it will render the table expanded according to that state.
|
4
|
+
|
5
|
+
The expanded state must be an object with key/value pairs where the key is the row id and the value is a boolean, true or false. Tanstack by default assigns row ids based on index and depth of the row as can be seen in this example. For more information on row ids, see [here](https://tanstack.com/table/v8/docs/api/core/row#id).
|
6
|
+
|
7
|
+
### Single Row Expansion
|
8
|
+
|
9
|
+
By default, the click event on the row level toggleExpansion icon simply toggles the immediate sub rows open or closed. If you want to attach further logic to that button, the optional `onRowToggleClick` prop can be used. This click event provides one argument that can be hooked into: the current `row` object. Any additional functionality provided through this onClick will be applied in addition to the default.
|
10
|
+
|
11
|
+
### Multi-Row Expansion
|
12
|
+
|
13
|
+
Similar to the row level click event, the default of the click event on the toggleExpansion buttons that render in the first column header (and the subRow Header rows if prop enabled) toggles all top level rows open and closed. If you want to attach further logic to that button, the optional `onToggleExpansionClick` prop can be used. This click event provides one argument that can be hooked into: the current `row` object. Any additional functionality provided through this onClick will be applied in addition to the default.
|
14
|
+
|
15
|
+
### ToggleExpansionIcon
|
16
|
+
|
17
|
+
`ToggleExpansionIcon` is another optional prop that can be used to customize the icon for the toggleExpansion button. This prop takes a string value with the default set to `arrows-from-line`. All strings must be valid FA icons.
|
18
|
+
|
@@ -0,0 +1,60 @@
|
|
1
|
+
import React, { useState } from "react";
|
2
|
+
import { AdvancedTable } from "../../";
|
3
|
+
import { Button } from "../../"
|
4
|
+
import { MOCK_DATA } from "./_mock_data";
|
5
|
+
|
6
|
+
const AdvancedTableLoading = (props) => {
|
7
|
+
|
8
|
+
const [isloading, setIsLoading] = useState(true)
|
9
|
+
|
10
|
+
const columnDefinitions = [
|
11
|
+
{
|
12
|
+
accessor: "year",
|
13
|
+
label: "Year",
|
14
|
+
cellAccessors: ["quarter", "month", "day"],
|
15
|
+
},
|
16
|
+
{
|
17
|
+
accessor: "newEnrollments",
|
18
|
+
label: "New Enrollments",
|
19
|
+
},
|
20
|
+
{
|
21
|
+
accessor: "scheduledMeetings",
|
22
|
+
label: "Scheduled Meetings",
|
23
|
+
},
|
24
|
+
{
|
25
|
+
accessor: "attendanceRate",
|
26
|
+
label: "Attendance Rate",
|
27
|
+
},
|
28
|
+
{
|
29
|
+
accessor: "completedClasses",
|
30
|
+
label: "Completed Classes",
|
31
|
+
},
|
32
|
+
{
|
33
|
+
accessor: "classCompletionRate",
|
34
|
+
label: "Class Completion Rate",
|
35
|
+
},
|
36
|
+
{
|
37
|
+
accessor: "graduatedStudents",
|
38
|
+
label: "Graduated Students",
|
39
|
+
},
|
40
|
+
];
|
41
|
+
|
42
|
+
return (
|
43
|
+
<div>
|
44
|
+
<Button marginBottom="md"
|
45
|
+
onClick={()=> setIsLoading(!isloading)}
|
46
|
+
text="Toggle Loading State"
|
47
|
+
variant="secondary"
|
48
|
+
{...props}
|
49
|
+
/>
|
50
|
+
<AdvancedTable
|
51
|
+
columnDefinitions={columnDefinitions}
|
52
|
+
loading={isloading}
|
53
|
+
tableData={MOCK_DATA}
|
54
|
+
{...props}
|
55
|
+
/>
|
56
|
+
</div>
|
57
|
+
);
|
58
|
+
};
|
59
|
+
|
60
|
+
export default AdvancedTableLoading;
|
@@ -0,0 +1,3 @@
|
|
1
|
+
the optional `loading` prop takes a boolean value that can be managed using state. If loading is true, the table will display the loading skeleton and once loading is false, the table will render with the data provided.
|
2
|
+
|
3
|
+
By default, the inital row count of the loading skeleton is set to 10. If you want more control over this initial row count, the optional `initialLoadingRowCount` prop can be used to to pass in a number. __NOTE__: This is only for the first render of the table, subsequent loading skeleton row count logic is handled within the kit itself.
|
@@ -35,20 +35,15 @@ const AdvancedTableSort = (props) => {
|
|
35
35
|
},
|
36
36
|
];
|
37
37
|
|
38
|
-
//Render the subRow header rows
|
39
|
-
const subRowHeaders = ["Quarter", "Month", "Day"]
|
40
|
-
|
41
|
-
|
42
38
|
return (
|
43
39
|
<div>
|
44
40
|
<AdvancedTable
|
45
41
|
columnDefinitions={columnDefinitions}
|
46
|
-
enableToggleExpansion="all"
|
47
42
|
tableData={MOCK_DATA}
|
48
43
|
{...props}
|
49
44
|
>
|
50
45
|
<AdvancedTable.Header enableSorting />
|
51
|
-
<AdvancedTable.Body
|
46
|
+
<AdvancedTable.Body />
|
52
47
|
</AdvancedTable>
|
53
48
|
</div>
|
54
49
|
);
|
@@ -0,0 +1,5 @@
|
|
1
|
+
the `enableSorting` prop is a boolean prop set to false by default. If true, the table will add sort logic linked to the sort button in the header. Clicking the sort button will toggle sort between ascending and descending. Currently this sort functionality is only available on the first column.
|
2
|
+
|
3
|
+
### sortIcon
|
4
|
+
|
5
|
+
An optional prop, `sortIcon` allows you to customize your icon sets by passing it an array of any comma-separated pair of icon values. The first icon value will replace the kit's default icon when sort direction is desc, and the second value will replace the default icon when sort direction is asc. `sortIcon` also allows you to pass it a single icon as a string, in which case the icon will not toggle with the sort state. Default for this prop is `["arrow-up-short-wide", "arrow-down-short-wide"]`. All strings must be valid FA icons.
|
@@ -0,0 +1,63 @@
|
|
1
|
+
import React, { useState } from "react";
|
2
|
+
import { AdvancedTable } from "../..";
|
3
|
+
import { MOCK_DATA } from "./_mock_data";
|
4
|
+
|
5
|
+
const AdvancedTableSortControl = (props) => {
|
6
|
+
const columnDefinitions = [
|
7
|
+
{
|
8
|
+
accessor: "year",
|
9
|
+
label: "Year",
|
10
|
+
cellAccessors: ["quarter", "month", "day"],
|
11
|
+
},
|
12
|
+
{
|
13
|
+
accessor: "newEnrollments",
|
14
|
+
label: "New Enrollments",
|
15
|
+
},
|
16
|
+
{
|
17
|
+
accessor: "scheduledMeetings",
|
18
|
+
label: "Scheduled Meetings",
|
19
|
+
},
|
20
|
+
{
|
21
|
+
accessor: "attendanceRate",
|
22
|
+
label: "Attendance Rate",
|
23
|
+
},
|
24
|
+
{
|
25
|
+
accessor: "completedClasses",
|
26
|
+
label: "Completed Classes",
|
27
|
+
},
|
28
|
+
{
|
29
|
+
accessor: "classCompletionRate",
|
30
|
+
label: "Class Completion Rate",
|
31
|
+
},
|
32
|
+
{
|
33
|
+
accessor: "graduatedStudents",
|
34
|
+
label: "Graduated Students",
|
35
|
+
},
|
36
|
+
];
|
37
|
+
|
38
|
+
//State for sort direction
|
39
|
+
const [isSortDesc, setIsSortDesc] = useState({desc: false})
|
40
|
+
|
41
|
+
// //Passing sort state to AdvancedTable as prop
|
42
|
+
const sortControl = {
|
43
|
+
value: isSortDesc,
|
44
|
+
onChange: setIsSortDesc,
|
45
|
+
}
|
46
|
+
|
47
|
+
|
48
|
+
return (
|
49
|
+
<div>
|
50
|
+
<AdvancedTable
|
51
|
+
columnDefinitions={columnDefinitions}
|
52
|
+
sortControl={sortControl}
|
53
|
+
tableData={MOCK_DATA}
|
54
|
+
{...props}
|
55
|
+
>
|
56
|
+
<AdvancedTable.Header enableSorting />
|
57
|
+
<AdvancedTable.Body />
|
58
|
+
</AdvancedTable>
|
59
|
+
</div>
|
60
|
+
);
|
61
|
+
};
|
62
|
+
|
63
|
+
export default AdvancedTableSortControl;
|
@@ -0,0 +1,3 @@
|
|
1
|
+
`sortControl` is an optional prop that can be used to gain greater control over the sort state of the Advanced Table. Tanstack handles sort itself, however it does provide for a way to handle the state manually if needed. Usecases for this include needing to store the sort state so it persists on page reload, set an initial sort state, etc.
|
2
|
+
|
3
|
+
The sort state must be an object with a single key/value pair, with the key being "desc" and the value being a boolean. The default for sort directino is `desc: true`.
|
@@ -0,0 +1,57 @@
|
|
1
|
+
import React from "react";
|
2
|
+
import { AdvancedTable } from "../..";
|
3
|
+
import { MOCK_DATA } from "./_mock_data";
|
4
|
+
|
5
|
+
const AdvancedTableSubrowHeaders = (props) => {
|
6
|
+
const columnDefinitions = [
|
7
|
+
{
|
8
|
+
accessor: "year",
|
9
|
+
label: "Year",
|
10
|
+
cellAccessors: ["quarter", "month", "day"],
|
11
|
+
},
|
12
|
+
{
|
13
|
+
accessor: "newEnrollments",
|
14
|
+
label: "New Enrollments",
|
15
|
+
},
|
16
|
+
{
|
17
|
+
accessor: "scheduledMeetings",
|
18
|
+
label: "Scheduled Meetings",
|
19
|
+
},
|
20
|
+
{
|
21
|
+
accessor: "attendanceRate",
|
22
|
+
label: "Attendance Rate",
|
23
|
+
},
|
24
|
+
{
|
25
|
+
accessor: "completedClasses",
|
26
|
+
label: "Completed Classes",
|
27
|
+
},
|
28
|
+
{
|
29
|
+
accessor: "classCompletionRate",
|
30
|
+
label: "Class Completion Rate",
|
31
|
+
},
|
32
|
+
{
|
33
|
+
accessor: "graduatedStudents",
|
34
|
+
label: "Graduated Students",
|
35
|
+
},
|
36
|
+
];
|
37
|
+
|
38
|
+
//Render the subRow header rows
|
39
|
+
const subRowHeaders = ["Quarter", "Month", "Day"]
|
40
|
+
|
41
|
+
|
42
|
+
return (
|
43
|
+
<div>
|
44
|
+
<AdvancedTable
|
45
|
+
columnDefinitions={columnDefinitions}
|
46
|
+
enableToggleExpansion="all"
|
47
|
+
tableData={MOCK_DATA}
|
48
|
+
{...props}
|
49
|
+
>
|
50
|
+
<AdvancedTable.Header />
|
51
|
+
<AdvancedTable.Body subRowHeaders={subRowHeaders}/>
|
52
|
+
</AdvancedTable>
|
53
|
+
</div>
|
54
|
+
);
|
55
|
+
};
|
56
|
+
|
57
|
+
export default AdvancedTableSubrowHeaders;
|
@@ -0,0 +1,3 @@
|
|
1
|
+
`subRowHeaders` is an optional prop that if present will add header rows at each level of the nested data. The prop takes an array of strings, each string being the text for each header row. The array of strings must be in the order in which they need to be rendered in the UI according to depth.
|
2
|
+
|
3
|
+
`enableToggleExpansion` is an additional optional prop that can be used in conjunction with the subRowHeaders prop. `enableToggleExpansion` is a string that can be 'all' or 'header". If set to 'all', the toggle exapansion button will appear in the table header as well as in the subRow headers. If set to 'header' button will only appear in header and NOT in subRow headers. This is set to 'headeer' by default.
|
@@ -0,0 +1,61 @@
|
|
1
|
+
import React from "react";
|
2
|
+
import { AdvancedTable } from "../../";
|
3
|
+
import { MOCK_DATA } from "./_mock_data";
|
4
|
+
|
5
|
+
const AdvancedTableTableOptions = (props) => {
|
6
|
+
const columnDefinitions = [
|
7
|
+
{
|
8
|
+
accessor: "year",
|
9
|
+
label: "Year",
|
10
|
+
cellAccessors: ["quarter", "month", "day"],
|
11
|
+
},
|
12
|
+
{
|
13
|
+
accessor: "newEnrollments",
|
14
|
+
label: "New Enrollments",
|
15
|
+
},
|
16
|
+
{
|
17
|
+
accessor: "scheduledMeetings",
|
18
|
+
label: "Scheduled Meetings",
|
19
|
+
},
|
20
|
+
{
|
21
|
+
accessor: "attendanceRate",
|
22
|
+
label: "Attendance Rate",
|
23
|
+
},
|
24
|
+
{
|
25
|
+
accessor: "completedClasses",
|
26
|
+
label: "Completed Classes",
|
27
|
+
},
|
28
|
+
{
|
29
|
+
accessor: "classCompletionRate",
|
30
|
+
label: "Class Completion Rate",
|
31
|
+
},
|
32
|
+
{
|
33
|
+
accessor: "graduatedStudents",
|
34
|
+
label: "Graduated Students",
|
35
|
+
},
|
36
|
+
];
|
37
|
+
|
38
|
+
const tableOptions = {
|
39
|
+
initialState: {
|
40
|
+
sorting: [
|
41
|
+
{
|
42
|
+
id: "year",
|
43
|
+
desc: true,
|
44
|
+
},
|
45
|
+
],
|
46
|
+
},
|
47
|
+
}
|
48
|
+
|
49
|
+
return (
|
50
|
+
<div>
|
51
|
+
<AdvancedTable
|
52
|
+
columnDefinitions={columnDefinitions}
|
53
|
+
tableData={MOCK_DATA}
|
54
|
+
tableOptions={tableOptions}
|
55
|
+
{...props}
|
56
|
+
/>
|
57
|
+
</div>
|
58
|
+
);
|
59
|
+
};
|
60
|
+
|
61
|
+
export default AdvancedTableTableOptions;
|
@@ -0,0 +1,3 @@
|
|
1
|
+
The Tanstack table consumes the useReactTable hook to create the table. This hook takes an object that can contain any of the functions that the Tanstack table provides. The advancedTable's optional `tableOptions` can be used to pass tanstack options to the kit.
|
2
|
+
|
3
|
+
In the above example, we are using the initialState option provided by tanstack that takes sort as one of it's values. Setting it to true for the first column is reversing the sort order on first render of the table. For a complete list of possible options and hoe to use them, see [here](https://tanstack.com/table/v8/docs/api/core/table#usereacttable--createsolidtable--usevuetable--createsveltetable)
|
@@ -0,0 +1,55 @@
|
|
1
|
+
import React from "react";
|
2
|
+
import { AdvancedTable } from "../../";
|
3
|
+
import { MOCK_DATA } from "./_mock_data";
|
4
|
+
|
5
|
+
const AdvancedTableTableProps = (props) => {
|
6
|
+
const columnDefinitions = [
|
7
|
+
{
|
8
|
+
accessor: "year",
|
9
|
+
label: "Year",
|
10
|
+
cellAccessors: ["quarter", "month", "day"],
|
11
|
+
},
|
12
|
+
{
|
13
|
+
accessor: "newEnrollments",
|
14
|
+
label: "New Enrollments",
|
15
|
+
},
|
16
|
+
{
|
17
|
+
accessor: "scheduledMeetings",
|
18
|
+
label: "Scheduled Meetings",
|
19
|
+
},
|
20
|
+
{
|
21
|
+
accessor: "attendanceRate",
|
22
|
+
label: "Attendance Rate",
|
23
|
+
},
|
24
|
+
{
|
25
|
+
accessor: "completedClasses",
|
26
|
+
label: "Completed Classes",
|
27
|
+
},
|
28
|
+
{
|
29
|
+
accessor: "classCompletionRate",
|
30
|
+
label: "Class Completion Rate",
|
31
|
+
},
|
32
|
+
{
|
33
|
+
accessor: "graduatedStudents",
|
34
|
+
label: "Graduated Students",
|
35
|
+
},
|
36
|
+
];
|
37
|
+
|
38
|
+
const tableProps = {
|
39
|
+
container: false,
|
40
|
+
sticky: true
|
41
|
+
}
|
42
|
+
|
43
|
+
return (
|
44
|
+
<div>
|
45
|
+
<AdvancedTable
|
46
|
+
columnDefinitions={columnDefinitions}
|
47
|
+
tableData={MOCK_DATA}
|
48
|
+
tableProps={tableProps}
|
49
|
+
{...props}
|
50
|
+
/>
|
51
|
+
</div>
|
52
|
+
);
|
53
|
+
};
|
54
|
+
|
55
|
+
export default AdvancedTableTableProps;
|
@@ -0,0 +1 @@
|
|
1
|
+
This kit uses the [Table kit](https://playbook.powerapp.cloud/kits/table/react) under the hood which comes with it's own set of props. If you want to apply certain Table props to that underlying kit, you can do so by using the optional `tableProps` prop. This prop must be an object that contains valid Table props. For a full list of Table props, see [here](https://playbook.powerapp.cloud/kits/table/react).
|
@@ -1,6 +1,12 @@
|
|
1
1
|
examples:
|
2
2
|
react:
|
3
|
-
- advanced_table_default: Default
|
4
|
-
-
|
5
|
-
|
6
|
-
|
3
|
+
- advanced_table_default: Default (Required Props)
|
4
|
+
- advanced_table_loading: Loading State
|
5
|
+
- advanced_table_sort: enable Sorting
|
6
|
+
- advanced_table_sort_control: Sort Control
|
7
|
+
- advanced_table_expanded_control: Expanded Control
|
8
|
+
- advanced_table_subrow_headers: SubRow Headers
|
9
|
+
- advanced_table_collapsible_trail: Collapsible Trail
|
10
|
+
- advanced_table_table_options: Table Options
|
11
|
+
- advanced_table_table_props: Table Props
|
12
|
+
|
@@ -1,2 +1,9 @@
|
|
1
1
|
export { default as AdvancedTableDefault } from './_advanced_table_default.jsx'
|
2
2
|
export { default as AdvancedTableSort } from './_advanced_table_sort.jsx'
|
3
|
+
export { default as AdvancedTableSortControl } from './_advanced_table_sort_control.jsx'
|
4
|
+
export { default as AdvancedTableLoading } from './_advanced_table_loading.jsx'
|
5
|
+
export { default as AdvancedTableExpandedControl } from './_advanced_table_expanded_control.jsx'
|
6
|
+
export { default as AdvancedTableSubrowHeaders } from './_advanced_table_subrow_headers.jsx'
|
7
|
+
export { default as AdvancedTableCollapsibleTrail } from './_advanced_table_collapsible_trail.jsx'
|
8
|
+
export { default as AdvancedTableTableOptions } from './_advanced_table_table_options.jsx'
|
9
|
+
export { default as AdvancedTableTableProps } from './_advanced_table_table_props.jsx'
|
data/lib/playbook/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: playbook_ui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 13.16.0.pre.alpha.
|
4
|
+
version: 13.16.0.pre.alpha.PBNTR178AdvancedTableDocs2072
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Power UX
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-
|
12
|
+
date: 2024-02-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: actionpack
|
@@ -287,9 +287,24 @@ files:
|
|
287
287
|
- app/pb_kits/playbook/pb_advanced_table/_advanced_table.scss
|
288
288
|
- app/pb_kits/playbook/pb_advanced_table/_advanced_table.tsx
|
289
289
|
- app/pb_kits/playbook/pb_advanced_table/advanced_table.test.jsx
|
290
|
+
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_collapsible_trail.jsx
|
291
|
+
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_collapsible_trail.md
|
290
292
|
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_default.jsx
|
291
293
|
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_default.md
|
294
|
+
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_expanded_control.jsx
|
295
|
+
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_expanded_control.md
|
296
|
+
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading.jsx
|
297
|
+
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading.md
|
292
298
|
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sort.jsx
|
299
|
+
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sort.md
|
300
|
+
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sort_control.jsx
|
301
|
+
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sort_control.md
|
302
|
+
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_subrow_headers.jsx
|
303
|
+
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_subrow_headers.md
|
304
|
+
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_options.jsx
|
305
|
+
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_options.md
|
306
|
+
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props.jsx
|
307
|
+
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props.md
|
293
308
|
- app/pb_kits/playbook/pb_advanced_table/docs/_description.md
|
294
309
|
- app/pb_kits/playbook/pb_advanced_table/docs/_mock_data.js
|
295
310
|
- app/pb_kits/playbook/pb_advanced_table/docs/example.yml
|