playbook_ui 14.21.2.pre.alpha.PLAY21318324 → 14.21.2.pre.alpha.PLAY22358326
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_advanced_table/Components/CustomCell.tsx +1 -4
- data/app/pb_kits/playbook/pb_advanced_table/Components/RegularTableView.tsx +0 -8
- data/app/pb_kits/playbook/pb_advanced_table/Components/VirtualizedTableView.tsx +36 -16
- data/app/pb_kits/playbook/pb_advanced_table/Context/AdvancedTableContext.tsx +18 -5
- data/app/pb_kits/playbook/pb_advanced_table/Hooks/useTableActions.ts +37 -17
- data/app/pb_kits/playbook/pb_advanced_table/Hooks/useTableState.ts +27 -8
- data/app/pb_kits/playbook/pb_advanced_table/SubKits/TableBody.tsx +3 -0
- data/app/pb_kits/playbook/pb_advanced_table/SubKits/TableHeader.tsx +91 -40
- data/app/pb_kits/playbook/pb_advanced_table/Utilities/CellRendererUtils.tsx +1 -4
- data/app/pb_kits/playbook/pb_advanced_table/Utilities/TableContainerStyles.ts +3 -2
- data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.scss +32 -4
- data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.tsx +32 -22
- data/app/pb_kits/playbook/pb_advanced_table/advanced_table.test.jsx +10 -15
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_infinite_scroll.md +3 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pinned_rows.jsx +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pinned_rows_react.md +5 -3
- data/app/pb_kits/playbook/pb_advanced_table/docs/example.yml +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/index.js +1 -1
- data/app/pb_kits/playbook/pb_filter/Filter/FilterSection.tsx +49 -0
- data/app/pb_kits/playbook/pb_filter/Filter/FilterSidebar.tsx +69 -0
- data/app/pb_kits/playbook/pb_filter/Filter/index.tsx +13 -0
- data/app/pb_kits/playbook/pb_filter/_filter.scss +4 -0
- data/app/pb_kits/playbook/pb_filter/docs/_filter_sidebar.jsx +224 -0
- data/app/pb_kits/playbook/pb_filter/docs/example.yml +1 -0
- data/app/pb_kits/playbook/pb_filter/docs/index.js +1 -0
- data/dist/chunks/{_typeahead-CoOpeYom.js → _typeahead-CVIBi3oA.js} +2 -2
- data/dist/chunks/_weekday_stacked-BknM0ZnU.js +45 -0
- data/dist/chunks/vendor.js +1 -1
- data/dist/playbook-doc.js +1 -1
- data/dist/playbook-rails-react-bindings.js +1 -1
- data/dist/playbook-rails.js +1 -1
- data/dist/playbook.css +1 -1
- data/lib/playbook/version.rb +1 -1
- metadata +7 -5
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_row_styling.jsx +0 -64
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_row_styling.md +0 -7
- data/dist/chunks/_weekday_stacked-BPs62iuT.js +0 -45
@@ -63,11 +63,30 @@
|
|
63
63
|
width: 100%;
|
64
64
|
}
|
65
65
|
|
66
|
-
// Virtualized
|
66
|
+
// Virtualized Table and Rows for Infinite Scroll
|
67
|
+
scrollbar-gutter: stable right-edges;
|
68
|
+
.virtualized-header-row-header {
|
69
|
+
width: 100% !important;
|
70
|
+
.table-header-cells:first-child {
|
71
|
+
min-width: 180px;
|
72
|
+
}
|
73
|
+
}
|
74
|
+
|
75
|
+
.virtualized-footer {
|
76
|
+
width: 100% !important;
|
77
|
+
td {
|
78
|
+
border-bottom-left-radius: 4px !important;
|
79
|
+
border-bottom-right-radius: 4px !important;
|
80
|
+
display: flex;
|
81
|
+
justify-content: center;
|
82
|
+
align-items: center;
|
83
|
+
}
|
84
|
+
}
|
85
|
+
|
67
86
|
.virtualized-table-row {
|
68
87
|
display: table !important;
|
69
88
|
table-layout: fixed !important;
|
70
|
-
|
89
|
+
box-sizing: border-box !important;
|
71
90
|
|
72
91
|
td {
|
73
92
|
display: table-cell !important;
|
@@ -104,7 +123,7 @@
|
|
104
123
|
|
105
124
|
-ms-overflow-style: none !important;
|
106
125
|
scrollbar-width: none !important;
|
107
|
-
|
126
|
+
}
|
108
127
|
|
109
128
|
|
110
129
|
.row-selection-actions-card {
|
@@ -193,7 +212,6 @@
|
|
193
212
|
|
194
213
|
// Fix virtualized row borders
|
195
214
|
tr.virtualized-table-row {
|
196
|
-
border-bottom: 1px solid $border_light;
|
197
215
|
|
198
216
|
&.bg-silver {
|
199
217
|
td:first-child {
|
@@ -606,6 +624,16 @@
|
|
606
624
|
td.sticky-left {
|
607
625
|
border-right: 1px solid $border_light !important;
|
608
626
|
}
|
627
|
+
// Virtualized Table in Responsive Styles
|
628
|
+
.virtualized-header,
|
629
|
+
.virtualized-header-row-header,
|
630
|
+
.virtualized-table-row,
|
631
|
+
.virtualized-footer {
|
632
|
+
border-right: 1px solid $border_light !important;
|
633
|
+
.table-header-cells:first-child {
|
634
|
+
box-shadow: 0 0 10px 0 rgba($shadow, 0.16) !important;
|
635
|
+
}
|
636
|
+
}
|
609
637
|
}
|
610
638
|
}
|
611
639
|
}
|
@@ -57,7 +57,6 @@ type AdvancedTableProps = {
|
|
57
57
|
onChange?: (value: RowPinningState) => void;
|
58
58
|
};
|
59
59
|
responsive?: "scroll" | "none",
|
60
|
-
rowStyling?: GenericObject[],
|
61
60
|
scrollBarNone?: boolean,
|
62
61
|
selectableRows?: boolean,
|
63
62
|
showActionsBar?: boolean,
|
@@ -99,7 +98,6 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
99
98
|
paginationProps,
|
100
99
|
pinnedRows,
|
101
100
|
responsive = "scroll",
|
102
|
-
rowStyling,
|
103
101
|
scrollBarNone= false,
|
104
102
|
showActionsBar = true,
|
105
103
|
selectableRows,
|
@@ -146,7 +144,6 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
146
144
|
onRowSelectionChange,
|
147
145
|
columnVisibilityControl,
|
148
146
|
pinnedRows,
|
149
|
-
rowStyling
|
150
147
|
});
|
151
148
|
|
152
149
|
// Initialize table actions
|
@@ -269,6 +266,29 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
269
266
|
// Visibility flag for action bar
|
270
267
|
const isActionBarVisible = (selectableRows && showActionsBar && selectedRowsLength > 0) || columnVisibilityControl;
|
271
268
|
|
269
|
+
// The actual Main <Table /> element
|
270
|
+
const tableElement = (
|
271
|
+
<Table
|
272
|
+
className={`${loading ? "content-loading" : ""}`}
|
273
|
+
dark={dark}
|
274
|
+
dataTable
|
275
|
+
numberSpacing="tabular"
|
276
|
+
responsive="none"
|
277
|
+
{...tableProps}
|
278
|
+
>
|
279
|
+
{children ? (
|
280
|
+
children
|
281
|
+
) : (
|
282
|
+
<>
|
283
|
+
<TableHeader />
|
284
|
+
<TableBody
|
285
|
+
isFetching={isFetching}
|
286
|
+
/>
|
287
|
+
</>
|
288
|
+
)}
|
289
|
+
</Table>
|
290
|
+
)
|
291
|
+
|
272
292
|
return (
|
273
293
|
<>
|
274
294
|
{/* Top Pagination */}
|
@@ -316,7 +336,6 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
316
336
|
onExpandByDepthClick={onExpandByDepthClick}
|
317
337
|
pinnedRows={pinnedRows}
|
318
338
|
responsive={responsive}
|
319
|
-
rowStyling={rowStyling}
|
320
339
|
selectableRows={selectableRows}
|
321
340
|
setExpanded={setExpanded}
|
322
341
|
showActionsBar={showActionsBar}
|
@@ -326,6 +345,7 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
326
345
|
table={table}
|
327
346
|
tableContainerRef={tableWrapperRef}
|
328
347
|
toggleExpansionIcon={toggleExpansionIcon}
|
348
|
+
totalAvailableCount={fullData.length}
|
329
349
|
virtualizedRows={virtualizedRows}
|
330
350
|
>
|
331
351
|
<React.Fragment>
|
@@ -337,24 +357,14 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
337
357
|
type={columnVisibilityControl ? "column-visibility" : "row-selection"}
|
338
358
|
/>
|
339
359
|
|
340
|
-
{/*
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
>
|
349
|
-
{children ? (
|
350
|
-
children
|
351
|
-
) : (
|
352
|
-
<>
|
353
|
-
<TableHeader />
|
354
|
-
<TableBody />
|
355
|
-
</>
|
356
|
-
)}
|
357
|
-
</Table>
|
360
|
+
{/* Virtualized wrapper div only if virtualizedRows is true */}
|
361
|
+
{virtualizedRows ? (
|
362
|
+
<div style={{ overflow: 'auto', width: '100%' }}>
|
363
|
+
{tableElement}
|
364
|
+
</div>
|
365
|
+
) : (
|
366
|
+
tableElement
|
367
|
+
)}
|
358
368
|
</React.Fragment>
|
359
369
|
</AdvancedTableProvider>
|
360
370
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import React, {useState} from "react"
|
2
2
|
import { render, screen, waitFor } from "../utilities/test-utils"
|
3
3
|
|
4
|
-
import { AdvancedTable, Pill
|
4
|
+
import { AdvancedTable, Pill } from "playbook-ui"
|
5
5
|
|
6
6
|
global.ResizeObserver = class {
|
7
7
|
observe() {}
|
@@ -634,26 +634,21 @@ test("columnStyling.cellAlignment sets each <td> align attribute as expected", (
|
|
634
634
|
expect(firstEnrollmentCell).toHaveAttribute("align", "left");
|
635
635
|
});
|
636
636
|
|
637
|
-
test("
|
638
|
-
const rowStyling = [
|
639
|
-
{
|
640
|
-
rowId: "1",
|
641
|
-
backgroundColor: colors.white,
|
642
|
-
fontColor: colors.black
|
643
|
-
},
|
644
|
-
];
|
645
|
-
|
637
|
+
test("renders virtualized table rows and header", () => {
|
646
638
|
render(
|
647
639
|
<AdvancedTable
|
648
640
|
columnDefinitions={columnDefinitions}
|
649
641
|
data={{ testid: testId }}
|
650
|
-
rowStyling={rowStyling}
|
651
642
|
tableData={MOCK_DATA_WITH_ID}
|
643
|
+
virtualizedRows
|
652
644
|
/>
|
653
645
|
)
|
654
646
|
|
655
647
|
const kit = screen.getByTestId(testId)
|
656
|
-
|
657
|
-
const
|
658
|
-
expect(
|
659
|
-
|
648
|
+
|
649
|
+
const virtualizedHeader = kit.querySelector('.virtualized-header-row-header')
|
650
|
+
expect(virtualizedHeader).toBeInTheDocument()
|
651
|
+
|
652
|
+
const virtualizedRows = kit.querySelectorAll('.virtualized-table-row')
|
653
|
+
expect(virtualizedRows.length).toBeLessThan(MOCK_DATA_WITH_ID.length)
|
654
|
+
})
|
@@ -0,0 +1,3 @@
|
|
1
|
+
The `virtualizedRows` boolean prop enables the rendering of a virtualized table using [Tanstack's Virtualizer Library](https://tanstack.com/virtual/v3/docs/api/virtualizer) with infinite scroll capabilities for large data sets.
|
2
|
+
|
3
|
+
**Note:** Not all Advanced Table props work perfectly with the Virtualized Table - for complex table configurations with many added features or controls consider using the [Pagination](https://playbook.powerapp.cloud/kits/advanced_table/react#pagination) version instead. Additionally, it is a known issue that due to the use of absolute positioning for the virtualized header, it does not render in Safari.
|
@@ -1,5 +1,7 @@
|
|
1
|
-
Use the `pinnedRows` prop to pin specific rows to the top of an Advanced Table. Pinned rows will remain at the top when scrolling through table data and
|
1
|
+
Use the `pinnedRows` prop to pin specific rows to the top of an Advanced Table. Pinned rows will remain at the top when scrolling through table data and will not change position if sorting is used.
|
2
2
|
|
3
|
-
**NOTE:**
|
3
|
+
**NOTE:**
|
4
4
|
- Sticky header required: Pinned rows must be used with `sticky: true` via `tableProps` (works with both responsive and non-responsive tables)
|
5
|
-
- Row ids required:
|
5
|
+
- Row ids required: Each object within the `tableData` Array must contain a unique id in order to attach an id to all Rows for this to function.
|
6
|
+
- `pinnedRows` takes an array of row ids to the `top` property as shown in the code snippet below.
|
7
|
+
- For expandable rows, use the parent id in `pinnedRows`, all its children will automatically be pinned with it. If id for a child is passed in without parent being pinned, nothing will be pinned.
|
@@ -59,6 +59,6 @@ examples:
|
|
59
59
|
- advanced_table_column_visibility_multi: Column Visibility Control with Multi-Header Columns
|
60
60
|
- advanced_table_pinned_rows: Pinned Rows
|
61
61
|
- advanced_table_scrollbar_none: Advanced Table Scrollbar None
|
62
|
-
- advanced_table_row_styling: Row Styling
|
63
62
|
- advanced_table_column_styling: Column Styling
|
64
63
|
- advanced_table_column_styling_column_headers: Column Styling with Multiple Headers
|
64
|
+
- advanced_table_infinite_scroll: Infinite Scroll
|
@@ -34,6 +34,6 @@ export { default as AdvancedTableColumnVisibilityMulti } from './_advanced_table
|
|
34
34
|
export { default as AdvancedTableColumnVisibilityWithState } from './_advanced_table_column_visibility_with_state.jsx'
|
35
35
|
export { default as AdvancedTablePinnedRows } from './_advanced_table_pinned_rows.jsx'
|
36
36
|
export { default as AdvancedTableScrollbarNone} from './_advanced_table_scrollbar_none.jsx'
|
37
|
-
export { default as AdvancedTableRowStyling } from './_advanced_table_row_styling.jsx'
|
38
37
|
export { default as AdvancedTableColumnStyling } from './_advanced_table_column_styling.jsx'
|
39
38
|
export { default as AdvancedTableColumnStylingColumnHeaders } from './_advanced_table_column_styling_column_headers.jsx'
|
39
|
+
export { default as AdvancedTableInfiniteScroll} from './_advanced_table_infinite_scroll.jsx'
|
@@ -0,0 +1,49 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
|
3
|
+
import Collapsible from '../../pb_collapsible/_collapsible'
|
4
|
+
import Caption from '../../pb_caption/_caption'
|
5
|
+
import Body from '../../pb_body/_body'
|
6
|
+
|
7
|
+
type FilterSectionProps = {
|
8
|
+
children?: React.ReactChild[] | React.ReactChild,
|
9
|
+
collapsible?: boolean,
|
10
|
+
collapsed?: boolean,
|
11
|
+
headerText?: string,
|
12
|
+
}
|
13
|
+
const FilterSection = ({ children, collapsible = false, collapsed = true, headerText, }: FilterSectionProps): React.ReactElement => {
|
14
|
+
if (collapsible) {
|
15
|
+
return (
|
16
|
+
<Collapsible
|
17
|
+
collapsed={collapsed}
|
18
|
+
padding="none"
|
19
|
+
>
|
20
|
+
<Collapsible.Main
|
21
|
+
paddingX="sm"
|
22
|
+
paddingY="xs"
|
23
|
+
>
|
24
|
+
<Caption>{ headerText }</Caption>
|
25
|
+
</Collapsible.Main>
|
26
|
+
<Collapsible.Content
|
27
|
+
className="filter_section_collapsible"
|
28
|
+
paddingX="sm"
|
29
|
+
>
|
30
|
+
{ children }
|
31
|
+
</Collapsible.Content>
|
32
|
+
</Collapsible>
|
33
|
+
)
|
34
|
+
}
|
35
|
+
|
36
|
+
return (
|
37
|
+
<Body
|
38
|
+
paddingTop="xs"
|
39
|
+
paddingX="sm"
|
40
|
+
>
|
41
|
+
<>
|
42
|
+
{headerText && <Caption marginBottom="sm">{ headerText }</Caption>}
|
43
|
+
{ children }
|
44
|
+
</>
|
45
|
+
</Body>
|
46
|
+
)
|
47
|
+
}
|
48
|
+
|
49
|
+
export default FilterSection
|
@@ -0,0 +1,69 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
|
3
|
+
import { FilterDescription } from './CurrentFilters'
|
4
|
+
import FilterBackground, { FilterBackgroundProps } from './FilterBackground'
|
5
|
+
import ResultsCount from './ResultsCount'
|
6
|
+
|
7
|
+
import Flex from '../../pb_flex/_flex'
|
8
|
+
import SectionSeparator from '../../pb_section_separator/_section_separator'
|
9
|
+
import Card from '../../pb_card/_card'
|
10
|
+
import Caption from '../../pb_caption/_caption'
|
11
|
+
|
12
|
+
export type FilterSidebarProps = {
|
13
|
+
children?: React.ReactChild[] | React.ReactChild,
|
14
|
+
filters?: FilterDescription,
|
15
|
+
results?: number,
|
16
|
+
} & FilterBackgroundProps
|
17
|
+
|
18
|
+
const FilterSidebar = ({
|
19
|
+
onCollapse,
|
20
|
+
onSortChange,
|
21
|
+
sortOptions,
|
22
|
+
sortValue,
|
23
|
+
filters,
|
24
|
+
results,
|
25
|
+
children,
|
26
|
+
dark,
|
27
|
+
isCollapsed,
|
28
|
+
maxHeight,
|
29
|
+
minWidth,
|
30
|
+
placement,
|
31
|
+
popoverProps,
|
32
|
+
...bgProps
|
33
|
+
}: FilterSidebarProps): React.ReactElement => (
|
34
|
+
<FilterBackground
|
35
|
+
dark={dark}
|
36
|
+
{...bgProps}
|
37
|
+
>
|
38
|
+
<Card.Body
|
39
|
+
paddingX="sm"
|
40
|
+
paddingY="xs"
|
41
|
+
>
|
42
|
+
<Flex
|
43
|
+
align="center"
|
44
|
+
justify="between"
|
45
|
+
orientation="row"
|
46
|
+
>
|
47
|
+
<ResultsCount
|
48
|
+
dark={dark}
|
49
|
+
results={results}
|
50
|
+
title
|
51
|
+
/>
|
52
|
+
<div onClick={onCollapse}>
|
53
|
+
<Caption
|
54
|
+
color="link"
|
55
|
+
cursor="pointer"
|
56
|
+
size="xs"
|
57
|
+
text={isCollapsed ? "Expand All" : "Collapse All"}
|
58
|
+
/>
|
59
|
+
</div>
|
60
|
+
</Flex>
|
61
|
+
</Card.Body>
|
62
|
+
<SectionSeparator dark={dark} />
|
63
|
+
<>
|
64
|
+
{ children }
|
65
|
+
</>
|
66
|
+
</FilterBackground>
|
67
|
+
)
|
68
|
+
|
69
|
+
export default FilterSidebar
|
@@ -1,18 +1,29 @@
|
|
1
1
|
import React from 'react'
|
2
2
|
import FilterSingle, { FilterSingleProps } from './FilterSingle'
|
3
3
|
import FilterDouble, { FilterDoubleProps } from './FilterDouble'
|
4
|
+
import FilterSidebar, { FilterSidebarProps } from './FilterSidebar'
|
5
|
+
import FilterSection from './FilterSection'
|
4
6
|
|
5
7
|
type FilterProps =
|
6
8
|
| FilterSingleProps
|
7
9
|
| (FilterDoubleProps & {
|
8
10
|
double?: boolean,
|
9
11
|
})
|
12
|
+
| (FilterSidebarProps & {
|
13
|
+
variant?: null | 'sidebar',
|
14
|
+
})
|
10
15
|
|
11
16
|
const Filter = ({
|
12
17
|
double = false,
|
18
|
+
variant,
|
13
19
|
...templateProps
|
14
20
|
}: FilterProps): React.ReactElement => {
|
15
21
|
const displayFilter = () => {
|
22
|
+
if (variant === 'sidebar') {
|
23
|
+
return (
|
24
|
+
<FilterSidebar {...templateProps} />
|
25
|
+
)
|
26
|
+
}
|
16
27
|
if (double === true) {
|
17
28
|
return (
|
18
29
|
<FilterDouble {...templateProps} />
|
@@ -30,4 +41,6 @@ const Filter = ({
|
|
30
41
|
)
|
31
42
|
}
|
32
43
|
|
44
|
+
Filter.Section = FilterSection
|
45
|
+
|
33
46
|
export default Filter
|
@@ -0,0 +1,224 @@
|
|
1
|
+
import React, { useState } from 'react'
|
2
|
+
|
3
|
+
import Filter from '../../pb_filter/_filter'
|
4
|
+
import Select from '../../pb_select/_select'
|
5
|
+
import TextInput from '../../pb_text_input/_text_input'
|
6
|
+
import useCollapsible from '../../pb_collapsible/useCollapsible'
|
7
|
+
import SectionSeparator from '../../pb_section_separator/_section_separator'
|
8
|
+
import Checkbox from '../../pb_checkbox/_checkbox'
|
9
|
+
import Flex from '../../pb_flex/_flex'
|
10
|
+
import Table from '../../pb_table/_table'
|
11
|
+
import Caption from '../../pb_caption/_caption'
|
12
|
+
import Icon from '../../pb_icon/_icon'
|
13
|
+
|
14
|
+
const people = [
|
15
|
+
{ name: 'Hera Syndulla', territory: 'A galaxy far far away, like really far away...', products: ['Insulation'] },
|
16
|
+
{ name: 'Kanan Jarrus', territory: 'USA', products: ['Siding', 'Roofing', 'Gutters'] },
|
17
|
+
{ name: 'C1-10P', territory: 'USA', products: ['Roofing'] },
|
18
|
+
{ name: 'Anakin Skywalker', territory: 'A galaxy far far away, like really far away...', products: ['Doors', 'Windows', 'Solar'] },
|
19
|
+
{ name: 'Leia Organa', territory: 'Canada', products: ['Windows', 'Doors'] },
|
20
|
+
{ name: 'Luke Skywalker', territory: 'Brazil', products: ['Solar', 'Roofing'] },
|
21
|
+
{ name: 'Padmé Amidala', territory: 'Philippines', products: ['Siding', 'Gutters'] },
|
22
|
+
{ name: 'Obi-Wan Kenobi', territory: 'USA', products: ['Windows', 'Siding'] },
|
23
|
+
{ name: 'Ahsoka Tano', territory: 'Canada', products: ['Insulation', 'Solar'] },
|
24
|
+
{ name: 'Boba Fett', territory: 'Brazil', products: ['Roofing', 'Gutters'] },
|
25
|
+
{ name: 'Mace Windu', territory: 'Philippines', products: ['Doors', 'Siding'] },
|
26
|
+
{ name: 'Grogu', territory: 'A galaxy far far away, like really far away...', products: ['Insulation'] },
|
27
|
+
{ name: 'Sabine Wren', territory: 'Canada', products: ['Solar', 'Doors'] },
|
28
|
+
{ name: 'C-3PO', territory: 'Brazil', products: ['Windows'] },
|
29
|
+
{ name: 'R2-D2', territory: 'Philippines', products: ['Doors', 'Gutters'] },
|
30
|
+
]
|
31
|
+
|
32
|
+
const FilterSidebar = (props) => {
|
33
|
+
const [name, setName] = useState('')
|
34
|
+
const [ territory, setTerritory ] = useState('')
|
35
|
+
const [ products, setProducts ] = useState({})
|
36
|
+
const handleUpdateName = ({ target }) => {
|
37
|
+
setName(target.value)
|
38
|
+
}
|
39
|
+
const handleUpdateTerritory = ({ target }) => {
|
40
|
+
setTerritory(target.value)
|
41
|
+
}
|
42
|
+
const handleCheckboxChange = ({ target }) => {
|
43
|
+
setProducts(prev => ({
|
44
|
+
...prev,
|
45
|
+
[target.name]: !prev[target.name],
|
46
|
+
}))
|
47
|
+
}
|
48
|
+
const [isCollapsed, setIsCollapsed] = useCollapsible(true)
|
49
|
+
const [isProductsCollapsed, setIsProductsCollapsed] = useCollapsible(true)
|
50
|
+
const options = [
|
51
|
+
{ value: 'USA' },
|
52
|
+
{ value: 'Canada' },
|
53
|
+
{ value: 'Brazil' },
|
54
|
+
{ value: 'Philippines' },
|
55
|
+
{ value: 'A galaxy far far away, like really far away...' },
|
56
|
+
]
|
57
|
+
|
58
|
+
const filteredPeople = people.filter((person) => {
|
59
|
+
const matchesName = person.name.toLowerCase().includes(name.toLowerCase())
|
60
|
+
|
61
|
+
const matchesTerritory = territory === '' ? true : person.territory === territory
|
62
|
+
|
63
|
+
const matchesProducts = Object.values(products).every((product) => !product) ? true : person.products.some(product => products[product])
|
64
|
+
|
65
|
+
return matchesName && matchesTerritory && matchesProducts
|
66
|
+
})
|
67
|
+
|
68
|
+
return (
|
69
|
+
<>
|
70
|
+
<Flex>
|
71
|
+
<Filter
|
72
|
+
isCollapsed={isCollapsed}
|
73
|
+
marginRight="xs"
|
74
|
+
onCollapse={() => setIsCollapsed(!isCollapsed)}
|
75
|
+
results={filteredPeople.length}
|
76
|
+
sortOptions={{
|
77
|
+
popularity: 'Popularity',
|
78
|
+
// eslint-disable-next-line
|
79
|
+
manager_title: 'Manager\'s Title',
|
80
|
+
// eslint-disable-next-line
|
81
|
+
manager_name: 'Manager\'s Name',
|
82
|
+
}}
|
83
|
+
sortValue={[{ name: 'popularity', dir: 'desc' }]}
|
84
|
+
variant="sidebar"
|
85
|
+
width="xs"
|
86
|
+
{...props}
|
87
|
+
>
|
88
|
+
<Filter.Section
|
89
|
+
collapsed={isCollapsed}
|
90
|
+
headerText="Full Name"
|
91
|
+
>
|
92
|
+
<TextInput
|
93
|
+
onChange={handleUpdateName}
|
94
|
+
placeholder="Enter name"
|
95
|
+
value={name}
|
96
|
+
{...props}
|
97
|
+
/>
|
98
|
+
</Filter.Section>
|
99
|
+
<SectionSeparator />
|
100
|
+
<Filter.Section
|
101
|
+
collapsed={isCollapsed}
|
102
|
+
collapsible
|
103
|
+
headerText="Territory"
|
104
|
+
>
|
105
|
+
<Select
|
106
|
+
blankSelection="Select One..."
|
107
|
+
name="location"
|
108
|
+
onChange={handleUpdateTerritory}
|
109
|
+
options={options}
|
110
|
+
{...props}
|
111
|
+
/>
|
112
|
+
</Filter.Section>
|
113
|
+
<SectionSeparator />
|
114
|
+
<Filter.Section
|
115
|
+
collapsed={isCollapsed}
|
116
|
+
collapsible
|
117
|
+
headerText="Products"
|
118
|
+
>
|
119
|
+
<div>
|
120
|
+
<Checkbox
|
121
|
+
marginBottom="sm"
|
122
|
+
name="Doors"
|
123
|
+
onChange={handleCheckboxChange}
|
124
|
+
text="Doors"
|
125
|
+
/>
|
126
|
+
</div>
|
127
|
+
<div>
|
128
|
+
<Checkbox
|
129
|
+
marginBottom="sm"
|
130
|
+
name="Windows"
|
131
|
+
onChange={handleCheckboxChange}
|
132
|
+
text="Windows"
|
133
|
+
/>
|
134
|
+
</div>
|
135
|
+
<div>
|
136
|
+
<Checkbox
|
137
|
+
marginBottom="sm"
|
138
|
+
name="Siding"
|
139
|
+
onChange={handleCheckboxChange}
|
140
|
+
text="Siding"
|
141
|
+
/>
|
142
|
+
</div>
|
143
|
+
{!isProductsCollapsed &&
|
144
|
+
<>
|
145
|
+
<div>
|
146
|
+
<Checkbox
|
147
|
+
checked={products["Roofing"]}
|
148
|
+
marginBottom="sm"
|
149
|
+
name="Roofing"
|
150
|
+
onChange={handleCheckboxChange}
|
151
|
+
text="Roofing"
|
152
|
+
/>
|
153
|
+
</div>
|
154
|
+
<div>
|
155
|
+
<Checkbox
|
156
|
+
checked={products["Gutters"]}
|
157
|
+
marginBottom="sm"
|
158
|
+
name="Gutters"
|
159
|
+
onChange={handleCheckboxChange}
|
160
|
+
text="Gutters"
|
161
|
+
/>
|
162
|
+
</div>
|
163
|
+
<div>
|
164
|
+
<Checkbox
|
165
|
+
checked={products["Solar"]}
|
166
|
+
marginBottom="sm"
|
167
|
+
name="Solar"
|
168
|
+
onChange={handleCheckboxChange}
|
169
|
+
text="Solar"
|
170
|
+
/>
|
171
|
+
</div>
|
172
|
+
<div>
|
173
|
+
<Checkbox
|
174
|
+
checked={products["Insulation"]}
|
175
|
+
marginBottom="sm"
|
176
|
+
name="Insulation"
|
177
|
+
onChange={handleCheckboxChange}
|
178
|
+
text="Insulation"
|
179
|
+
/>
|
180
|
+
</div>
|
181
|
+
</>
|
182
|
+
}
|
183
|
+
<div onClick={() => setIsProductsCollapsed(!isProductsCollapsed)}>
|
184
|
+
<Flex
|
185
|
+
cursor="pointer"
|
186
|
+
marginBottom="sm"
|
187
|
+
>
|
188
|
+
<Caption
|
189
|
+
color="link"
|
190
|
+
marginRight="xxs"
|
191
|
+
size="xs"
|
192
|
+
text={isProductsCollapsed ? "Show More" : "Show Less"}
|
193
|
+
/>
|
194
|
+
<Icon
|
195
|
+
icon={isProductsCollapsed ? "chevron-down" : "chevron-up"}
|
196
|
+
/>
|
197
|
+
</Flex>
|
198
|
+
</div>
|
199
|
+
</Filter.Section>
|
200
|
+
</Filter>
|
201
|
+
<Table
|
202
|
+
size="sm"
|
203
|
+
>
|
204
|
+
<thead>
|
205
|
+
<tr>
|
206
|
+
<th>{'Name'}</th>
|
207
|
+
<th>{'Territory'}</th>
|
208
|
+
<th>{'Products'}</th>
|
209
|
+
</tr>
|
210
|
+
</thead>
|
211
|
+
<tbody>
|
212
|
+
{filteredPeople.map((person) => (<tr key={person.name}>
|
213
|
+
<td>{ person.name }</td>
|
214
|
+
<td>{ person.territory }</td>
|
215
|
+
<td>{ person.products.join(", ") }</td>
|
216
|
+
</tr>))}
|
217
|
+
</tbody>
|
218
|
+
</Table>
|
219
|
+
</Flex>
|
220
|
+
</>
|
221
|
+
)
|
222
|
+
}
|
223
|
+
|
224
|
+
export default FilterSidebar
|
@@ -8,3 +8,4 @@ export { default as FilterMaxWidth } from './_filter_max_width.jsx'
|
|
8
8
|
export { default as FilterMaxHeight } from './_filter_max_height.jsx'
|
9
9
|
export { default as FilterPlacement } from './_filter_placement.jsx'
|
10
10
|
export { default as FilterPopoverProps } from './_filter_popover_props.jsx'
|
11
|
+
export { default as FilterSidebar } from './_filter_sidebar.jsx'
|