playbook_ui 14.18.0.pre.rc.0 → 14.18.0.pre.rc.1
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/RegularTableView.tsx +23 -3
- data/app/pb_kits/playbook/pb_advanced_table/Components/TableHeaderCell.tsx +11 -1
- data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.scss +60 -128
- data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.tsx +3 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_columns.jsx +58 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_columns.md +6 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_columns_and_header.jsx +64 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_columns_and_header.md +8 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_header.jsx +55 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_header.md +3 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_header_rails.html.erb +33 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_header_rails.md +3 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props.html.erb +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props.jsx +1 -2
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_rails.md +2 -2
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_react.md +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_sticky_header_rails.md +6 -2
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_sticky_header_react.md +6 -2
- data/app/pb_kits/playbook/pb_advanced_table/docs/example.yml +6 -2
- data/app/pb_kits/playbook/pb_advanced_table/docs/index.js +4 -1
- data/app/pb_kits/playbook/pb_advanced_table/scss_partials/advanced_table_sticky_mixin.scss +97 -0
- data/app/pb_kits/playbook/pb_form_group/_form_group.scss +18 -2
- data/app/pb_kits/playbook/pb_form_group/docs/_form_group_select.html.erb +15 -5
- data/app/pb_kits/playbook/pb_form_group/docs/_form_group_select.jsx +20 -5
- data/app/pb_kits/playbook/pb_layout/_layout.scss +70 -1
- data/app/pb_kits/playbook/pb_layout/_layout.tsx +29 -2
- data/app/pb_kits/playbook/pb_layout/docs/_layout_bracket.jsx +322 -118
- data/app/pb_kits/playbook/pb_layout/docs/_layout_bracket.md +1 -1
- data/app/pb_kits/playbook/pb_layout/subcomponents/_game.tsx +74 -43
- data/app/pb_kits/playbook/pb_layout/subcomponents/_participant.tsx +79 -0
- data/app/pb_kits/playbook/pb_layout/subcomponents/_round.tsx +21 -4
- data/app/pb_kits/playbook/pb_overlay/_overlay.scss +49 -22
- data/app/pb_kits/playbook/pb_overlay/_overlay.tsx +15 -4
- data/app/pb_kits/playbook/pb_overlay/docs/_overlay_color.jsx +63 -0
- data/app/pb_kits/playbook/pb_overlay/docs/_overlay_color.md +3 -0
- data/app/pb_kits/playbook/pb_overlay/docs/_overlay_default.md +1 -7
- data/app/pb_kits/playbook/pb_overlay/docs/_overlay_gradient_opacity.jsx +39 -0
- data/app/pb_kits/playbook/pb_overlay/docs/_overlay_gradient_opacity.md +1 -0
- data/app/pb_kits/playbook/pb_overlay/docs/_overlay_layout.jsx +40 -0
- data/app/pb_kits/playbook/pb_overlay/docs/_overlay_layout.md +5 -0
- data/app/pb_kits/playbook/pb_overlay/docs/example.yml +3 -0
- data/app/pb_kits/playbook/pb_overlay/docs/index.js +3 -0
- data/app/pb_kits/playbook/pb_overlay/overlay.test.jsx +39 -1
- data/dist/chunks/{_typeahead-C2GOKWtm.js → _typeahead-BY6AFq1l.js} +1 -1
- data/dist/chunks/_weekday_stacked-BwWArBYi.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 +20 -4
- data/dist/chunks/_weekday_stacked-CFGTPT0O.js +0 -45
@@ -1,3 +1,3 @@
|
|
1
|
-
This kit uses the [Table kit](https://playbook.powerapp.cloud/kits/table) under the hood which comes with its own set of props. If you want to apply certain Table props to that underlying kit, you can do so by using the optional `table_props` 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).
|
1
|
+
This kit uses the [Table kit](https://playbook.powerapp.cloud/kits/table/react) under the hood which comes with its own set of props. If you want to apply certain Table props to that underlying kit, you can do so by using the optional `table_props` 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).
|
2
2
|
|
3
|
-
This doc example showcases
|
3
|
+
This doc example showcases the use of two table props, including how to render the vertical borders between columns.
|
@@ -1,3 +1,3 @@
|
|
1
1
|
This kit uses the [Table kit](https://playbook.powerapp.cloud/kits/table/react) under the hood which comes with its 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).
|
2
2
|
|
3
|
-
This doc example showcases
|
3
|
+
This doc example showcases the use of two table props, including how to render the vertical borders between columns.
|
data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_sticky_header_rails.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
-
Create a sticky header that works for responsive Advanced Tables by setting `sticky: true` via `table_props` and giving the AdvancedTable a `max_height` using our [Max Height](https://playbook.powerapp.cloud/visual_guidelines/max_height) global prop.
|
1
|
+
Create a sticky header that works for responsive Advanced Tables by setting `sticky: true` via `table_props` and giving the AdvancedTable a `max_height` using our [Max Height](https://playbook.powerapp.cloud/visual_guidelines/max_height) global prop.
|
2
2
|
|
3
|
-
|
3
|
+
**NOTE**: This behavior requires a `max_height` to work. The header is sticky within the table container, allowing for it to work along with the first column stickiness of a responsive table on smaller screen sizes.
|
4
|
+
|
5
|
+
Expand the table above to see this in action.
|
6
|
+
|
7
|
+
A sticky header on a nonresponsive table is demonstrated in the ["Sticky Header"](https://playbook.powerapp.cloud/kits/advanced_table#sticky-header) doc example above.
|
data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_sticky_header_react.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
-
Create a sticky header that works for responsive Advanced Tables by setting `sticky: true` via `tableProps` and giving the AdvancedTable a `maxHeight` using our [Max Height](https://playbook.powerapp.cloud/visual_guidelines/max_height) global prop.
|
1
|
+
Create a sticky header that works for responsive Advanced Tables by setting `sticky: true` via `tableProps` and giving the AdvancedTable a `maxHeight` using our [Max Height](https://playbook.powerapp.cloud/visual_guidelines/max_height) global prop.
|
2
2
|
|
3
|
-
|
3
|
+
**NOTE**: This behavior requires a `maxHeight` to work. The header is sticky within the table container, allowing for it to work along with the first column stickiness of a responsive table on smaller screen sizes.
|
4
|
+
|
5
|
+
Expand the table above to see this in action.
|
6
|
+
|
7
|
+
A sticky header on a nonresponsive table is demonstrated in the ["Sticky Header"](https://playbook.powerapp.cloud/kits/advanced_table/react#sticky-header) doc example above.
|
@@ -5,7 +5,8 @@ examples:
|
|
5
5
|
- advanced_table_beta_subrow_headers: SubRow Headers
|
6
6
|
- advanced_table_collapsible_trail_rails: Collapsible Trail
|
7
7
|
- advanced_table_table_props: Table Props
|
8
|
-
-
|
8
|
+
- advanced_table_sticky_header_rails: Sticky Header
|
9
|
+
- advanced_table_table_props_sticky_header: Sticky Header for Responsive Table
|
9
10
|
- advanced_table_beta_sort: Enable Sorting
|
10
11
|
- advanced_table_responsive: Responsive Tables
|
11
12
|
- advanced_table_custom_cell_rails: Custom Components for Cells
|
@@ -25,7 +26,10 @@ examples:
|
|
25
26
|
- advanced_table_collapsible_trail: Collapsible Trail
|
26
27
|
- advanced_table_table_options: Table Options
|
27
28
|
- advanced_table_table_props: Table Props
|
28
|
-
-
|
29
|
+
- advanced_table_sticky_header: Sticky Header
|
30
|
+
- advanced_table_table_props_sticky_header: Sticky Header for Responsive Table
|
31
|
+
- advanced_table_sticky_columns: Sticky Columns
|
32
|
+
- advanced_table_sticky_columns_and_header: Sticky Columns with Sticky Header
|
29
33
|
- advanced_table_inline_row_loading: Inline Row Loading
|
30
34
|
- advanced_table_responsive: Responsive Tables
|
31
35
|
- advanced_table_custom_cell: Custom Components for Cells
|
@@ -22,4 +22,7 @@ export { default as AdvancedTableSelectableRowsActions } from './_advanced_table
|
|
22
22
|
export { default as AdvancedTableTablePropsStickyHeader } from './_advanced_table_table_props_sticky_header.jsx'
|
23
23
|
export { default as AdvancedTableColumnHeadersCustomCell } from './_advanced_table_column_headers_custom_cell.jsx'
|
24
24
|
export { default as AdvancedTableInlineEditing } from './_advanced_table_inline_editing.jsx'
|
25
|
-
export { default as AdvancedTableFullscreen } from './_advanced_table_fullscreen.jsx'
|
25
|
+
export { default as AdvancedTableFullscreen } from './_advanced_table_fullscreen.jsx'
|
26
|
+
export { default as AdvancedTableStickyColumns } from './_advanced_table_sticky_columns.jsx'
|
27
|
+
export { default as AdvancedTableStickyHeader } from './_advanced_table_sticky_header.jsx'
|
28
|
+
export { default as AdvancedTableStickyColumnsAndHeader } from './_advanced_table_sticky_columns_and_header.jsx'
|
@@ -0,0 +1,97 @@
|
|
1
|
+
@mixin advanced-table-sticky-mixin(
|
2
|
+
$border-color,
|
3
|
+
$bg-main,
|
4
|
+
$bg-secondary,
|
5
|
+
$highlight: $info_subtle
|
6
|
+
) {
|
7
|
+
border-radius: 4px;
|
8
|
+
box-shadow: 1px 0 0 0px $border-color, -1px 0 0 0px $border-color;
|
9
|
+
display: block;
|
10
|
+
[class^="pb_table"].table-sm.table-card thead tr th:first-child,
|
11
|
+
[class^="pb_table"].table-sm:not(.no-hover).table-card
|
12
|
+
tbody
|
13
|
+
tr
|
14
|
+
td:first-child {
|
15
|
+
border-left-width: 0px !important;
|
16
|
+
}
|
17
|
+
[class^="pb_table"].table-sm.table-card thead tr th:last-child,
|
18
|
+
[class^="pb_table"].table-sm:not(.no-hover).table-card
|
19
|
+
tbody
|
20
|
+
tr
|
21
|
+
td:last-child {
|
22
|
+
border-right-width: 0px;
|
23
|
+
}
|
24
|
+
[class^="pb_table"].table-sm.table-card tbody tr:last-child td:first-child,
|
25
|
+
[class^="pb_table"].table-sm.table-card tbody tr:last-child td:last-child {
|
26
|
+
border-radius: 0 0 0 0;
|
27
|
+
}
|
28
|
+
.table-header-cells:first-child,
|
29
|
+
td:first-child,
|
30
|
+
.pb_table_td:first-child,
|
31
|
+
.checkbox-cell.checkbox-cell-header:first-child,
|
32
|
+
.table-header-cells.sticky-left,
|
33
|
+
[class*="pinned-left"] {
|
34
|
+
background-color: $bg-main;
|
35
|
+
box-shadow: $shadow_deep !important;
|
36
|
+
position: sticky !important;
|
37
|
+
left: 0;
|
38
|
+
z-index: 2;
|
39
|
+
}
|
40
|
+
|
41
|
+
.bg-silver {
|
42
|
+
td:first-child,
|
43
|
+
.sticky-left {
|
44
|
+
background-color: $bg-secondary;
|
45
|
+
}
|
46
|
+
}
|
47
|
+
.bg-row-selection {
|
48
|
+
td:first-child,
|
49
|
+
.sticky-left {
|
50
|
+
background-color: $highlight;
|
51
|
+
}
|
52
|
+
}
|
53
|
+
|
54
|
+
.bg-white {
|
55
|
+
td:first-child,
|
56
|
+
.sticky-left {
|
57
|
+
background-color: $bg-main;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
.virtualized-table-row {
|
62
|
+
&.bg-silver td:first-child {
|
63
|
+
background-color: $bg-secondary;
|
64
|
+
}
|
65
|
+
&.bg-white td:first-child {
|
66
|
+
background-color: $bg-main;
|
67
|
+
}
|
68
|
+
&.bg-row-selection td:first-child {
|
69
|
+
background-color: $highlight;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
73
|
+
.row-selection-actions-card {
|
74
|
+
border-right-width: 0px;
|
75
|
+
border-left-width: 0px;
|
76
|
+
position: sticky;
|
77
|
+
top: 0;
|
78
|
+
left: 0;
|
79
|
+
border-radius: unset;
|
80
|
+
}
|
81
|
+
|
82
|
+
.checkbox-cell {
|
83
|
+
display: table-cell !important;
|
84
|
+
}
|
85
|
+
|
86
|
+
.sticky-header {
|
87
|
+
thead {
|
88
|
+
th:first-child {
|
89
|
+
box-shadow: 1px 0 10px -2px $border-color !important;
|
90
|
+
}
|
91
|
+
}
|
92
|
+
|
93
|
+
.pb_advanced_table_header {
|
94
|
+
box-shadow: none !important;
|
95
|
+
}
|
96
|
+
}
|
97
|
+
}
|
@@ -85,8 +85,16 @@
|
|
85
85
|
.text_input_wrapper input, [class^=pb_text_input_kit] .text_input_wrapper .text_input {
|
86
86
|
border-bottom-right-radius: 0;
|
87
87
|
border-top-right-radius: 0;
|
88
|
-
border-right-
|
88
|
+
border-right-color: transparent;
|
89
89
|
}
|
90
|
+
[class^=pb_text_input_kit] .text_input_wrapper input:focus,
|
91
|
+
[class^=pb_text_input_kit] .text_input_wrapper .text_input:focus {
|
92
|
+
border-right-color: $primary;
|
93
|
+
}
|
94
|
+
[class^=pb_text_input_kit].error .text_input_wrapper input,
|
95
|
+
[class^=pb_text_input_kit].error .text_input_wrapper .text_input {
|
96
|
+
border-right-color: $error;
|
97
|
+
}
|
90
98
|
}
|
91
99
|
|
92
100
|
& > [class^=pb_phone_number_input]:not(:first-child) {
|
@@ -107,8 +115,16 @@
|
|
107
115
|
.text_input {
|
108
116
|
border-bottom-right-radius: 0;
|
109
117
|
border-top-right-radius: 0;
|
110
|
-
border-right:
|
118
|
+
border-right-color: transparent;
|
111
119
|
}
|
120
|
+
[class^=pb_text_input_kit] .text_input_wrapper input:focus,
|
121
|
+
[class^=pb_text_input_kit] .text_input_wrapper .text_input:focus {
|
122
|
+
border-right-color: $primary;
|
123
|
+
}
|
124
|
+
[class^=pb_text_input_kit].error .text_input_wrapper input,
|
125
|
+
[class^=pb_text_input_kit].error .text_input_wrapper .text_input {
|
126
|
+
border-right-color: $error;
|
127
|
+
}
|
112
128
|
}
|
113
129
|
|
114
130
|
&[class*=rails] > [class^=pb_date_picker_kit] {
|
@@ -1,5 +1,4 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
<%= pb_rails("flex", props: {orientation: "column", row_gap:"md"}) do %>
|
3
2
|
<%= pb_rails("form_group") do %>
|
4
3
|
<%= pb_rails("text_input", props: { placeholder: "Enter Artist Name" }) %>
|
5
4
|
<%= pb_rails("select", props: {
|
@@ -17,8 +16,6 @@
|
|
17
16
|
]
|
18
17
|
}) %>
|
19
18
|
<% end %>
|
20
|
-
<br>
|
21
|
-
<br>
|
22
19
|
<%= pb_rails("form_group") do %>
|
23
20
|
<%= pb_rails("select", props: {
|
24
21
|
blank_selection: "Phone",
|
@@ -32,4 +29,17 @@
|
|
32
29
|
id: "phone"
|
33
30
|
}) %>
|
34
31
|
<% end %>
|
35
|
-
|
32
|
+
<%= pb_rails("form_group") do %>
|
33
|
+
<%= pb_rails("phone_number_input", props: {
|
34
|
+
id: "phone2"
|
35
|
+
}) %>
|
36
|
+
<%= pb_rails("select", props: {
|
37
|
+
blank_selection: "Phone",
|
38
|
+
options: [
|
39
|
+
{ value: "Cell" },
|
40
|
+
{ value: "Work" },
|
41
|
+
{ value: "Home" },
|
42
|
+
]
|
43
|
+
}) %>
|
44
|
+
<% end %>
|
45
|
+
<% end %>
|
@@ -4,6 +4,7 @@ import FormGroup from '../_form_group'
|
|
4
4
|
import PhoneNumberInput from '../../pb_phone_number_input/_phone_number_input'
|
5
5
|
import Select from '../../pb_select/_select'
|
6
6
|
import TextInput from '../../pb_text_input/_text_input'
|
7
|
+
import Flex from '../../pb_flex/_flex'
|
7
8
|
|
8
9
|
const FormGroupSelect = (props) => {
|
9
10
|
const options = [
|
@@ -25,7 +26,10 @@ const FormGroupSelect = (props) => {
|
|
25
26
|
]
|
26
27
|
|
27
28
|
return (
|
28
|
-
<
|
29
|
+
<Flex
|
30
|
+
orientation="column"
|
31
|
+
rowGap="md"
|
32
|
+
>
|
29
33
|
<FormGroup>
|
30
34
|
<TextInput
|
31
35
|
placeholder="Enter Artist Name"
|
@@ -37,18 +41,29 @@ const FormGroupSelect = (props) => {
|
|
37
41
|
{...props}
|
38
42
|
/>
|
39
43
|
</FormGroup>
|
40
|
-
<br />
|
41
|
-
<br />
|
42
44
|
<FormGroup>
|
43
45
|
<Select
|
44
46
|
blankSelection="Phone"
|
45
47
|
options={phoneOptions}
|
46
|
-
|
48
|
+
{...props}
|
49
|
+
/>
|
47
50
|
<PhoneNumberInput
|
48
51
|
id='default'
|
52
|
+
{...props}
|
49
53
|
/>
|
50
54
|
</FormGroup>
|
51
|
-
|
55
|
+
<FormGroup>
|
56
|
+
<PhoneNumberInput
|
57
|
+
id='default-2'
|
58
|
+
{...props}
|
59
|
+
/>
|
60
|
+
<Select
|
61
|
+
blankSelection="Phone"
|
62
|
+
options={phoneOptions}
|
63
|
+
{...props}
|
64
|
+
/>
|
65
|
+
</FormGroup>
|
66
|
+
</Flex>
|
52
67
|
)
|
53
68
|
}
|
54
69
|
|
@@ -210,10 +210,78 @@ $bracket-border-width: 4px;
|
|
210
210
|
border-right: $bracket-border-width solid $border_light;
|
211
211
|
}
|
212
212
|
|
213
|
+
.polygon_node {
|
214
|
+
position: absolute;
|
215
|
+
top: calc(50% - 5px);
|
216
|
+
right: -10px;
|
217
|
+
|
218
|
+
width: 0;
|
219
|
+
height: 0;
|
220
|
+
border-top: 5px solid transparent;
|
221
|
+
border-bottom: 5px solid transparent;
|
222
|
+
border-left: 10px solid $border_light;
|
223
|
+
}
|
224
|
+
|
213
225
|
.layout_round_label {
|
214
226
|
display: none;
|
215
227
|
}
|
216
228
|
|
229
|
+
.layout_participant,
|
230
|
+
.layout_participant_winner,
|
231
|
+
.layout_participant_self,
|
232
|
+
.layout_participant_winner_self,
|
233
|
+
.layout_participant_winner_self_last {
|
234
|
+
height: 60px;
|
235
|
+
}
|
236
|
+
|
237
|
+
.layout_tbd {
|
238
|
+
height: 140px;
|
239
|
+
display: flex;
|
240
|
+
flex-direction: column;
|
241
|
+
justify-content: center;
|
242
|
+
}
|
243
|
+
|
244
|
+
.layout_participant_winner,
|
245
|
+
.layout_participant_self,
|
246
|
+
.layout_participant_winner_self,
|
247
|
+
.layout_participant_winner_self_last {
|
248
|
+
position: relative;
|
249
|
+
|
250
|
+
&::after {
|
251
|
+
content: "";
|
252
|
+
position: absolute;
|
253
|
+
top: 0;
|
254
|
+
width: 4px;
|
255
|
+
height: 100%;
|
256
|
+
}
|
257
|
+
}
|
258
|
+
|
259
|
+
.layout_participant_winner::after {
|
260
|
+
right: 0;
|
261
|
+
background: $product_6_highlight;
|
262
|
+
}
|
263
|
+
|
264
|
+
.layout_participant_self::after {
|
265
|
+
left: 0;
|
266
|
+
background: $category_1;
|
267
|
+
}
|
268
|
+
|
269
|
+
.layout_participant_winner_self::after {
|
270
|
+
right: 0;
|
271
|
+
background: $product_6_highlight;
|
272
|
+
}
|
273
|
+
|
274
|
+
.layout_participant_winner_self_last::after {
|
275
|
+
left: 0;
|
276
|
+
background: $category_1;
|
277
|
+
}
|
278
|
+
|
279
|
+
.game_separator {
|
280
|
+
&::before, &::after {
|
281
|
+
height: 2px;
|
282
|
+
}
|
283
|
+
}
|
284
|
+
|
217
285
|
@media (max-width: $screen-md-max) {
|
218
286
|
flex-direction: column;
|
219
287
|
.layout_round_label {
|
@@ -221,7 +289,8 @@ $bracket-border-width: 4px;
|
|
221
289
|
}
|
222
290
|
.layout_round .layout_game::after,
|
223
291
|
.connector_container,
|
224
|
-
.half_box
|
292
|
+
.half_box,
|
293
|
+
.polygon_node {
|
225
294
|
display: none !important;
|
226
295
|
}
|
227
296
|
}
|
@@ -6,6 +6,7 @@ import { GlobalProps, globalProps, globalInlineProps } from '../utilities/global
|
|
6
6
|
|
7
7
|
import { Round, RoundLabel } from "./subcomponents/_round";
|
8
8
|
import Game from "./subcomponents/_game";
|
9
|
+
import Participant from "./subcomponents/_participant";
|
9
10
|
|
10
11
|
type LayoutPropTypes = {
|
11
12
|
aria?: {[key: string]: string},
|
@@ -176,13 +177,38 @@ const Layout = (props: LayoutPropTypes) => {
|
|
176
177
|
(child: React.ReactElement & {type: {displayName: string}}) => child.type?.displayName !== 'Side'
|
177
178
|
)
|
178
179
|
|
179
|
-
const numberOfRounds = Array.isArray(
|
180
|
+
const numberOfRounds = Array.isArray(children) ? React.Children.toArray(children).filter(
|
180
181
|
(child) => {
|
181
182
|
return (child as React.ReactElement).type === Layout.Round;
|
182
183
|
}
|
183
184
|
).length : 0
|
185
|
+
|
186
|
+
const lastRoundWithSelf = React.Children.toArray(children).filter((child) => {
|
187
|
+
if ((child as React.ReactElement).type !== Layout.Round) {
|
188
|
+
return false
|
189
|
+
}
|
190
|
+
|
191
|
+
const roundElement = child as React.ReactElement
|
192
|
+
|
193
|
+
const gameChildren = React.Children.toArray(roundElement.props.children)
|
194
|
+
|
195
|
+
const hasWinningSelfParticipant = gameChildren.some((gameChild) => {
|
196
|
+
const gameElement = gameChild as React.ReactElement
|
197
|
+
|
198
|
+
const participantChildren = React.Children.toArray(gameElement.props.children)
|
199
|
+
|
200
|
+
return participantChildren.some((participantChild) => {
|
201
|
+
const participantElement = participantChild as React.ReactElement
|
202
|
+
const { self } = participantElement.props
|
203
|
+
return self === true
|
204
|
+
})
|
205
|
+
})
|
206
|
+
|
207
|
+
return hasWinningSelfParticipant
|
208
|
+
}).length
|
209
|
+
|
184
210
|
const bracketChildren = nonSideChildren.map(child =>
|
185
|
-
React.isValidElement(child) ? React.cloneElement(child, { numberOfRounds }) : child
|
211
|
+
React.isValidElement(child) ? React.cloneElement(child, { numberOfRounds, lastRoundWithSelf }) : child
|
186
212
|
)
|
187
213
|
|
188
214
|
const filteredProps = {...props}
|
@@ -219,5 +245,6 @@ Layout.Footer = Footer
|
|
219
245
|
Layout.Round = Round
|
220
246
|
Layout.Game = Game
|
221
247
|
Layout.RoundLabel = RoundLabel
|
248
|
+
Layout.Participant = Participant
|
222
249
|
|
223
250
|
export default Layout
|