@react-stately/table 3.1.4-nightly.3173 → 3.1.4-nightly.3183

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.
package/dist/main.js CHANGED
@@ -1,6 +1,6 @@
1
1
  var $56JBj$reactstatelycollections = require("@react-stately/collections");
2
- var $56JBj$reactstatelygrid = require("@react-stately/grid");
3
2
  var $56JBj$react = require("react");
3
+ var $56JBj$reactstatelygrid = require("@react-stately/grid");
4
4
 
5
5
  function $parcel$export(e, n, v, s) {
6
6
  Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
@@ -26,13 +26,290 @@ function $parcel$interopDefault(a) {
26
26
  }
27
27
 
28
28
  $parcel$export(module.exports, "Section", () => $ecd852c55a4b6fdf$re_export$Section);
29
+ var $7aa22d80cd4ca621$exports = {};
30
+
31
+ $parcel$export($7aa22d80cd4ca621$exports, "useTableColumnResizeState", () => $7aa22d80cd4ca621$export$cb895dcf85db1319);
32
+ var $3122b463430f41b1$exports = {};
33
+
34
+ $parcel$export($3122b463430f41b1$exports, "getContentWidth", () => $3122b463430f41b1$export$f61abf052f87399f);
35
+ $parcel$export($3122b463430f41b1$exports, "isStatic", () => $3122b463430f41b1$export$1994a077b98ee0d5);
36
+ $parcel$export($3122b463430f41b1$exports, "parseStaticWidth", () => $3122b463430f41b1$export$7bbad27896f7ae9f);
37
+ $parcel$export($3122b463430f41b1$exports, "getMaxWidth", () => $3122b463430f41b1$export$59185c62a7544aa0);
38
+ $parcel$export($3122b463430f41b1$exports, "getMinWidth", () => $3122b463430f41b1$export$f556054ce4358701);
39
+ $parcel$export($3122b463430f41b1$exports, "getDynamicColumnWidths", () => $3122b463430f41b1$export$a870e6692ac5ccb2);
40
+ function $3122b463430f41b1$export$f61abf052f87399f(widths) {
41
+ return Array.from(widths).map((e)=>e[1]
42
+ ).reduce((acc, cur)=>acc + cur
43
+ , 0);
44
+ }
45
+ function $3122b463430f41b1$export$1994a077b98ee0d5(width) {
46
+ return width != null && (!isNaN(width) || String(width).match(/^(\d+)(?=%$)/) !== null);
47
+ }
48
+ function $3122b463430f41b1$var$parseFractionalUnit(width) {
49
+ if (!width) return 1;
50
+ let match = width.match(/^(\d+)(?=fr$)/);
51
+ // if width is the incorrect format, just deafult it to a 1fr
52
+ if (!match) {
53
+ console.warn(`width: ${width} is not a supported format, width should be a number (ex. 150), percentage (ex. '50%') or fr unit (ex. '2fr')`, 'defaulting to \'1fr\'');
54
+ return 1;
55
+ }
56
+ return parseInt(match[0], 10);
57
+ }
58
+ function $3122b463430f41b1$export$7bbad27896f7ae9f(width, tableWidth) {
59
+ if (typeof width === 'string') {
60
+ let match = width.match(/^(\d+)(?=%$)/);
61
+ if (!match) throw new Error('Only percentages or numbers are supported for static column widths');
62
+ return tableWidth * (parseInt(match[0], 10) / 100);
63
+ }
64
+ return width;
65
+ }
66
+ function $3122b463430f41b1$export$59185c62a7544aa0(maxWidth, tableWidth) {
67
+ return maxWidth != null ? $3122b463430f41b1$export$7bbad27896f7ae9f(maxWidth, tableWidth) : Infinity;
68
+ }
69
+ function $3122b463430f41b1$export$f556054ce4358701(minWidth, tableWidth) {
70
+ return minWidth != null ? $3122b463430f41b1$export$7bbad27896f7ae9f(minWidth, tableWidth) : 75;
71
+ }
72
+ function $3122b463430f41b1$var$mapDynamicColumns(dynamicColumns, availableSpace, tableWidth) {
73
+ let fractions = dynamicColumns.reduce((sum, column)=>sum + $3122b463430f41b1$var$parseFractionalUnit(column.props.defaultWidth)
74
+ , 0);
75
+ let columns = dynamicColumns.map((column, index)=>{
76
+ const targetWidth = $3122b463430f41b1$var$parseFractionalUnit(column.props.defaultWidth) * availableSpace / fractions;
77
+ const delta = Math.max($3122b463430f41b1$export$f556054ce4358701(column.props.minWidth, tableWidth) - targetWidth, targetWidth - $3122b463430f41b1$export$59185c62a7544aa0(column.props.maxWidth, tableWidth));
78
+ return {
79
+ ...column,
80
+ index: index,
81
+ delta: delta
82
+ };
83
+ });
84
+ return columns;
85
+ }
86
+ function $3122b463430f41b1$var$findDynamicColumnWidths(dynamicColumns, availableSpace, tableWidth) {
87
+ let fractions = dynamicColumns.reduce((sum, col)=>sum + $3122b463430f41b1$var$parseFractionalUnit(col.props.defaultWidth)
88
+ , 0);
89
+ const columns = dynamicColumns.map((column)=>{
90
+ const targetWidth = $3122b463430f41b1$var$parseFractionalUnit(column.props.defaultWidth) * availableSpace / fractions;
91
+ let width = Math.max($3122b463430f41b1$export$f556054ce4358701(column.props.minWidth, tableWidth), Math.min(Math.floor(targetWidth), $3122b463430f41b1$export$59185c62a7544aa0(column.props.maxWidth, tableWidth)));
92
+ column.calculatedWidth = width;
93
+ availableSpace -= width;
94
+ fractions -= $3122b463430f41b1$var$parseFractionalUnit(column.props.defaultWidth);
95
+ return column;
96
+ });
97
+ return columns;
98
+ }
99
+ function $3122b463430f41b1$export$a870e6692ac5ccb2(dynamicColumns, availableSpace, tableWidth) {
100
+ let columns = $3122b463430f41b1$var$mapDynamicColumns(dynamicColumns, availableSpace, tableWidth);
101
+ columns.sort((a, b)=>b.delta - a.delta
102
+ );
103
+ columns = $3122b463430f41b1$var$findDynamicColumnWidths(columns, availableSpace, tableWidth);
104
+ columns.sort((a, b)=>a.index - b.index
105
+ );
106
+ return columns;
107
+ }
108
+
109
+
110
+
111
+ function $7aa22d80cd4ca621$export$cb895dcf85db1319(props) {
112
+ const { columns: columns1 , getDefaultWidth: getDefaultWidth , tableWidth: defaultTableWidth = null } = props;
113
+ const columnsRef = $56JBj$react.useRef([]);
114
+ const tableWidth = $56JBj$react.useRef(defaultTableWidth);
115
+ const isResizing = $56JBj$react.useRef(null);
116
+ const startResizeContentWidth = $56JBj$react.useRef();
117
+ const [columnWidths, setColumnWidths] = $56JBj$react.useState(new Map(columns1.map((col)=>[
118
+ col.key,
119
+ 0
120
+ ]
121
+ )));
122
+ const columnWidthsRef = $56JBj$react.useRef(columnWidths);
123
+ const affectedColumnWidthsRef = $56JBj$react.useRef([]);
124
+ const [resizedColumns, setResizedColumns] = $56JBj$react.useState(new Set());
125
+ const resizedColumnsRef = $56JBj$react.useRef(resizedColumns);
126
+ function setColumnWidthsForRef(newWidths) {
127
+ columnWidthsRef.current = newWidths;
128
+ // new map so that change detection is triggered
129
+ setColumnWidths(newWidths);
130
+ }
131
+ /*
132
+ returns the resolved column width in this order:
133
+ previously calculated width -> controlled width prop -> uncontrolled defaultWidth prop -> dev assigned width -> default dynamic width
134
+ */ let getResolvedColumnWidth = $56JBj$react.useCallback((column)=>{
135
+ let columnProps = column.props;
136
+ var _width, ref, ref1;
137
+ return (resizedColumns === null || resizedColumns === void 0 ? void 0 : resizedColumns.has(column.key)) ? columnWidthsRef.current.get(column.key) : (ref1 = (ref = (_width = columnProps.width) !== null && _width !== void 0 ? _width : columnProps.defaultWidth) !== null && ref !== void 0 ? ref : getDefaultWidth === null || getDefaultWidth === void 0 ? void 0 : getDefaultWidth(column.props)) !== null && ref1 !== void 0 ? ref1 : '1fr';
138
+ }, [
139
+ getDefaultWidth,
140
+ resizedColumns
141
+ ]);
142
+ let getStaticAndDynamicColumns = $56JBj$react.useCallback((columns)=>columns.reduce((acc, column)=>{
143
+ let width = getResolvedColumnWidth(column);
144
+ return $3122b463430f41b1$export$1994a077b98ee0d5(width) ? {
145
+ ...acc,
146
+ staticColumns: [
147
+ ...acc.staticColumns,
148
+ column
149
+ ]
150
+ } : {
151
+ ...acc,
152
+ dynamicColumns: [
153
+ ...acc.dynamicColumns,
154
+ column
155
+ ]
156
+ };
157
+ }, {
158
+ staticColumns: [],
159
+ dynamicColumns: []
160
+ })
161
+ , [
162
+ getResolvedColumnWidth
163
+ ]);
164
+ let buildColumnWidths = $56JBj$react.useCallback((affectedColumns, availableSpace)=>{
165
+ const widths = new Map();
166
+ let remainingSpace = availableSpace;
167
+ const { staticColumns: staticColumns , dynamicColumns: dynamicColumns } = getStaticAndDynamicColumns(affectedColumns);
168
+ staticColumns.forEach((column)=>{
169
+ let width = getResolvedColumnWidth(column);
170
+ let w = $3122b463430f41b1$export$7bbad27896f7ae9f(width, tableWidth.current);
171
+ widths.set(column.key, w);
172
+ remainingSpace -= w;
173
+ });
174
+ // dynamic columns
175
+ if (dynamicColumns.length > 0) {
176
+ const newColumnWidths = $3122b463430f41b1$export$a870e6692ac5ccb2(dynamicColumns, remainingSpace, tableWidth.current);
177
+ for (let column of newColumnWidths)widths.set(column.key, column.calculatedWidth);
178
+ }
179
+ return widths;
180
+ }, [
181
+ getStaticAndDynamicColumns,
182
+ getResolvedColumnWidth
183
+ ]);
184
+ const prevColKeys = columnsRef.current.map((col)=>col.key
185
+ );
186
+ const colKeys = columns1.map((col)=>col.key
187
+ );
188
+ // if the columns change, need to rebuild widths.
189
+ if (!colKeys.every((col, i)=>col === prevColKeys[i]
190
+ )) {
191
+ columnsRef.current = columns1;
192
+ const widths = buildColumnWidths(columns1, tableWidth.current);
193
+ setColumnWidthsForRef(widths);
194
+ }
195
+ function setTableWidth(width) {
196
+ if (width && width !== tableWidth.current) {
197
+ tableWidth.current = width;
198
+ if (!isResizing.current) {
199
+ const widths = buildColumnWidths(columns1, width);
200
+ setColumnWidthsForRef(widths);
201
+ }
202
+ }
203
+ }
204
+ function onColumnResizeStart() {
205
+ isResizing.current = true;
206
+ startResizeContentWidth.current = $3122b463430f41b1$export$f61abf052f87399f(columnWidthsRef.current);
207
+ }
208
+ function onColumnResize(column, width) {
209
+ let widthsObj = resizeColumn(column, width);
210
+ affectedColumnWidthsRef.current = widthsObj;
211
+ props.onColumnResize && props.onColumnResize(affectedColumnWidthsRef.current);
212
+ }
213
+ function onColumnResizeEnd() {
214
+ isResizing.current = false;
215
+ props.onColumnResizeEnd && props.onColumnResizeEnd(affectedColumnWidthsRef.current);
216
+ affectedColumnWidthsRef.current = [];
217
+ let widths = new Map(columnWidthsRef.current);
218
+ // Need to set the resizeBufferColumn or "spooky column" back to 0 since done resizing;
219
+ const bufferColumnKey = columnsRef.current[columnsRef.current.length - 1].key;
220
+ widths.set(bufferColumnKey, 0);
221
+ setColumnWidthsForRef(widths);
222
+ }
223
+ function resizeColumn(column1, newWidth) {
224
+ let boundedWidth = Math.max($3122b463430f41b1$export$f556054ce4358701(column1.props.minWidth, tableWidth.current), Math.min(Math.floor(newWidth), $3122b463430f41b1$export$59185c62a7544aa0(column1.props.maxWidth, tableWidth.current)));
225
+ // copy the columnWidths map and set the new width for the column being resized
226
+ let widths = new Map(columnWidthsRef.current);
227
+ widths.set(columnsRef.current[columnsRef.current.length - 1].key, 0);
228
+ widths.set(column1.key, boundedWidth);
229
+ // keep track of all columns that have been sized
230
+ resizedColumnsRef.current.add(column1.key);
231
+ setResizedColumns(resizedColumnsRef.current);
232
+ // get the columns affected by resize and remaining space
233
+ const resizeIndex = columnsRef.current.findIndex((col)=>col.key === column1.key
234
+ );
235
+ let affectedColumns = columnsRef.current.slice(resizeIndex + 1);
236
+ // we only care about the columns that CAN be resized, we ignore static columns.
237
+ let { dynamicColumns: dynamicColumns } = getStaticAndDynamicColumns(affectedColumns);
238
+ // available space for affected columns
239
+ let availableSpace = columnsRef.current.reduce((acc, column, index)=>{
240
+ if (index <= resizeIndex || $3122b463430f41b1$export$1994a077b98ee0d5(getResolvedColumnWidth(column))) return acc - widths.get(column.key);
241
+ return acc;
242
+ }, tableWidth.current);
243
+ // merge the unaffected column widths and the recalculated column widths
244
+ let recalculatedColumnWidths = buildColumnWidths(dynamicColumns, availableSpace);
245
+ widths = new Map([
246
+ ...widths,
247
+ ...recalculatedColumnWidths
248
+ ]);
249
+ if (startResizeContentWidth.current > tableWidth.current) widths.set(columnsRef.current[columnsRef.current.length - 1].key, Math.max(0, startResizeContentWidth.current - $3122b463430f41b1$export$f61abf052f87399f(widths)));
250
+ setColumnWidthsForRef(widths);
251
+ /*
252
+ when getting recalculated columns above, the column being resized is not considered "recalculated"
253
+ so we need to add it to the list of affected columns
254
+ */ let allAffectedColumns = [
255
+ [
256
+ column1.key,
257
+ boundedWidth
258
+ ],
259
+ ...recalculatedColumnWidths
260
+ ].map(([key, width])=>({
261
+ key: key,
262
+ width: width
263
+ })
264
+ );
265
+ return allAffectedColumns;
266
+ }
267
+ var ref2;
268
+ // This function is regenerated whenever columnWidthsRef.current changes in order to get the new correct ref value.
269
+ let getColumnWidth = $56JBj$react.useCallback((key)=>(ref2 = columnWidthsRef.current.get(key)) !== null && ref2 !== void 0 ? ref2 : 0
270
+ , [
271
+ columnWidthsRef.current
272
+ ]);
273
+ let getColumnMinWidth = $56JBj$react.useCallback((key)=>{
274
+ const columnIndex = columns1.findIndex((col)=>col.key === key
275
+ );
276
+ if (columnIndex === -1) return;
277
+ return $3122b463430f41b1$export$f556054ce4358701(columns1[columnIndex].props.minWidth, tableWidth.current);
278
+ }, [
279
+ columns1
280
+ ]);
281
+ let getColumnMaxWidth = $56JBj$react.useCallback((key)=>{
282
+ const columnIndex = columns1.findIndex((col)=>col.key === key
283
+ );
284
+ if (columnIndex === -1) return;
285
+ return $3122b463430f41b1$export$59185c62a7544aa0(columns1[columnIndex].props.maxWidth, tableWidth.current);
286
+ }, [
287
+ columns1
288
+ ]);
289
+ return {
290
+ columnWidths: columnWidthsRef,
291
+ setTableWidth: setTableWidth,
292
+ onColumnResize: onColumnResize,
293
+ onColumnResizeStart: onColumnResizeStart,
294
+ onColumnResizeEnd: onColumnResizeEnd,
295
+ getColumnWidth: getColumnWidth,
296
+ getColumnMinWidth: getColumnMinWidth,
297
+ getColumnMaxWidth: getColumnMaxWidth,
298
+ isResizingColumn: isResizing.current
299
+ };
300
+ }
301
+
302
+
303
+
29
304
  var $e3f7784147dde23d$exports = {};
30
305
 
31
306
  $parcel$export($e3f7784147dde23d$exports, "useTableState", () => $e3f7784147dde23d$export$907bcc6c48325fd6);
32
307
 
33
308
 
34
309
 
310
+
35
311
  const $7f5a58334d8866a5$var$ROW_HEADER_COLUMN_KEY = 'row-header-column-' + Math.random().toString(36).slice(2);
312
+ const $7f5a58334d8866a5$var$RESIZE_BUFFER_COLUMN_KEY = 'resize-buffer-column' + Math.random().toString(36).slice(2);
36
313
  function $7f5a58334d8866a5$var$buildHeaderRows(keyMap, columnNodes) {
37
314
  let columns = [];
38
315
  let seen = new Map();
@@ -236,6 +513,38 @@ class $7f5a58334d8866a5$export$596e1b2e2cf93690 extends $56JBj$reactstatelygrid.
236
513
  for (let child of node.childNodes)visit(child);
237
514
  };
238
515
  for (let node1 of nodes)visit(node1);
516
+ if (Array.from(nodes).some((node)=>{
517
+ var ref;
518
+ return (ref = node.props) === null || ref === void 0 ? void 0 : ref.allowsResizing;
519
+ })) {
520
+ /*
521
+ If the table content width > table width, a horizontal scroll bar is present.
522
+ If a user tries to resize a column, making it smaller while they are scrolled to the
523
+ end of the content horizontally, it shrinks the total table content width, causing
524
+ things to snap around and breaks the resize behavior.
525
+
526
+ To fix this, we add a resize buffer column (aka "spooky column") to the end of the table.
527
+ The width of this column defaults to 0. If you try and shrink a column and the width of the
528
+ table contents > table width, then the "spooky column" will grow to take up the difference
529
+ so that the total table content width remains constant while you are resizing. Once you
530
+ finish resizing, the "spooky column" snaps back to 0.
531
+ */ let resizeBufferColumn = {
532
+ type: 'column',
533
+ key: $7f5a58334d8866a5$var$RESIZE_BUFFER_COLUMN_KEY,
534
+ value: null,
535
+ textValue: '',
536
+ level: 0,
537
+ index: columns.length,
538
+ hasChildNodes: false,
539
+ rendered: null,
540
+ childNodes: [],
541
+ props: {
542
+ isResizeBuffer: true,
543
+ defaultWidth: 0
544
+ }
545
+ };
546
+ columns.push(resizeBufferColumn);
547
+ }
239
548
  let headerRows = $7f5a58334d8866a5$var$buildHeaderRows(columnKeyMap, columns);
240
549
  headerRows.forEach((row, i)=>rows.splice(i, 0, row)
241
550
  );
@@ -280,19 +589,26 @@ function $e3f7784147dde23d$export$907bcc6c48325fd6(props) {
280
589
  ...props,
281
590
  collection: collection
282
591
  });
592
+ const tableColumnResizeState = $7aa22d80cd4ca621$export$cb895dcf85db1319({
593
+ columns: collection.columns,
594
+ getDefaultWidth: props.getDefaultWidth,
595
+ onColumnResize: props.onColumnResize,
596
+ onColumnResizeEnd: props.onColumnResizeEnd
597
+ });
283
598
  return {
284
599
  collection: collection,
285
600
  disabledKeys: disabledKeys,
286
601
  selectionManager: selectionManager,
287
602
  showSelectionCheckboxes: props.showSelectionCheckboxes || false,
288
603
  sortDescriptor: props.sortDescriptor,
289
- sort (columnKey) {
604
+ sort (columnKey, direction) {
290
605
  var ref;
291
606
  props.onSortChange({
292
607
  column: columnKey,
293
- direction: ((ref = props.sortDescriptor) === null || ref === void 0 ? void 0 : ref.column) === columnKey ? $e3f7784147dde23d$var$OPPOSITE_SORT_DIRECTION[props.sortDescriptor.direction] : 'ascending'
608
+ direction: direction !== null && direction !== void 0 ? direction : ((ref = props.sortDescriptor) === null || ref === void 0 ? void 0 : ref.column) === columnKey ? $e3f7784147dde23d$var$OPPOSITE_SORT_DIRECTION[props.sortDescriptor.direction] : 'ascending'
294
609
  });
295
- }
610
+ },
611
+ ...tableColumnResizeState
296
612
  };
297
613
  }
298
614
 
@@ -508,6 +824,8 @@ let $ad4ab0a21c733e1f$export$f6f0c3fe4ec306ea = $ad4ab0a21c733e1f$var$Cell;
508
824
 
509
825
 
510
826
 
827
+ $parcel$exportWildcard(module.exports, $7aa22d80cd4ca621$exports);
828
+ $parcel$exportWildcard(module.exports, $3122b463430f41b1$exports);
511
829
  $parcel$exportWildcard(module.exports, $e3f7784147dde23d$exports);
512
830
  $parcel$exportWildcard(module.exports, $f45775f5d6f744fa$exports);
513
831
  $parcel$exportWildcard(module.exports, $6ec527db6a3a5692$exports);
package/dist/main.js.map CHANGED
@@ -1 +1 @@
1
- {"mappings":"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","sources":["packages/@react-stately/table/src/index.ts","packages/@react-stately/table/src/useTableState.ts","packages/@react-stately/table/src/TableCollection.ts","packages/@react-stately/table/src/TableHeader.ts","packages/@react-stately/table/src/TableBody.ts","packages/@react-stately/table/src/Column.ts","packages/@react-stately/table/src/Row.ts","packages/@react-stately/table/src/Cell.ts"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport * from './useTableState';\nexport * from './TableHeader';\nexport * from './TableBody';\nexport * from './Column';\nexport * from './Row';\nexport * from './Cell';\nexport {Section} from '@react-stately/collections';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {CollectionBase, Node, SelectionMode, Sortable, SortDescriptor, SortDirection} from '@react-types/shared';\nimport {GridState, useGridState} from '@react-stately/grid';\nimport {TableCollection as ITableCollection} from '@react-types/table';\nimport {Key, useMemo} from 'react';\nimport {MultipleSelectionStateProps} from '@react-stately/selection';\nimport {TableCollection} from './TableCollection';\nimport {useCollection} from '@react-stately/collections';\n\nexport interface TableState<T> extends GridState<T, ITableCollection<T>> {\n /** A collection of rows and columns in the table. */\n collection: ITableCollection<T>,\n /** Whether the row selection checkboxes should be displayed. */\n showSelectionCheckboxes: boolean,\n /** The current sorted column and direction. */\n sortDescriptor: SortDescriptor,\n /** Calls the provided onSortChange handler with the provided column key and sort direction. */\n sort(columnKey: Key): void\n}\n\nexport interface CollectionBuilderContext<T> {\n showSelectionCheckboxes: boolean,\n selectionMode: SelectionMode,\n columns: Node<T>[]\n}\n\nexport interface TableStateProps<T> extends CollectionBase<T>, MultipleSelectionStateProps, Sortable {\n /** Whether the row selection checkboxes should be displayed. */\n showSelectionCheckboxes?: boolean\n}\n\nconst OPPOSITE_SORT_DIRECTION = {\n ascending: 'descending' as SortDirection,\n descending: 'ascending' as SortDirection\n};\n\n/**\n * Provides state management for a table component. Handles building a collection\n * of columns and rows from props. In addition, it tracks row selection and manages sort order changes.\n */\nexport function useTableState<T extends object>(props: TableStateProps<T>): TableState<T> {\n let {selectionMode = 'none'} = props;\n\n let context = useMemo(() => ({\n showSelectionCheckboxes: props.showSelectionCheckboxes && selectionMode !== 'none',\n selectionMode,\n columns: []\n }), [props.children, props.showSelectionCheckboxes, selectionMode]);\n\n let collection = useCollection<T, TableCollection<T>>(\n props,\n (nodes, prev) => new TableCollection(nodes, prev, context),\n context\n );\n let {disabledKeys, selectionManager} = useGridState({...props, collection});\n\n return {\n collection,\n disabledKeys,\n selectionManager,\n showSelectionCheckboxes: props.showSelectionCheckboxes || false,\n sortDescriptor: props.sortDescriptor,\n sort(columnKey: Key) {\n props.onSortChange({\n column: columnKey,\n direction: props.sortDescriptor?.column === columnKey\n ? OPPOSITE_SORT_DIRECTION[props.sortDescriptor.direction]\n : 'ascending'\n });\n }\n };\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\nimport {GridCollection} from '@react-stately/grid';\nimport {GridNode} from '@react-types/grid';\nimport {Key} from 'react';\n\ninterface GridCollectionOptions {\n showSelectionCheckboxes?: boolean\n}\n\nconst ROW_HEADER_COLUMN_KEY = 'row-header-column-' + Math.random().toString(36).slice(2);\n\nfunction buildHeaderRows<T>(keyMap: Map<Key, GridNode<T>>, columnNodes: GridNode<T>[]): GridNode<T>[] {\n let columns = [];\n let seen = new Map();\n for (let column of columnNodes) {\n let parentKey = column.parentKey;\n let col = [column];\n\n while (parentKey) {\n let parent: GridNode<T> = keyMap.get(parentKey);\n\n // If we've already seen this parent, than it is shared\n // with a previous column. If the current column is taller\n // than the previous column, than we need to shift the parent\n // in the previous column so it's level with the current column.\n if (seen.has(parent)) {\n parent.colspan++;\n\n let {column, index} = seen.get(parent);\n if (index > col.length) {\n break;\n }\n\n for (let i = index; i < col.length; i++) {\n column.splice(i, 0, null);\n }\n\n // Adjust shifted indices\n for (let i = col.length; i < column.length; i++) {\n if (column[i] && seen.has(column[i])) {\n seen.get(column[i]).index = i;\n }\n }\n } else {\n parent.colspan = 1;\n col.push(parent);\n seen.set(parent, {column: col, index: col.length - 1});\n }\n\n parentKey = parent.parentKey;\n }\n\n columns.push(col);\n column.index = columns.length - 1;\n }\n\n let maxLength = Math.max(...columns.map(c => c.length));\n let headerRows = Array(maxLength).fill(0).map(() => []);\n\n // Convert columns into rows.\n let colIndex = 0;\n for (let column of columns) {\n let i = maxLength - 1;\n for (let item of column) {\n if (item) {\n // Fill the space up until the current column with a placeholder\n let row = headerRows[i];\n let rowLength = row.reduce((p, c) => p + c.colspan, 0);\n if (rowLength < colIndex) {\n let placeholder: GridNode<T> = {\n type: 'placeholder',\n key: 'placeholder-' + item.key,\n colspan: colIndex - rowLength,\n index: rowLength,\n value: null,\n rendered: null,\n level: i,\n hasChildNodes: false,\n childNodes: [],\n textValue: null\n };\n\n if (row.length > 0) {\n row[row.length - 1].nextKey = placeholder.key;\n placeholder.prevKey = row[row.length - 1].key;\n }\n\n row.push(placeholder);\n }\n\n if (row.length > 0) {\n row[row.length - 1].nextKey = item.key;\n item.prevKey = row[row.length - 1].key;\n }\n\n item.level = i;\n item.index = colIndex;\n row.push(item);\n }\n\n i--;\n }\n\n colIndex++;\n }\n\n // Add placeholders at the end of each row that is shorter than the maximum\n let i = 0;\n for (let row of headerRows) {\n let rowLength = row.reduce((p, c) => p + c.colspan, 0);\n if (rowLength < columnNodes.length) {\n let placeholder: GridNode<T> = {\n type: 'placeholder',\n key: 'placeholder-' + row[row.length - 1].key,\n colspan: columnNodes.length - rowLength,\n index: rowLength,\n value: null,\n rendered: null,\n level: i,\n hasChildNodes: false,\n childNodes: [],\n textValue: null,\n prevKey: row[row.length - 1].key\n };\n\n row.push(placeholder);\n }\n\n i++;\n }\n\n return headerRows.map((childNodes, index) => {\n let row: GridNode<T> = {\n type: 'headerrow',\n key: 'headerrow-' + index,\n index,\n value: null,\n rendered: null,\n level: 0,\n hasChildNodes: true,\n childNodes,\n textValue: null\n };\n\n return row;\n });\n}\n\nexport class TableCollection<T> extends GridCollection<T> {\n headerRows: GridNode<T>[];\n columns: GridNode<T>[];\n rowHeaderColumnKeys: Set<Key>;\n body: GridNode<T>;\n\n constructor(nodes: Iterable<GridNode<T>>, prev?: TableCollection<T>, opts?: GridCollectionOptions) {\n let rowHeaderColumnKeys: Set<Key> = new Set();\n let body: GridNode<T>;\n let columns = [];\n\n // Add cell for selection checkboxes if needed.\n if (opts?.showSelectionCheckboxes) {\n let rowHeaderColumn: GridNode<T> = {\n type: 'column',\n key: ROW_HEADER_COLUMN_KEY,\n value: null,\n textValue: '',\n level: 0,\n index: 0,\n hasChildNodes: false,\n rendered: null,\n childNodes: [],\n props: {\n isSelectionCell: true\n }\n };\n\n columns.unshift(rowHeaderColumn);\n }\n\n let rows = [];\n let columnKeyMap = new Map();\n let visit = (node: GridNode<T>) => {\n switch (node.type) {\n case 'body':\n body = node;\n break;\n case 'column':\n columnKeyMap.set(node.key, node);\n if (!node.hasChildNodes) {\n columns.push(node);\n\n if (node.props.isRowHeader) {\n rowHeaderColumnKeys.add(node.key);\n }\n }\n break;\n case 'item':\n rows.push(node);\n return; // do not go into childNodes\n }\n for (let child of node.childNodes) {\n visit(child);\n }\n };\n\n for (let node of nodes) {\n visit(node);\n }\n let headerRows = buildHeaderRows(columnKeyMap, columns) as GridNode<T>[];\n headerRows.forEach((row, i) => rows.splice(i, 0, row));\n\n super({\n columnCount: columns.length,\n items: rows,\n visitNode: node => {\n node.column = columns[node.index];\n return node;\n }\n });\n this.columns = columns;\n this.rowHeaderColumnKeys = rowHeaderColumnKeys;\n this.body = body;\n this.headerRows = headerRows;\n\n // Default row header column to the first one.\n if (this.rowHeaderColumnKeys.size === 0) {\n this.rowHeaderColumnKeys.add(this.columns[opts?.showSelectionCheckboxes ? 1 : 0].key);\n }\n }\n\n *[Symbol.iterator]() {\n yield* this.body.childNodes;\n }\n\n get size() {\n return [...this.body.childNodes].length;\n }\n\n getKeys() {\n return this.keyMap.keys();\n }\n\n getKeyBefore(key: Key) {\n let node = this.keyMap.get(key);\n return node ? node.prevKey : null;\n }\n\n getKeyAfter(key: Key) {\n let node = this.keyMap.get(key);\n return node ? node.nextKey : null;\n }\n\n getFirstKey() {\n return [...this.body.childNodes][0]?.key;\n }\n\n getLastKey() {\n let rows = [...this.body.childNodes];\n return rows[rows.length - 1]?.key;\n }\n\n getItem(key: Key) {\n return this.keyMap.get(key);\n }\n\n at(idx: number) {\n const keys = [...this.getKeys()];\n return this.getItem(keys[idx]);\n }\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {PartialNode} from '@react-stately/collections';\nimport React, {ReactElement} from 'react';\nimport {TableHeaderProps} from '@react-types/table';\n\nfunction TableHeader<T>(props: TableHeaderProps<T>): ReactElement { // eslint-disable-line @typescript-eslint/no-unused-vars\n return null;\n}\n\nTableHeader.getCollectionNode = function* getCollectionNode<T>(props: TableHeaderProps<T>): Generator<PartialNode<T>, void, any> {\n let {children, columns} = props;\n if (typeof children === 'function') {\n if (!columns) {\n throw new Error('props.children was a function but props.columns is missing');\n }\n\n for (let column of columns) {\n yield {\n type: 'column',\n value: column,\n renderer: children\n };\n }\n } else {\n let columns: PartialNode<T>[] = [];\n React.Children.forEach(children, column => {\n columns.push({\n type: 'column',\n element: column\n });\n });\n\n yield* columns;\n }\n};\n\n/**\n * A TableHeader is a container for the Column elements in a Table. Columns can be statically defined\n * as children, or generated dynamically using a function based on the data passed to the `columns` prop.\n */\n// We don't want getCollectionNode to show up in the type definition\nlet _TableHeader = TableHeader as <T>(props: TableHeaderProps<T>) => JSX.Element;\nexport {_TableHeader as TableHeader};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {PartialNode} from '@react-stately/collections';\nimport React, {ReactElement} from 'react';\nimport {TableBodyProps} from '@react-types/table';\n\nfunction TableBody<T>(props: TableBodyProps<T>): ReactElement { // eslint-disable-line @typescript-eslint/no-unused-vars\n return null;\n}\n\nTableBody.getCollectionNode = function* getCollectionNode<T>(props: TableBodyProps<T>): Generator<PartialNode<T>> {\n let {children, items} = props;\n yield {\n type: 'body',\n hasChildNodes: true,\n props,\n *childNodes() {\n if (typeof children === 'function') {\n if (!items) {\n throw new Error('props.children was a function but props.items is missing');\n }\n\n for (let item of items) {\n yield {\n type: 'item',\n value: item,\n renderer: children\n };\n }\n } else {\n let items: PartialNode<T>[] = [];\n React.Children.forEach(children, item => {\n items.push({\n type: 'item',\n element: item\n });\n });\n\n yield* items;\n }\n }\n };\n};\n\n/**\n * A TableBody is a container for the Row elements of a Table. Rows can be statically defined\n * as children, or generated dynamically using a function based on the data passed to the `items` prop.\n */\n// We don't want getCollectionNode to show up in the type definition\nlet _TableBody = TableBody as <T>(props: TableBodyProps<T>) => JSX.Element;\nexport {_TableBody as TableBody};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {CollectionBuilderContext} from './useTableState';\nimport {ColumnProps} from '@react-types/table';\nimport {GridNode} from '@react-types/grid';\nimport {PartialNode} from '@react-stately/collections';\nimport React, {ReactElement} from 'react';\n\nfunction Column<T>(props: ColumnProps<T>): ReactElement { // eslint-disable-line @typescript-eslint/no-unused-vars\n return null;\n}\n\nColumn.getCollectionNode = function* getCollectionNode<T>(props: ColumnProps<T>, context: CollectionBuilderContext<T>): Generator<PartialNode<T>, void, GridNode<T>[]> {\n let {title, children, childColumns} = props;\n\n let rendered = title || children;\n let textValue = props.textValue || (typeof rendered === 'string' ? rendered : '') || props['aria-label'];\n\n let fullNodes = yield {\n type: 'column',\n hasChildNodes: !!childColumns || (title && React.Children.count(children) > 0),\n rendered,\n textValue,\n props,\n *childNodes() {\n if (childColumns) {\n for (let child of childColumns) {\n yield {\n type: 'column',\n value: child\n };\n }\n } else if (title) {\n let childColumns: PartialNode<T>[] = [];\n React.Children.forEach(children, child => {\n childColumns.push({\n type: 'column',\n element: child as ReactElement<ColumnProps<T>>\n });\n });\n\n yield* childColumns;\n }\n },\n shouldInvalidate(newContext: CollectionBuilderContext<T>) {\n // This is a bit of a hack, but it works.\n // If this method is called, then there's a cached version of this node available.\n // But, we need to keep the list of columns in the new context up to date.\n updateContext(newContext);\n return false;\n }\n };\n\n let updateContext = (context: CollectionBuilderContext<T>) => {\n // register leaf columns on the context so that <Row> can access them\n for (let node of fullNodes) {\n if (!node.hasChildNodes) {\n context.columns.push(node);\n }\n }\n };\n\n updateContext(context);\n};\n\n/**\n * A Column represents a field of each item within a Table. Columns may also contain nested\n * Column elements to represent column groups. Nested columns can be statically defined as\n * children, or dynamically generated using a function based on the `childColumns` prop.\n */\n// We don't want getCollectionNode to show up in the type definition\nlet _Column = Column as <T>(props: ColumnProps<T>) => JSX.Element;\nexport {_Column as Column};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {CollectionBuilderContext} from './useTableState';\nimport {PartialNode} from '@react-stately/collections';\nimport React, {ReactElement} from 'react';\nimport {RowProps} from '@react-types/table';\n\nfunction Row(props: RowProps): ReactElement { // eslint-disable-line @typescript-eslint/no-unused-vars\n return null;\n}\n\nRow.getCollectionNode = function* getCollectionNode<T>(props: RowProps, context: CollectionBuilderContext<T>): Generator<PartialNode<T>> {\n let {children, textValue} = props;\n\n yield {\n type: 'item',\n props: props,\n textValue,\n 'aria-label': props['aria-label'],\n hasChildNodes: true,\n *childNodes() {\n // Process cells first\n if (context.showSelectionCheckboxes && context.selectionMode !== 'none') {\n yield {\n type: 'cell',\n key: 'header', // this is combined with the row key by CollectionBuilder\n props: {\n isSelectionCell: true\n }\n };\n }\n\n if (typeof children === 'function') {\n for (let column of context.columns) {\n yield {\n type: 'cell',\n element: children(column.key),\n key: column.key // this is combined with the row key by CollectionBuilder\n };\n }\n } else {\n let cells: PartialNode<T>[] = [];\n React.Children.forEach(children, cell => {\n cells.push({\n type: 'cell',\n element: cell\n });\n });\n\n if (cells.length !== context.columns.length) {\n throw new Error(`Cell count must match column count. Found ${cells.length} cells and ${context.columns.length} columns.`);\n }\n\n yield* cells;\n }\n },\n shouldInvalidate(newContext: CollectionBuilderContext<T>) {\n // Invalidate all rows if the columns changed.\n return newContext.columns.length !== context.columns.length ||\n newContext.columns.some((c, i) => c.key !== context.columns[i].key) ||\n newContext.showSelectionCheckboxes !== context.showSelectionCheckboxes ||\n newContext.selectionMode !== context.selectionMode;\n }\n };\n};\n\n/**\n * A Row represents a single item in a Table and contains Cell elements for each column.\n * Cells can be statically defined as children, or generated dynamically using a function\n * based on the columns defined in the TableHeader.\n */\n// We don't want getCollectionNode to show up in the type definition\nlet _Row = Row as (props: RowProps) => JSX.Element;\nexport {_Row as Row};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {CellProps} from '@react-types/table';\nimport {PartialNode} from '@react-stately/collections';\nimport {ReactElement} from 'react';\n\nfunction Cell(props: CellProps): ReactElement { // eslint-disable-line @typescript-eslint/no-unused-vars\n return null;\n}\n\nCell.getCollectionNode = function* getCollectionNode<T>(props: CellProps): Generator<PartialNode<T>> {\n let {children} = props;\n\n let textValue = props.textValue || (typeof children === 'string' ? children : '') || props['aria-label'] || '';\n yield {\n type: 'cell',\n props: props,\n rendered: children,\n textValue,\n 'aria-label': props['aria-label'],\n hasChildNodes: false\n };\n};\n\n/**\n * A Cell represents the value of a single Column within a Table Row.\n */\n// We don't want getCollectionNode to show up in the type definition\nlet _Cell = Cell as (props: CellProps) => JSX.Element;\nexport {_Cell as Cell};\n"],"names":[],"version":3,"file":"main.js.map"}
1
+ {"mappings":"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","sources":["packages/@react-stately/table/src/index.ts","packages/@react-stately/table/src/useTableColumnResizeState.ts","packages/@react-stately/table/src/utils.ts","packages/@react-stately/table/src/useTableState.ts","packages/@react-stately/table/src/TableCollection.ts","packages/@react-stately/table/src/TableHeader.ts","packages/@react-stately/table/src/TableBody.ts","packages/@react-stately/table/src/Column.ts","packages/@react-stately/table/src/Row.ts","packages/@react-stately/table/src/Cell.ts"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport * from './useTableColumnResizeState';\nexport * from './utils';\nexport * from './useTableState';\nexport * from './TableHeader';\nexport * from './TableBody';\nexport * from './Column';\nexport * from './Row';\nexport * from './Cell';\nexport {Section} from '@react-stately/collections';\n","\nimport {ColumnProps} from '@react-types/table';\nimport {getContentWidth, getDynamicColumnWidths, getMaxWidth, getMinWidth, isStatic, parseStaticWidth} from './utils';\nimport {GridNode} from '@react-types/grid';\nimport {Key, MutableRefObject, useCallback, useRef, useState} from 'react';\n\nexport interface AffectedColumnWidth {\n /** The column key. */\n key: Key,\n /** The column width. */\n width: number\n}\nexport interface AffectedColumnWidths extends Array<AffectedColumnWidth> {}\n\nexport interface ColumnResizeState<T> {\n /** A ref whose current value is the state of all the column widths. */\n columnWidths: MutableRefObject<Map<Key, number>>,\n /** Setter for the table width. */\n setTableWidth: (width: number) => void,\n /** Trigger a resize and recalc. */\n onColumnResize: (column: GridNode<T>, width: number) => void,\n /** Callback for when onColumnResize has started. */\n onColumnResizeStart: () => void,\n /** Callback for when onColumnResize has ended. */\n onColumnResizeEnd: () => void,\n /** Getter for column width. */\n getColumnWidth(key: Key): number,\n /** Getter for column min width. */\n getColumnMinWidth(key: Key): number,\n /** Getter for column max widths. */\n getColumnMaxWidth(key: Key): number,\n /** Boolean for if a column is being resized. */\n isResizingColumn: boolean\n}\n\nexport interface ColumnResizeStateProps<T> {\n /** Collection of existing columns. */\n columns: GridNode<T>[],\n /** Callback to determine what the default width of a column should be. */\n getDefaultWidth?: (props) => string | number,\n /** Callback that is invoked during the entirety of the resize event. */\n onColumnResize?: (affectedColumnWidths: AffectedColumnWidths) => void,\n /** Callback that is invoked when the resize event is ended. */\n onColumnResizeEnd?: (affectedColumnWidths: AffectedColumnWidths) => void,\n /** The default table width. */\n tableWidth?: number\n}\n\nexport function useTableColumnResizeState<T>(props: ColumnResizeStateProps<T>): ColumnResizeState<T> {\n const {columns, getDefaultWidth, tableWidth: defaultTableWidth = null} = props;\n const columnsRef = useRef<GridNode<T>[]>([]);\n const tableWidth = useRef<number>(defaultTableWidth);\n const isResizing = useRef<boolean>(null);\n const startResizeContentWidth = useRef<number>();\n\n const [columnWidths, setColumnWidths] = useState<Map<Key, number>>(new Map(columns.map(col => [col.key, 0])));\n const columnWidthsRef = useRef<Map<Key, number>>(columnWidths);\n const affectedColumnWidthsRef = useRef<AffectedColumnWidths>([]);\n const [resizedColumns, setResizedColumns] = useState<Set<Key>>(new Set());\n const resizedColumnsRef = useRef<Set<Key>>(resizedColumns);\n\n function setColumnWidthsForRef(newWidths: Map<Key, number>) {\n columnWidthsRef.current = newWidths;\n // new map so that change detection is triggered\n setColumnWidths(newWidths);\n }\n /*\n returns the resolved column width in this order: \n previously calculated width -> controlled width prop -> uncontrolled defaultWidth prop -> dev assigned width -> default dynamic width\n */\n let getResolvedColumnWidth = useCallback((column: GridNode<T>): (number | string) => {\n let columnProps = column.props as ColumnProps<T>;\n return resizedColumns?.has(column.key) ? columnWidthsRef.current.get(column.key) : columnProps.width ?? columnProps.defaultWidth ?? getDefaultWidth?.(column.props) ?? '1fr';\n }, [getDefaultWidth, resizedColumns]);\n\n let getStaticAndDynamicColumns = useCallback((columns: GridNode<T>[]) : { staticColumns: GridNode<T>[], dynamicColumns: GridNode<T>[] } => columns.reduce((acc, column) => {\n let width = getResolvedColumnWidth(column);\n return isStatic(width) ? {...acc, staticColumns: [...acc.staticColumns, column]} : {...acc, dynamicColumns: [...acc.dynamicColumns, column]}; \n }, {staticColumns: [], dynamicColumns: []}), [getResolvedColumnWidth]);\n\n let buildColumnWidths = useCallback((affectedColumns: GridNode<T>[], availableSpace: number): Map<Key, number> => {\n const widths = new Map<Key, number>();\n let remainingSpace = availableSpace;\n\n const {staticColumns, dynamicColumns} = getStaticAndDynamicColumns(affectedColumns);\n\n staticColumns.forEach(column => {\n let width = getResolvedColumnWidth(column);\n let w = parseStaticWidth(width, tableWidth.current);\n widths.set(column.key, w);\n remainingSpace -= w;\n });\n\n // dynamic columns\n if (dynamicColumns.length > 0) {\n const newColumnWidths = getDynamicColumnWidths(dynamicColumns, remainingSpace, tableWidth.current);\n for (let column of newColumnWidths) {\n widths.set(column.key, column.calculatedWidth);\n }\n }\n\n return widths;\n }, [getStaticAndDynamicColumns, getResolvedColumnWidth]);\n\n\n const prevColKeys = columnsRef.current.map(col => col.key);\n const colKeys = columns.map(col => col.key);\n // if the columns change, need to rebuild widths.\n if (!colKeys.every((col, i) => col === prevColKeys[i])) {\n columnsRef.current = columns;\n const widths = buildColumnWidths(columns, tableWidth.current);\n setColumnWidthsForRef(widths);\n }\n\n function setTableWidth(width: number) {\n if (width && width !== tableWidth.current) {\n tableWidth.current = width;\n if (!isResizing.current) {\n const widths = buildColumnWidths(columns, width);\n setColumnWidthsForRef(widths);\n }\n }\n }\n\n function onColumnResizeStart() {\n isResizing.current = true;\n startResizeContentWidth.current = getContentWidth(columnWidthsRef.current);\n }\n\n function onColumnResize(column: GridNode<T>, width: number) {\n let widthsObj = resizeColumn(column, width);\n affectedColumnWidthsRef.current = widthsObj;\n props.onColumnResize && props.onColumnResize(affectedColumnWidthsRef.current);\n }\n\n function onColumnResizeEnd() {\n isResizing.current = false;\n props.onColumnResizeEnd && props.onColumnResizeEnd(affectedColumnWidthsRef.current);\n affectedColumnWidthsRef.current = [];\n\n let widths = new Map<Key, number>(columnWidthsRef.current);\n // Need to set the resizeBufferColumn or \"spooky column\" back to 0 since done resizing;\n const bufferColumnKey = columnsRef.current[columnsRef.current.length - 1].key;\n widths.set(bufferColumnKey, 0);\n setColumnWidthsForRef(widths);\n }\n\n function resizeColumn(column: GridNode<T>, newWidth: number) : AffectedColumnWidths {\n let boundedWidth = Math.max(\n getMinWidth(column.props.minWidth, tableWidth.current),\n Math.min(Math.floor(newWidth), getMaxWidth(column.props.maxWidth, tableWidth.current)));\n\n // copy the columnWidths map and set the new width for the column being resized\n let widths = new Map<Key, number>(columnWidthsRef.current);\n widths.set(columnsRef.current[columnsRef.current.length - 1].key, 0);\n widths.set(column.key, boundedWidth);\n\n // keep track of all columns that have been sized\n resizedColumnsRef.current.add(column.key);\n setResizedColumns(resizedColumnsRef.current);\n\n // get the columns affected by resize and remaining space\n const resizeIndex = columnsRef.current.findIndex(col => col.key === column.key);\n let affectedColumns = columnsRef.current.slice(resizeIndex + 1);\n\n // we only care about the columns that CAN be resized, we ignore static columns.\n let {dynamicColumns} = getStaticAndDynamicColumns(affectedColumns);\n\n // available space for affected columns\n let availableSpace = columnsRef.current.reduce((acc, column, index) => {\n if (index <= resizeIndex || isStatic(getResolvedColumnWidth(column))) {\n return acc - widths.get(column.key);\n }\n return acc;\n }, tableWidth.current);\n \n // merge the unaffected column widths and the recalculated column widths\n let recalculatedColumnWidths = buildColumnWidths(dynamicColumns, availableSpace);\n widths = new Map<Key, number>([...widths, ...recalculatedColumnWidths]);\n\n if (startResizeContentWidth.current > tableWidth.current) {\n widths.set(columnsRef.current[columnsRef.current.length - 1].key, Math.max(0, startResizeContentWidth.current - getContentWidth(widths)));\n }\n setColumnWidthsForRef(widths);\n\n /*\n when getting recalculated columns above, the column being resized is not considered \"recalculated\"\n so we need to add it to the list of affected columns\n */\n let allAffectedColumns = ([[column.key, boundedWidth], ...recalculatedColumnWidths] as [Key, number][]).map(([key, width]) => ({key, width}));\n return allAffectedColumns;\n }\n\n // This function is regenerated whenever columnWidthsRef.current changes in order to get the new correct ref value.\n let getColumnWidth = useCallback((key: Key): number => columnWidthsRef.current.get(key) ?? 0, [columnWidthsRef.current]);\n\n let getColumnMinWidth = useCallback((key: Key) => {\n const columnIndex = columns.findIndex(col => col.key === key);\n if (columnIndex === -1) {\n return;\n }\n return getMinWidth(columns[columnIndex].props.minWidth, tableWidth.current);\n }, [columns]);\n\n let getColumnMaxWidth = useCallback((key: Key) => {\n const columnIndex = columns.findIndex(col => col.key === key);\n if (columnIndex === -1) {\n return;\n }\n return getMaxWidth(columns[columnIndex].props.maxWidth, tableWidth.current);\n }, [columns]);\n\n return {\n columnWidths: columnWidthsRef,\n setTableWidth,\n onColumnResize,\n onColumnResizeStart,\n onColumnResizeEnd,\n getColumnWidth,\n getColumnMinWidth,\n getColumnMaxWidth,\n isResizingColumn: isResizing.current\n };\n}\n","import {GridNode} from '@react-types/grid';\nimport {Key} from 'react';\n\ntype mappedColumn<T> = GridNode<T> & {\n index: number,\n delta: number,\n calculatedWidth?: number\n};\n\nexport function getContentWidth(widths: Map<Key, number>): number {\n return Array.from(widths).map(e => e[1]).reduce((acc, cur) => acc + cur, 0);\n}\n\n// numbers and percents are considered static. *fr units or a lack of units are considered dynamic.\nexport function isStatic(width: number | string): boolean {\n return width != null && (!isNaN(width as number) || (String(width)).match(/^(\\d+)(?=%$)/) !== null);\n} \n\nfunction parseFractionalUnit(width: string): number {\n if (!width) {\n return 1;\n } \n let match = width.match(/^(\\d+)(?=fr$)/);\n // if width is the incorrect format, just deafult it to a 1fr\n if (!match) {\n console.warn(`width: ${width} is not a supported format, width should be a number (ex. 150), percentage (ex. '50%') or fr unit (ex. '2fr')`, \n 'defaulting to \\'1fr\\'');\n return 1;\n }\n return parseInt(match[0], 10);\n}\n\nexport function parseStaticWidth(width: number | string, tableWidth: number): number {\n if (typeof width === 'string') {\n let match = width.match(/^(\\d+)(?=%$)/);\n if (!match) {\n throw new Error('Only percentages or numbers are supported for static column widths');\n }\n return tableWidth * (parseInt(match[0], 10) / 100);\n }\n return width;\n}\n \n \nexport function getMaxWidth(maxWidth: number | string, tableWidth: number): number {\n return maxWidth != null\n ? parseStaticWidth(maxWidth, tableWidth)\n : Infinity;\n}\n\nexport function getMinWidth(minWidth: number | string, tableWidth: number): number {\n return minWidth != null\n ? parseStaticWidth(minWidth, tableWidth)\n : 75;\n}\n\nfunction mapDynamicColumns<T>(dynamicColumns: GridNode<T>[], availableSpace: number, tableWidth: number): mappedColumn<T>[] {\n let fractions = dynamicColumns.reduce(\n (sum, column) => sum + parseFractionalUnit(column.props.defaultWidth),\n 0\n );\n \n let columns = dynamicColumns.map((column, index) => {\n const targetWidth =\n (parseFractionalUnit(column.props.defaultWidth) * availableSpace) / fractions;\n const delta = Math.max(\n getMinWidth(column.props.minWidth, tableWidth) - targetWidth,\n targetWidth - getMaxWidth(column.props.maxWidth, tableWidth)\n );\n\n return {\n ...column,\n index,\n delta \n };\n });\n \n return columns;\n}\n\nfunction findDynamicColumnWidths<T>(dynamicColumns: mappedColumn<T>[], availableSpace: number, tableWidth: number): mappedColumn<T>[] {\n let fractions = dynamicColumns.reduce(\n (sum, col) => sum + parseFractionalUnit(col.props.defaultWidth),\n 0\n );\n\n const columns = dynamicColumns.map((column) => {\n const targetWidth =\n (parseFractionalUnit(column.props.defaultWidth) * availableSpace) / fractions;\n let width = Math.max(\n getMinWidth(column.props.minWidth, tableWidth),\n Math.min(Math.floor(targetWidth), getMaxWidth(column.props.maxWidth, tableWidth))\n );\n column.calculatedWidth = width;\n availableSpace -= width;\n fractions -= parseFractionalUnit(column.props.defaultWidth);\n return column;\n });\n\n return columns;\n} \n \nexport function getDynamicColumnWidths<T>(dynamicColumns: GridNode<T>[], availableSpace: number, tableWidth: number) {\n let columns = mapDynamicColumns(dynamicColumns, availableSpace, tableWidth);\n \n columns.sort((a, b) => b.delta - a.delta);\n columns = findDynamicColumnWidths(columns, availableSpace, tableWidth);\n columns.sort((a, b) => a.index - b.index);\n \n return columns;\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {AffectedColumnWidths, useTableColumnResizeState} from './useTableColumnResizeState';\nimport {CollectionBase, Node, SelectionMode, Sortable, SortDescriptor, SortDirection} from '@react-types/shared';\nimport {GridNode} from '@react-types/grid';\nimport {GridState, useGridState} from '@react-stately/grid';\nimport {TableCollection as ITableCollection} from '@react-types/table';\nimport {Key, MutableRefObject, useMemo} from 'react';\nimport {MultipleSelectionStateProps} from '@react-stately/selection';\nimport {TableCollection} from './TableCollection';\nimport {useCollection} from '@react-stately/collections';\n\nexport interface TableState<T> extends GridState<T, ITableCollection<T>> {\n /** A collection of rows and columns in the table. */\n collection: ITableCollection<T>,\n /** Whether the row selection checkboxes should be displayed. */\n showSelectionCheckboxes: boolean,\n /** The current sorted column and direction. */\n sortDescriptor: SortDescriptor,\n /** Calls the provided onSortChange handler with the provided column key and sort direction. */\n sort(columnKey: Key, direction?: 'ascending' | 'descending'): void,\n /** A map of all the column widths by key. */\n columnWidths: MutableRefObject<Map<Key, number>>,\n /** Boolean for if a column is being resized. */\n isResizingColumn: boolean,\n /** Getter for column width. */\n getColumnWidth(key: Key): number,\n /** Getter for column min width. */\n getColumnMinWidth(key: Key): number,\n /** Getter for column max widths. */\n getColumnMaxWidth(key: Key): number,\n /** Trigger a resize and recalc. */\n onColumnResize: (column: GridNode<T>, width: number) => void,\n /** Runs at the start of resizing. */\n onColumnResizeStart: () => void,\n /** Triggers the onColumnResizeEnd prop. */\n onColumnResizeEnd: () => void,\n /** Need to be able to set the table width so that it can be used to calculate the column widths, this will trigger a recalc. */\n setTableWidth: (width: number) => void\n}\n\nexport interface CollectionBuilderContext<T> {\n showSelectionCheckboxes: boolean,\n selectionMode: SelectionMode,\n columns: Node<T>[]\n}\n\nexport interface TableStateProps<T> extends CollectionBase<T>, MultipleSelectionStateProps, Sortable {\n /** Whether the row selection checkboxes should be displayed. */\n showSelectionCheckboxes?: boolean,\n /** Function for determining the default width of columns. */\n getDefaultWidth?: (props) => string | number,\n /** Callback that is invoked during the entirety of the resize event. */\n onColumnResize?: (affectedColumnWidths: AffectedColumnWidths) => void,\n /** Callback that is invoked when the resize event is ended. */\n onColumnResizeEnd?: (affectedColumnWidths: AffectedColumnWidths) => void\n}\n\nconst OPPOSITE_SORT_DIRECTION = {\n ascending: 'descending' as SortDirection,\n descending: 'ascending' as SortDirection\n};\n\n/**\n * Provides state management for a table component. Handles building a collection\n * of columns and rows from props. In addition, it tracks row selection and manages sort order changes.\n */\nexport function useTableState<T extends object>(props: TableStateProps<T>): TableState<T> {\n let {selectionMode = 'none'} = props;\n\n let context = useMemo(() => ({\n showSelectionCheckboxes: props.showSelectionCheckboxes && selectionMode !== 'none',\n selectionMode,\n columns: []\n }), [props.children, props.showSelectionCheckboxes, selectionMode]);\n\n let collection = useCollection<T, TableCollection<T>>(\n props,\n (nodes, prev) => new TableCollection(nodes, prev, context),\n context\n );\n let {disabledKeys, selectionManager} = useGridState({...props, collection});\n \n const tableColumnResizeState = useTableColumnResizeState({columns: collection.columns, getDefaultWidth: props.getDefaultWidth, onColumnResize: props.onColumnResize, onColumnResizeEnd: props.onColumnResizeEnd});\n\n\n return {\n collection,\n disabledKeys,\n selectionManager,\n showSelectionCheckboxes: props.showSelectionCheckboxes || false,\n sortDescriptor: props.sortDescriptor,\n sort(columnKey: Key, direction?: 'ascending' | 'descending') {\n props.onSortChange({\n column: columnKey,\n direction: direction ?? (props.sortDescriptor?.column === columnKey\n ? OPPOSITE_SORT_DIRECTION[props.sortDescriptor.direction]\n : 'ascending')\n });\n },\n ...tableColumnResizeState\n };\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\nimport {GridCollection} from '@react-stately/grid';\nimport {GridNode} from '@react-types/grid';\nimport {Key} from 'react';\n\ninterface GridCollectionOptions {\n showSelectionCheckboxes?: boolean\n}\n\nconst ROW_HEADER_COLUMN_KEY = 'row-header-column-' + Math.random().toString(36).slice(2);\nconst RESIZE_BUFFER_COLUMN_KEY = 'resize-buffer-column' + Math.random().toString(36).slice(2);\n\nfunction buildHeaderRows<T>(keyMap: Map<Key, GridNode<T>>, columnNodes: GridNode<T>[]): GridNode<T>[] {\n let columns = [];\n let seen = new Map();\n for (let column of columnNodes) {\n let parentKey = column.parentKey;\n let col = [column];\n\n while (parentKey) {\n let parent: GridNode<T> = keyMap.get(parentKey);\n\n // If we've already seen this parent, than it is shared\n // with a previous column. If the current column is taller\n // than the previous column, than we need to shift the parent\n // in the previous column so it's level with the current column.\n if (seen.has(parent)) {\n parent.colspan++;\n\n let {column, index} = seen.get(parent);\n if (index > col.length) {\n break;\n }\n\n for (let i = index; i < col.length; i++) {\n column.splice(i, 0, null);\n }\n\n // Adjust shifted indices\n for (let i = col.length; i < column.length; i++) {\n if (column[i] && seen.has(column[i])) {\n seen.get(column[i]).index = i;\n }\n }\n } else {\n parent.colspan = 1;\n col.push(parent);\n seen.set(parent, {column: col, index: col.length - 1});\n }\n\n parentKey = parent.parentKey;\n }\n\n columns.push(col);\n column.index = columns.length - 1;\n }\n\n let maxLength = Math.max(...columns.map(c => c.length));\n let headerRows = Array(maxLength).fill(0).map(() => []);\n\n // Convert columns into rows.\n let colIndex = 0;\n for (let column of columns) {\n let i = maxLength - 1;\n for (let item of column) {\n if (item) {\n // Fill the space up until the current column with a placeholder\n let row = headerRows[i];\n let rowLength = row.reduce((p, c) => p + c.colspan, 0);\n if (rowLength < colIndex) {\n let placeholder: GridNode<T> = {\n type: 'placeholder',\n key: 'placeholder-' + item.key,\n colspan: colIndex - rowLength,\n index: rowLength,\n value: null,\n rendered: null,\n level: i,\n hasChildNodes: false,\n childNodes: [],\n textValue: null\n };\n\n if (row.length > 0) {\n row[row.length - 1].nextKey = placeholder.key;\n placeholder.prevKey = row[row.length - 1].key;\n }\n\n row.push(placeholder);\n }\n\n if (row.length > 0) {\n row[row.length - 1].nextKey = item.key;\n item.prevKey = row[row.length - 1].key;\n }\n\n item.level = i;\n item.index = colIndex;\n row.push(item);\n }\n\n i--;\n }\n\n colIndex++;\n }\n\n // Add placeholders at the end of each row that is shorter than the maximum\n let i = 0;\n for (let row of headerRows) {\n let rowLength = row.reduce((p, c) => p + c.colspan, 0);\n if (rowLength < columnNodes.length) {\n let placeholder: GridNode<T> = {\n type: 'placeholder',\n key: 'placeholder-' + row[row.length - 1].key,\n colspan: columnNodes.length - rowLength,\n index: rowLength,\n value: null,\n rendered: null,\n level: i,\n hasChildNodes: false,\n childNodes: [],\n textValue: null,\n prevKey: row[row.length - 1].key\n };\n\n row.push(placeholder);\n }\n\n i++;\n }\n\n return headerRows.map((childNodes, index) => {\n let row: GridNode<T> = {\n type: 'headerrow',\n key: 'headerrow-' + index,\n index,\n value: null,\n rendered: null,\n level: 0,\n hasChildNodes: true,\n childNodes,\n textValue: null\n };\n\n return row;\n });\n}\n\nexport class TableCollection<T> extends GridCollection<T> {\n headerRows: GridNode<T>[];\n columns: GridNode<T>[];\n rowHeaderColumnKeys: Set<Key>;\n body: GridNode<T>;\n\n constructor(nodes: Iterable<GridNode<T>>, prev?: TableCollection<T>, opts?: GridCollectionOptions) {\n let rowHeaderColumnKeys: Set<Key> = new Set();\n let body: GridNode<T>;\n let columns = [];\n\n // Add cell for selection checkboxes if needed.\n if (opts?.showSelectionCheckboxes) {\n let rowHeaderColumn: GridNode<T> = {\n type: 'column',\n key: ROW_HEADER_COLUMN_KEY,\n value: null,\n textValue: '',\n level: 0,\n index: 0,\n hasChildNodes: false,\n rendered: null,\n childNodes: [],\n props: {\n isSelectionCell: true\n }\n };\n\n columns.unshift(rowHeaderColumn);\n }\n\n let rows = [];\n let columnKeyMap = new Map();\n let visit = (node: GridNode<T>) => {\n switch (node.type) {\n case 'body':\n body = node;\n break;\n case 'column':\n columnKeyMap.set(node.key, node);\n if (!node.hasChildNodes) {\n columns.push(node);\n\n if (node.props.isRowHeader) {\n rowHeaderColumnKeys.add(node.key);\n }\n }\n break;\n case 'item':\n rows.push(node);\n return; // do not go into childNodes\n }\n for (let child of node.childNodes) {\n visit(child);\n }\n };\n\n for (let node of nodes) {\n visit(node);\n }\n\n if (Array.from(nodes).some(node => node.props?.allowsResizing)) {\n /* \n If the table content width > table width, a horizontal scroll bar is present.\n If a user tries to resize a column, making it smaller while they are scrolled to the\n end of the content horizontally, it shrinks the total table content width, causing\n things to snap around and breaks the resize behavior.\n \n To fix this, we add a resize buffer column (aka \"spooky column\") to the end of the table.\n The width of this column defaults to 0. If you try and shrink a column and the width of the\n table contents > table width, then the \"spooky column\" will grow to take up the difference\n so that the total table content width remains constant while you are resizing. Once you\n finish resizing, the \"spooky column\" snaps back to 0.\n */\n let resizeBufferColumn: GridNode<T> = {\n type: 'column',\n key: RESIZE_BUFFER_COLUMN_KEY,\n value: null,\n textValue: '',\n level: 0,\n index: columns.length,\n hasChildNodes: false,\n rendered: null,\n childNodes: [],\n props: {\n isResizeBuffer: true,\n defaultWidth: 0\n }\n };\n columns.push(resizeBufferColumn);\n }\n\n let headerRows = buildHeaderRows(columnKeyMap, columns) as GridNode<T>[];\n headerRows.forEach((row, i) => rows.splice(i, 0, row));\n\n super({\n columnCount: columns.length,\n items: rows,\n visitNode: node => {\n node.column = columns[node.index];\n return node;\n }\n });\n this.columns = columns;\n this.rowHeaderColumnKeys = rowHeaderColumnKeys;\n this.body = body;\n this.headerRows = headerRows;\n\n // Default row header column to the first one.\n if (this.rowHeaderColumnKeys.size === 0) {\n this.rowHeaderColumnKeys.add(this.columns[opts?.showSelectionCheckboxes ? 1 : 0].key);\n }\n }\n\n *[Symbol.iterator]() {\n yield* this.body.childNodes;\n }\n\n get size() {\n return [...this.body.childNodes].length;\n }\n\n getKeys() {\n return this.keyMap.keys();\n }\n\n getKeyBefore(key: Key) {\n let node = this.keyMap.get(key);\n return node ? node.prevKey : null;\n }\n\n getKeyAfter(key: Key) {\n let node = this.keyMap.get(key);\n return node ? node.nextKey : null;\n }\n\n getFirstKey() {\n return [...this.body.childNodes][0]?.key;\n }\n\n getLastKey() {\n let rows = [...this.body.childNodes];\n return rows[rows.length - 1]?.key;\n }\n\n getItem(key: Key) {\n return this.keyMap.get(key);\n }\n\n at(idx: number) {\n const keys = [...this.getKeys()];\n return this.getItem(keys[idx]);\n }\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {PartialNode} from '@react-stately/collections';\nimport React, {ReactElement} from 'react';\nimport {TableHeaderProps} from '@react-types/table';\n\nfunction TableHeader<T>(props: TableHeaderProps<T>): ReactElement { // eslint-disable-line @typescript-eslint/no-unused-vars\n return null;\n}\n\nTableHeader.getCollectionNode = function* getCollectionNode<T>(props: TableHeaderProps<T>): Generator<PartialNode<T>, void, any> {\n let {children, columns} = props;\n if (typeof children === 'function') {\n if (!columns) {\n throw new Error('props.children was a function but props.columns is missing');\n }\n\n for (let column of columns) {\n yield {\n type: 'column',\n value: column,\n renderer: children\n };\n }\n } else {\n let columns: PartialNode<T>[] = [];\n React.Children.forEach(children, column => {\n columns.push({\n type: 'column',\n element: column\n });\n });\n\n yield* columns;\n }\n};\n\n/**\n * A TableHeader is a container for the Column elements in a Table. Columns can be statically defined\n * as children, or generated dynamically using a function based on the data passed to the `columns` prop.\n */\n// We don't want getCollectionNode to show up in the type definition\nlet _TableHeader = TableHeader as <T>(props: TableHeaderProps<T>) => JSX.Element;\nexport {_TableHeader as TableHeader};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {PartialNode} from '@react-stately/collections';\nimport React, {ReactElement} from 'react';\nimport {TableBodyProps} from '@react-types/table';\n\nfunction TableBody<T>(props: TableBodyProps<T>): ReactElement { // eslint-disable-line @typescript-eslint/no-unused-vars\n return null;\n}\n\nTableBody.getCollectionNode = function* getCollectionNode<T>(props: TableBodyProps<T>): Generator<PartialNode<T>> {\n let {children, items} = props;\n yield {\n type: 'body',\n hasChildNodes: true,\n props,\n *childNodes() {\n if (typeof children === 'function') {\n if (!items) {\n throw new Error('props.children was a function but props.items is missing');\n }\n\n for (let item of items) {\n yield {\n type: 'item',\n value: item,\n renderer: children\n };\n }\n } else {\n let items: PartialNode<T>[] = [];\n React.Children.forEach(children, item => {\n items.push({\n type: 'item',\n element: item\n });\n });\n\n yield* items;\n }\n }\n };\n};\n\n/**\n * A TableBody is a container for the Row elements of a Table. Rows can be statically defined\n * as children, or generated dynamically using a function based on the data passed to the `items` prop.\n */\n// We don't want getCollectionNode to show up in the type definition\nlet _TableBody = TableBody as <T>(props: TableBodyProps<T>) => JSX.Element;\nexport {_TableBody as TableBody};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {CollectionBuilderContext} from './useTableState';\nimport {ColumnProps} from '@react-types/table';\nimport {GridNode} from '@react-types/grid';\nimport {PartialNode} from '@react-stately/collections';\nimport React, {ReactElement} from 'react';\n\nfunction Column<T>(props: ColumnProps<T>): ReactElement { // eslint-disable-line @typescript-eslint/no-unused-vars\n return null;\n}\n\nColumn.getCollectionNode = function* getCollectionNode<T>(props: ColumnProps<T>, context: CollectionBuilderContext<T>): Generator<PartialNode<T>, void, GridNode<T>[]> {\n let {title, children, childColumns} = props;\n\n let rendered = title || children;\n let textValue = props.textValue || (typeof rendered === 'string' ? rendered : '') || props['aria-label'];\n\n let fullNodes = yield {\n type: 'column',\n hasChildNodes: !!childColumns || (title && React.Children.count(children) > 0),\n rendered,\n textValue,\n props,\n *childNodes() {\n if (childColumns) {\n for (let child of childColumns) {\n yield {\n type: 'column',\n value: child\n };\n }\n } else if (title) {\n let childColumns: PartialNode<T>[] = [];\n React.Children.forEach(children, child => {\n childColumns.push({\n type: 'column',\n element: child as ReactElement<ColumnProps<T>>\n });\n });\n\n yield* childColumns;\n }\n },\n shouldInvalidate(newContext: CollectionBuilderContext<T>) {\n // This is a bit of a hack, but it works.\n // If this method is called, then there's a cached version of this node available.\n // But, we need to keep the list of columns in the new context up to date.\n updateContext(newContext);\n return false;\n }\n };\n\n let updateContext = (context: CollectionBuilderContext<T>) => {\n // register leaf columns on the context so that <Row> can access them\n for (let node of fullNodes) {\n if (!node.hasChildNodes) {\n context.columns.push(node);\n }\n }\n };\n\n updateContext(context);\n};\n\n/**\n * A Column represents a field of each item within a Table. Columns may also contain nested\n * Column elements to represent column groups. Nested columns can be statically defined as\n * children, or dynamically generated using a function based on the `childColumns` prop.\n */\n// We don't want getCollectionNode to show up in the type definition\nlet _Column = Column as <T>(props: ColumnProps<T>) => JSX.Element;\nexport {_Column as Column};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {CollectionBuilderContext} from './useTableState';\nimport {PartialNode} from '@react-stately/collections';\nimport React, {ReactElement} from 'react';\nimport {RowProps} from '@react-types/table';\n\nfunction Row(props: RowProps): ReactElement { // eslint-disable-line @typescript-eslint/no-unused-vars\n return null;\n}\n\nRow.getCollectionNode = function* getCollectionNode<T>(props: RowProps, context: CollectionBuilderContext<T>): Generator<PartialNode<T>> {\n let {children, textValue} = props;\n\n yield {\n type: 'item',\n props: props,\n textValue,\n 'aria-label': props['aria-label'],\n hasChildNodes: true,\n *childNodes() {\n // Process cells first\n if (context.showSelectionCheckboxes && context.selectionMode !== 'none') {\n yield {\n type: 'cell',\n key: 'header', // this is combined with the row key by CollectionBuilder\n props: {\n isSelectionCell: true\n }\n };\n }\n\n if (typeof children === 'function') {\n for (let column of context.columns) {\n yield {\n type: 'cell',\n element: children(column.key),\n key: column.key // this is combined with the row key by CollectionBuilder\n };\n }\n } else {\n let cells: PartialNode<T>[] = [];\n React.Children.forEach(children, cell => {\n cells.push({\n type: 'cell',\n element: cell\n });\n });\n\n if (cells.length !== context.columns.length) {\n throw new Error(`Cell count must match column count. Found ${cells.length} cells and ${context.columns.length} columns.`);\n }\n\n yield* cells;\n }\n },\n shouldInvalidate(newContext: CollectionBuilderContext<T>) {\n // Invalidate all rows if the columns changed.\n return newContext.columns.length !== context.columns.length ||\n newContext.columns.some((c, i) => c.key !== context.columns[i].key) ||\n newContext.showSelectionCheckboxes !== context.showSelectionCheckboxes ||\n newContext.selectionMode !== context.selectionMode;\n }\n };\n};\n\n/**\n * A Row represents a single item in a Table and contains Cell elements for each column.\n * Cells can be statically defined as children, or generated dynamically using a function\n * based on the columns defined in the TableHeader.\n */\n// We don't want getCollectionNode to show up in the type definition\nlet _Row = Row as (props: RowProps) => JSX.Element;\nexport {_Row as Row};\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {CellProps} from '@react-types/table';\nimport {PartialNode} from '@react-stately/collections';\nimport {ReactElement} from 'react';\n\nfunction Cell(props: CellProps): ReactElement { // eslint-disable-line @typescript-eslint/no-unused-vars\n return null;\n}\n\nCell.getCollectionNode = function* getCollectionNode<T>(props: CellProps): Generator<PartialNode<T>> {\n let {children} = props;\n\n let textValue = props.textValue || (typeof children === 'string' ? children : '') || props['aria-label'] || '';\n yield {\n type: 'cell',\n props: props,\n rendered: children,\n textValue,\n 'aria-label': props['aria-label'],\n hasChildNodes: false\n };\n};\n\n/**\n * A Cell represents the value of a single Column within a Table Row.\n */\n// We don't want getCollectionNode to show up in the type definition\nlet _Cell = Cell as (props: CellProps) => JSX.Element;\nexport {_Cell as Cell};\n"],"names":[],"version":3,"file":"main.js.map"}