playbook_ui 14.21.2.pre.alpha.PLAY2020sidebarfilterPOC8265 → 14.21.2.pre.alpha.PLAY2241tablestickycolumnsdatanotids8357

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.
Files changed (58) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/pb_advanced_table/Components/CustomCell.tsx +1 -1
  3. data/app/pb_kits/playbook/pb_advanced_table/Components/RegularTableView.tsx +12 -4
  4. data/app/pb_kits/playbook/pb_advanced_table/Components/TableHeaderCell.tsx +25 -5
  5. data/app/pb_kits/playbook/pb_advanced_table/Components/VirtualizedTableView.tsx +36 -16
  6. data/app/pb_kits/playbook/pb_advanced_table/Context/AdvancedTableContext.tsx +18 -5
  7. data/app/pb_kits/playbook/pb_advanced_table/Hooks/useTableActions.ts +37 -17
  8. data/app/pb_kits/playbook/pb_advanced_table/SubKits/TableBody.tsx +3 -0
  9. data/app/pb_kits/playbook/pb_advanced_table/SubKits/TableHeader.tsx +91 -40
  10. data/app/pb_kits/playbook/pb_advanced_table/Utilities/ColumnStylingHelper.ts +15 -0
  11. data/app/pb_kits/playbook/pb_advanced_table/Utilities/TableContainerStyles.ts +3 -2
  12. data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.scss +49 -4
  13. data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.tsx +32 -18
  14. data/app/pb_kits/playbook/pb_advanced_table/advanced_table.test.jsx +80 -1
  15. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta_sort.html.erb +1 -1
  16. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta_subrow_headers.html.erb +1 -1
  17. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_border_color_rails.html.erb +1 -1
  18. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling.jsx +51 -0
  19. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling.md +7 -0
  20. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers.jsx +77 -0
  21. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers.md +1 -0
  22. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers_rails.html.erb +63 -0
  23. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers_rails.md +1 -0
  24. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_rails.html.erb +38 -0
  25. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_rails.md +7 -0
  26. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_infinite_scroll.md +3 -0
  27. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading.html.erb +1 -1
  28. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_selectable_rows_actions.jsx +2 -2
  29. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_selectable_rows_actions_rails.html.erb +3 -2
  30. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_sticky_header.html.erb +1 -1
  31. data/app/pb_kits/playbook/pb_advanced_table/docs/example.yml +5 -0
  32. data/app/pb_kits/playbook/pb_advanced_table/docs/index.js +3 -0
  33. data/app/pb_kits/playbook/pb_advanced_table/index.js +21 -0
  34. data/app/pb_kits/playbook/pb_advanced_table/table_header.html.erb +1 -1
  35. data/app/pb_kits/playbook/pb_advanced_table/table_header.rb +5 -0
  36. data/app/pb_kits/playbook/pb_advanced_table/table_row.html.erb +2 -2
  37. data/app/pb_kits/playbook/pb_advanced_table/table_row.rb +33 -0
  38. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_columns.html.erb +8 -8
  39. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_columns_rails.md +1 -1
  40. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns.html.erb +12 -12
  41. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns_rails.md +2 -2
  42. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_right_columns.html.erb +12 -12
  43. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_right_columns_rails.md +2 -2
  44. data/app/pb_kits/playbook/pb_table/index.ts +4 -4
  45. data/dist/chunks/{_typeahead-CoOpeYom.js → _typeahead-BmfmVMFP.js} +3 -3
  46. data/dist/chunks/_weekday_stacked-DAC7yY_H.js +45 -0
  47. data/dist/chunks/lazysizes-B7xYodB-.js +1 -0
  48. data/dist/chunks/{lib-D7Va7yqa.js → lib-C2o6nu8G.js} +1 -1
  49. data/dist/chunks/{pb_form_validation-DSkdRDMf.js → pb_form_validation-EyK6DbAT.js} +1 -1
  50. data/dist/chunks/vendor.js +1 -1
  51. data/dist/playbook-doc.js +1 -1
  52. data/dist/playbook-rails-react-bindings.js +1 -1
  53. data/dist/playbook-rails.js +1 -1
  54. data/dist/playbook.css +1 -1
  55. data/lib/playbook/version.rb +1 -1
  56. metadata +17 -7
  57. data/dist/chunks/_weekday_stacked-BitxTXxk.js +0 -45
  58. data/dist/chunks/lazysizes-DHz07jlL.js +0 -1
@@ -98,6 +98,9 @@ module Playbook
98
98
 
99
99
  process_columns(col[:columns], rows, current_depth + 1, max_depth)
100
100
  else
101
+ raw_styling = col[:column_styling] || {}
102
+ header_alignment = raw_styling[:header_alignment]
103
+
101
104
  colspan = 1
102
105
  rows[current_depth] << {
103
106
  label: col[:label],
@@ -105,6 +108,7 @@ module Playbook
105
108
  accessor: col[:accessor],
106
109
  sort_menu: col[:sort_menu],
107
110
  is_last_in_group: is_last && current_depth.positive?,
111
+ header_alignment: header_alignment,
108
112
  }
109
113
  end
110
114
  end
@@ -137,6 +141,7 @@ module Playbook
137
141
  accessor: col[:accessor],
138
142
  label: col[:label] || "",
139
143
  sort_menu: col[:sort_menu] || nil,
144
+ column_styling: col[:column_styling] || {},
140
145
  }
141
146
  (max_depth - 1).times do
142
147
  wrapped = { label: "", columns: [wrapped] }
@@ -6,7 +6,7 @@
6
6
  <% object.column_definitions.each_with_index do |column, index| %>
7
7
  <% next unless column[:accessor].present? %>
8
8
  <%= pb_rails("table/table_cell", props: { classname:object.td_classname(column, index)}) do %>
9
- <%= pb_rails("flex", props:{ align: "center", justify: index.zero? ? "start" : "end", classname: object.loading ? "loading-cell" : "" }) do %>
9
+ <%= pb_rails("flex", props:{ align: "center", justify: object.justify_for(column, index), classname: object.loading ? "loading-cell" : "" }) do %>
10
10
  <% if collapsible_trail && index.zero? %>
11
11
  <% (1..depth).each do |i| %>
12
12
  <% additional_offset = i > 1 ? (i - 1) * 0.25 : 0 %>
@@ -34,7 +34,7 @@
34
34
  </button>
35
35
  <% end %>
36
36
  <% end %>
37
- <%= pb_rails("flex/flex_item", props:{padding_left: index.zero? && (object.row[:children].present? || has_integrated_checkbox) ? "none" : "xs"}) do %>
37
+ <%= pb_rails("flex/flex_item") do %>
38
38
  <% if column[:custom_renderer].present? %>
39
39
  <%= raw(column[:custom_renderer].call(object.row, custom_renderer_value(column, index))) %>
40
40
  <% elsif index.zero? %>
@@ -80,6 +80,20 @@ module Playbook
80
80
  end
81
81
  end
82
82
 
83
+ def justify_for(column, index)
84
+ if index.zero?
85
+ "start"
86
+ else
87
+ case cell_alignment_for(column)
88
+ when "left" then "start"
89
+ when "center" then "center"
90
+ when "right" then "end"
91
+ else
92
+ "end"
93
+ end
94
+ end
95
+ end
96
+
83
97
  private
84
98
 
85
99
  def custom_renderer_value(column, index)
@@ -103,6 +117,25 @@ module Playbook
103
117
  def subrow_depth_classname
104
118
  depth.positive? ? "depth-sub-row-#{depth}" : ""
105
119
  end
120
+
121
+ def find_column_def_by_accessor(defs, target_accessor)
122
+ defs.each do |col|
123
+ return col if col[:accessor] == target_accessor
124
+
125
+ if col[:columns].is_a?(Array)
126
+ found = find_column_def_by_accessor(col[:columns], target_accessor)
127
+ return found if found
128
+ end
129
+ end
130
+ nil
131
+ end
132
+
133
+ def cell_alignment_for(column)
134
+ return nil unless column[:accessor]
135
+
136
+ orig_def = find_column_def_by_accessor(column_definitions, column[:accessor])
137
+ orig_def[:column_styling][:cell_alignment] if orig_def && orig_def[:column_styling].is_a?(Hash)
138
+ end
106
139
  end
107
140
  end
108
141
  end
@@ -1,7 +1,7 @@
1
1
  <%= pb_rails("table", props: { size: "md", responsive: "scroll", sticky_left_column: ["a"], sticky_right_column: ["b"] }) do %>
2
2
  <thead>
3
3
  <tr>
4
- <th id="a">Column 1</th>
4
+ <th data-sticky-id="a">Column 1</th>
5
5
  <th>Column 2</th>
6
6
  <th>Column 3</th>
7
7
  <th>Column 4</th>
@@ -15,12 +15,12 @@
15
15
  <th>Column 12</th>
16
16
  <th>Column 13</th>
17
17
  <th>Column 14</th>
18
- <th id="b">Column 15</th>
18
+ <th data-sticky-id="b">Column 15</th>
19
19
  </tr>
20
20
  </thead>
21
21
  <tbody>
22
22
  <tr>
23
- <td id="a">Value 1</td>
23
+ <td data-sticky-id="a">Value 1</td>
24
24
  <td>Value 2</td>
25
25
  <td>Value 3</td>
26
26
  <td>Value 4</td>
@@ -34,10 +34,10 @@
34
34
  <td>Value 12</td>
35
35
  <td>Value 13</td>
36
36
  <td>Value 14</td>
37
- <td id="b">Value 15</td>
37
+ <td data-sticky-id="b">Value 15</td>
38
38
  </tr>
39
39
  <tr>
40
- <td id="a">Value 1</td>
40
+ <td data-sticky-id="a">Value 1</td>
41
41
  <td>Value 2</td>
42
42
  <td>Value 3</td>
43
43
  <td>Value 4</td>
@@ -51,10 +51,10 @@
51
51
  <td>Value 12</td>
52
52
  <td>Value 13</td>
53
53
  <td>Value 14</td>
54
- <td id="b">Value 15</td>
54
+ <td data-sticky-id="b">Value 15</td>
55
55
  </tr>
56
56
  <tr>
57
- <td id="a">Value 1</td>
57
+ <td data-sticky-id="a">Value 1</td>
58
58
  <td>Value 2</td>
59
59
  <td>Value 3</td>
60
60
  <td>Value 4</td>
@@ -68,7 +68,7 @@
68
68
  <td>Value 12</td>
69
69
  <td>Value 13</td>
70
70
  <td>Value 14</td>
71
- <td id="b">Value 15</td>
71
+ <td data-sticky-id="b">Value 15</td>
72
72
  </tr>
73
73
  </tbody>
74
74
  <% end %>
@@ -1,3 +1,3 @@
1
1
  The `sticky_left_column` and `sticky_right_column` props can be used together on the same table as needed.
2
2
 
3
- Please ensure that unique ids are used for all columns across multiple tables. Using the same columns ids on multiple tables can lead to issues when using props.
3
+ Please ensure that unique `data-sticky-id`s are used for all columns across multiple tables. Using the same columns `data-sticky-id`s on multiple tables can lead to issues when using props.
@@ -1,9 +1,9 @@
1
1
  <%= pb_rails("table", props: { size: "md", responsive: "scroll", sticky_left_column: ["1", "2", "3"] }) do %>
2
2
  <thead>
3
3
  <tr>
4
- <th id="1">Column 1</th>
5
- <th id="2">Column 2</th>
6
- <th id="3">Column 3</th>
4
+ <th data-sticky-id="1">Column 1</th>
5
+ <th data-sticky-id="2">Column 2</th>
6
+ <th data-sticky-id="3">Column 3</th>
7
7
  <th>Column 4</th>
8
8
  <th>Column 5</th>
9
9
  <th>Column 6</th>
@@ -20,9 +20,9 @@
20
20
  </thead>
21
21
  <tbody>
22
22
  <tr>
23
- <td id="1">Value 1</td>
24
- <td id="2">Value 2</td>
25
- <td id="3">Value 3</td>
23
+ <td data-sticky-id="1">Value 1</td>
24
+ <td data-sticky-id="2">Value 2</td>
25
+ <td data-sticky-id="3">Value 3</td>
26
26
  <td>Value 4</td>
27
27
  <td>Value 5</td>
28
28
  <td>Value 6</td>
@@ -38,9 +38,9 @@
38
38
 
39
39
  </tr>
40
40
  <tr>
41
- <td id="1">Value 1</td>
42
- <td id="2">Value 2</td>
43
- <td id="3">Value 3</td>
41
+ <td data-sticky-id="1">Value 1</td>
42
+ <td data-sticky-id="2">Value 2</td>
43
+ <td data-sticky-id="3">Value 3</td>
44
44
  <td>Value 4</td>
45
45
  <td>Value 5</td>
46
46
  <td>Value 6</td>
@@ -56,9 +56,9 @@
56
56
 
57
57
  </tr>
58
58
  <tr>
59
- <td id="1">Value 1</td>
60
- <td id="2">Value 2</td>
61
- <td id="3">Value 3</td>
59
+ <td data-sticky-id="1">Value 1</td>
60
+ <td data-sticky-id="2">Value 2</td>
61
+ <td data-sticky-id="3">Value 3</td>
62
62
  <td>Value 4</td>
63
63
  <td>Value 5</td>
64
64
  <td>Value 6</td>
@@ -1,3 +1,3 @@
1
- The `sticky_left_column` prop expects an array of the column ids you want to be sticky. Make sure to add the corresponding id to the `<th>` and `<td>`.
1
+ The `sticky_left_column` prop expects an array of the column `data-sticky-id`s you want to be sticky. Make sure to add the corresponding `data-sticky-id` to the `<th>` and `<td>`.
2
2
 
3
- Please ensure that unique ids are used for all columns across multiple tables. Using the same columns ids on multiple tables can lead to issues when using the `sticky_left_column`.
3
+ Please ensure that unique `data-sticky-id`s are used for all columns across multiple tables. Using the same columns `data-sticky-id`s on multiple tables can lead to issues when using the `sticky_left_column`.
@@ -13,9 +13,9 @@
13
13
  <th>Column 10</th>
14
14
  <th>Column 11</th>
15
15
  <th>Column 12</th>
16
- <th id="13">Column 13</th>
17
- <th id="14">Column 14</th>
18
- <th id="15">Column 15</th>
16
+ <th data-sticky-id="13">Column 13</th>
17
+ <th data-sticky-id="14">Column 14</th>
18
+ <th data-sticky-id="15">Column 15</th>
19
19
  </tr>
20
20
  </thead>
21
21
  <tbody>
@@ -32,9 +32,9 @@
32
32
  <td>Value 10</td>
33
33
  <td>Value 11</td>
34
34
  <td>Value 12</td>
35
- <td id="13">Value 13</td>
36
- <td id="14">Value 14</td>
37
- <td id="15">Value 15</td>
35
+ <td data-sticky-id="13">Value 13</td>
36
+ <td data-sticky-id="14">Value 14</td>
37
+ <td data-sticky-id="15">Value 15</td>
38
38
  </tr>
39
39
  <tr>
40
40
  <td>Value 1</td>
@@ -49,9 +49,9 @@
49
49
  <td>Value 10</td>
50
50
  <td>Value 11</td>
51
51
  <td>Value 12</td>
52
- <td id="13">Value 13</td>
53
- <td id="14">Value 14</td>
54
- <td id="15">Value 15</td>
52
+ <td data-sticky-id="13">Value 13</td>
53
+ <td data-sticky-id="14">Value 14</td>
54
+ <td data-sticky-id="15">Value 15</td>
55
55
  </tr>
56
56
  <tr>
57
57
  <td>Value 1</td>
@@ -66,9 +66,9 @@
66
66
  <td>Value 10</td>
67
67
  <td>Value 11</td>
68
68
  <td>Value 12</td>
69
- <td id="13">Value 13</td>
70
- <td id="14">Value 14</td>
71
- <td id="15">Value 15</td>
69
+ <td data-sticky-id="13">Value 13</td>
70
+ <td data-sticky-id="14">Value 14</td>
71
+ <td data-sticky-id="15">Value 15</td>
72
72
  </tr>
73
73
  </tbody>
74
74
  <% end %>
@@ -1,3 +1,3 @@
1
- The `sticky_right_column` prop works in the same way as the above `sticky_left_column` prop. It expects an array of the column ids you want to be sticky. Make sure to add the corresponding id to the `<th>` and `<td>`.
1
+ The `sticky_right_column` prop works in the same way as the above `sticky_left_column` prop. It expects an array of the column `data-sticky-id`s you want to be sticky. Make sure to add the corresponding `data-sticky-id` to the `<th>` and `<td>`.
2
2
 
3
- Please ensure that unique ids are used for all columns across multiple tables. Using the same columns ids on multiple tables can lead to issues when using the `sticky_right_column` prop.
3
+ Please ensure that unique `data-sticky-id`s are used for all columns across multiple tables. Using the same columns `data-sticky-id`s on multiple tables can lead to issues when using the `sticky_right_column` prop.
@@ -64,8 +64,8 @@ export default class PbTable extends PbEnhancedElement {
64
64
 
65
65
  this.stickyLeftColumns.forEach((colId, index) => {
66
66
  const isLastColumn = index === this.stickyLeftColumns.length - 1;
67
- const header = this.element.querySelector(`th[id="${colId}"]`);
68
- const cells = this.element.querySelectorAll(`td[id="${colId}"]`);
67
+ const header = this.element.querySelector(`th[data-sticky-id="${colId}"]`);
68
+ const cells = this.element.querySelectorAll(`td[data-sticky-id="${colId}"]`);
69
69
 
70
70
  if (header) {
71
71
  header.classList.add('sticky');
@@ -125,8 +125,8 @@ export default class PbTable extends PbEnhancedElement {
125
125
 
126
126
  this.stickyRightColumnsReversed.forEach((colId, index) => {
127
127
  const isLastColumn = index === this.stickyRightColumns.length - 1;
128
- const header = this.element.querySelector(`th[id="${colId}"]`);
129
- const cells = this.element.querySelectorAll(`td[id="${colId}"]`);
128
+ const header = this.element.querySelector(`th[data-sticky-id="${colId}"]`);
129
+ const cells = this.element.querySelectorAll(`td[data-sticky-id="${colId}"]`);
130
130
 
131
131
  if (header) {
132
132
  header.classList.add('sticky');