@kdcloudjs/table 1.1.3 → 1.1.4-canary.2
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/@kdcloudjs/table.css +1 -1
- package/dist/@kdcloudjs/table.js +642 -288
- package/dist/@kdcloudjs/table.js.map +1 -1
- package/dist/@kdcloudjs/table.min.css +1 -1
- package/dist/@kdcloudjs/table.min.js +10 -9
- package/dist/@kdcloudjs/table.min.js.map +1 -1
- package/es/table/base/html-table.js +1 -1
- package/es/table/base/styles.d.ts +10 -2
- package/es/table/base/styles.js +17 -7
- package/es/table/base/table.d.ts +2 -0
- package/es/table/base/table.js +31 -53
- package/es/table/base/utils.d.ts +7 -0
- package/es/table/base/utils.js +29 -1
- package/es/table/pipeline/features/columnDrag.js +21 -11
- package/es/table/pipeline/features/columnFilter.d.ts +4 -2
- package/es/table/pipeline/features/columnFilter.js +39 -17
- package/es/table/pipeline/features/columnResizeWidth.js +1 -1
- package/es/table/pipeline/features/filter/DefaultFilterContent.js +22 -2
- package/es/table/pipeline/features/filter/DefaultFilterIcon.d.ts +5 -0
- package/es/table/pipeline/features/filter/DefaultFilterIcon.js +20 -0
- package/es/table/pipeline/features/filter/Filter.d.ts +3 -2
- package/es/table/pipeline/features/filter/Filter.js +44 -34
- package/es/table/pipeline/features/filter/FilterPanel.d.ts +2 -1
- package/es/table/pipeline/features/filter/FilterPanel.js +29 -20
- package/es/table/pipeline/features/filter/util.js +4 -4
- package/es/table/pipeline/features/footerDataSource.d.ts +9 -0
- package/es/table/pipeline/features/footerDataSource.js +25 -0
- package/es/table/pipeline/features/index.d.ts +1 -0
- package/es/table/pipeline/features/index.js +2 -1
- package/es/table/pipeline/features/multiSelect.js +7 -2
- package/es/table/pipeline/features/rangeSelection.d.ts +1 -1
- package/es/table/pipeline/features/rangeSelection.js +156 -28
- package/es/table/pipeline/features/singleSelect.js +4 -0
- package/es/table/pipeline/features/treeMode.d.ts +2 -0
- package/es/table/pipeline/features/treeMode.js +18 -20
- package/es/table/pipeline/pipeline.d.ts +5 -1
- package/es/table/pipeline/pipeline.js +12 -11
- package/es/table/utils/keyCode.d.ts +4 -0
- package/es/table/utils/keyCode.js +4 -0
- package/es/table/utils/mergeCellProps.js +2 -6
- package/lib/table/base/html-table.js +1 -1
- package/lib/table/base/styles.d.ts +10 -2
- package/lib/table/base/styles.js +17 -7
- package/lib/table/base/table.d.ts +2 -0
- package/lib/table/base/table.js +31 -53
- package/lib/table/base/utils.d.ts +7 -0
- package/lib/table/base/utils.js +35 -1
- package/lib/table/pipeline/features/columnDrag.js +21 -11
- package/lib/table/pipeline/features/columnFilter.d.ts +4 -2
- package/lib/table/pipeline/features/columnFilter.js +37 -17
- package/lib/table/pipeline/features/columnResizeWidth.js +1 -1
- package/lib/table/pipeline/features/filter/DefaultFilterContent.js +23 -1
- package/lib/table/pipeline/features/filter/DefaultFilterIcon.d.ts +5 -0
- package/lib/table/pipeline/features/filter/DefaultFilterIcon.js +30 -0
- package/lib/table/pipeline/features/filter/Filter.d.ts +3 -2
- package/lib/table/pipeline/features/filter/Filter.js +46 -34
- package/lib/table/pipeline/features/filter/FilterPanel.d.ts +2 -1
- package/lib/table/pipeline/features/filter/FilterPanel.js +30 -19
- package/lib/table/pipeline/features/filter/util.js +4 -4
- package/lib/table/pipeline/features/footerDataSource.d.ts +9 -0
- package/lib/table/pipeline/features/footerDataSource.js +41 -0
- package/lib/table/pipeline/features/index.d.ts +1 -0
- package/lib/table/pipeline/features/index.js +15 -1
- package/lib/table/pipeline/features/multiSelect.js +6 -1
- package/lib/table/pipeline/features/rangeSelection.d.ts +1 -1
- package/lib/table/pipeline/features/rangeSelection.js +158 -30
- package/lib/table/pipeline/features/singleSelect.js +4 -0
- package/lib/table/pipeline/features/treeMode.d.ts +2 -0
- package/lib/table/pipeline/features/treeMode.js +19 -22
- package/lib/table/pipeline/pipeline.d.ts +5 -1
- package/lib/table/pipeline/pipeline.js +13 -11
- package/lib/table/utils/keyCode.d.ts +4 -0
- package/lib/table/utils/keyCode.js +11 -0
- package/lib/table/utils/mergeCellProps.js +2 -6
- package/package.json +3 -3
|
@@ -10,40 +10,42 @@ import { map, takeUntil } from 'rxjs/operators';
|
|
|
10
10
|
import { Classes } from '../../base/styles';
|
|
11
11
|
import cx from 'classnames';
|
|
12
12
|
export var rangeSelectionKey = 'rangeSelection';
|
|
13
|
-
export var
|
|
13
|
+
export var lastClickCellKey = 'lastClickCell';
|
|
14
14
|
export function rangeSelection(opts) {
|
|
15
15
|
return function step(pipeline) {
|
|
16
16
|
var SCROLL_SIZE = 30;
|
|
17
17
|
var tableBody = pipeline.ref.current.domHelper && pipeline.ref.current.domHelper.tableBody;
|
|
18
|
+
var tableFooter = pipeline.ref.current.domHelper && pipeline.ref.current.domHelper.tableFooter;
|
|
18
19
|
|
|
19
20
|
if (!tableBody) {
|
|
20
21
|
return pipeline;
|
|
21
22
|
}
|
|
22
23
|
|
|
23
24
|
var columns = pipeline.getColumns();
|
|
25
|
+
var dataSource = pipeline.getDataSource();
|
|
24
26
|
|
|
25
27
|
var rangeSelectedChange = function rangeSelectedChange(rangeSelection) {
|
|
26
28
|
var _a;
|
|
27
29
|
|
|
28
30
|
pipeline.setStateAtKey(rangeSelectionKey, rangeSelection);
|
|
29
31
|
(_a = opts === null || opts === void 0 ? void 0 : opts.rangeSelectedChange) === null || _a === void 0 ? void 0 : _a.call(opts, rangeSelection);
|
|
30
|
-
};
|
|
31
|
-
// pipeline.setFeatureOptions(rangeSelectionKey, {
|
|
32
|
-
// optionKey: rangeSelectionKey,
|
|
33
|
-
// rangeSelectedChange: rangeSelectedChange
|
|
34
|
-
// })
|
|
35
|
-
// }
|
|
36
|
-
|
|
32
|
+
};
|
|
37
33
|
|
|
38
34
|
var setRangeSelection = function setRangeSelection(startDragCell, draggingCell) {
|
|
39
|
-
if (!startDragCell || !draggingCell
|
|
35
|
+
if (!startDragCell || !draggingCell) return;
|
|
40
36
|
var rangeColumns = getRangeColumns(startDragCell, draggingCell, columns);
|
|
41
|
-
|
|
37
|
+
|
|
38
|
+
var _getRangeSelectionRow = getRangeSelectionRowInfo(startDragCell, draggingCell, dataSource),
|
|
39
|
+
startRow = _getRangeSelectionRow.startRow,
|
|
40
|
+
endRow = _getRangeSelectionRow.endRow,
|
|
41
|
+
footerRowRange = _getRangeSelectionRow.footerRowRange;
|
|
42
|
+
|
|
42
43
|
var rangeSelection = {
|
|
43
|
-
startRow:
|
|
44
|
-
endRow:
|
|
44
|
+
startRow: startRow,
|
|
45
|
+
endRow: endRow,
|
|
45
46
|
columns: rangeColumns,
|
|
46
|
-
startColumn: startDragCell.column
|
|
47
|
+
startColumn: startDragCell.column,
|
|
48
|
+
footerRowRange: footerRowRange
|
|
47
49
|
};
|
|
48
50
|
rangeSelectedChange(rangeSelection);
|
|
49
51
|
};
|
|
@@ -54,23 +56,23 @@ export function rangeSelection(opts) {
|
|
|
54
56
|
|
|
55
57
|
if (clickCell) {
|
|
56
58
|
if (event.shiftKey) {
|
|
57
|
-
var _lastClickCell = pipeline.getStateAtKey(
|
|
59
|
+
var _lastClickCell = pipeline.getStateAtKey(lastClickCellKey);
|
|
58
60
|
|
|
59
61
|
if (_lastClickCell) {
|
|
60
62
|
setRangeSelection(_lastClickCell, clickCell);
|
|
61
63
|
} else {
|
|
62
64
|
// 第一次进来就按住shift键,这时候要记住点击的单元格
|
|
63
|
-
pipeline.setStateAtKey(
|
|
65
|
+
pipeline.setStateAtKey(lastClickCellKey, clickCell);
|
|
64
66
|
}
|
|
65
67
|
} else {
|
|
66
|
-
pipeline.setStateAtKey(
|
|
67
|
-
|
|
68
|
+
pipeline.setStateAtKey(lastClickCellKey, clickCell);
|
|
69
|
+
setRangeSelection(clickCell, clickCell);
|
|
68
70
|
}
|
|
69
71
|
}
|
|
70
72
|
};
|
|
71
73
|
|
|
72
74
|
var onMouseDown = function onMouseDown(mouseDownEvent) {
|
|
73
|
-
if (mouseDownEvent.button !== 0 || !isElementInEventPath(tableBody, mouseDownEvent.nativeEvent)) return; // mouseDownEvent.preventDefault()
|
|
75
|
+
if (mouseDownEvent.button !== 0 || !(isElementInEventPath(tableBody, mouseDownEvent.nativeEvent) || isElementInEventPath(tableFooter, mouseDownEvent.nativeEvent))) return; // mouseDownEvent.preventDefault()
|
|
74
76
|
// shift + 点击选中
|
|
75
77
|
|
|
76
78
|
shiftKeySelect(mouseDownEvent);
|
|
@@ -126,10 +128,11 @@ export function rangeSelection(opts) {
|
|
|
126
128
|
};
|
|
127
129
|
|
|
128
130
|
var onKeyDown = function onKeyDown(e) {
|
|
129
|
-
if (!isElementInEventPath(tableBody, e.nativeEvent)) return;
|
|
131
|
+
if (!(isElementInEventPath(tableBody, e.nativeEvent) || isElementInEventPath(tableFooter, e.nativeEvent))) return;
|
|
130
132
|
|
|
131
133
|
if ((e.ctrlKey || e.metaKey) && e.key === 'a') {
|
|
132
134
|
var rowLen = pipeline.getDataSource().length;
|
|
135
|
+
var footerDataSource = pipeline.getFooterDataSource() || [];
|
|
133
136
|
|
|
134
137
|
if (columns.length && rowLen) {
|
|
135
138
|
opts.preventkDefaultOfKeyDownEvent !== false && e.preventDefault();
|
|
@@ -137,7 +140,11 @@ export function rangeSelection(opts) {
|
|
|
137
140
|
startRow: 0,
|
|
138
141
|
endRow: rowLen - 1,
|
|
139
142
|
columns: columns,
|
|
140
|
-
startColumn: columns[0]
|
|
143
|
+
startColumn: columns[0],
|
|
144
|
+
footerRowRange: footerDataSource.length > 0 ? {
|
|
145
|
+
startRow: 0,
|
|
146
|
+
endRow: footerDataSource.length - 1
|
|
147
|
+
} : null
|
|
141
148
|
});
|
|
142
149
|
}
|
|
143
150
|
}
|
|
@@ -146,7 +153,8 @@ export function rangeSelection(opts) {
|
|
|
146
153
|
pipeline.addTableProps({
|
|
147
154
|
onMouseDown: onMouseDown,
|
|
148
155
|
onKeyDown: onKeyDown,
|
|
149
|
-
tabIndex: -1
|
|
156
|
+
tabIndex: -1,
|
|
157
|
+
className: cx([Classes.rangeSelection])
|
|
150
158
|
}); // todo: 后面可以把mousedown放到一个流里面
|
|
151
159
|
|
|
152
160
|
return pipeline.mapColumns(makeRecursiveMapper(function (col) {
|
|
@@ -162,15 +170,29 @@ export function rangeSelection(opts) {
|
|
|
162
170
|
var _cx;
|
|
163
171
|
|
|
164
172
|
var prevCellProps = prevGetCellProps === null || prevGetCellProps === void 0 ? void 0 : prevGetCellProps(value, record, rowIndex);
|
|
173
|
+
var isInFooter = record[pipeline.getFeatureOptions('footerRowMetaKey')];
|
|
165
174
|
var startRow = rangeSelection.startRow,
|
|
166
175
|
endRow = rangeSelection.endRow,
|
|
167
|
-
columns = rangeSelection.columns
|
|
168
|
-
|
|
169
|
-
|
|
176
|
+
columns = rangeSelection.columns,
|
|
177
|
+
footerRowRange = rangeSelection.footerRowRange;
|
|
178
|
+
|
|
179
|
+
var _getRowIndex = getRowIndex(startRow, endRow),
|
|
180
|
+
startRowIndex = _getRowIndex.startRowIndex,
|
|
181
|
+
endRowIndex = _getRowIndex.endRowIndex;
|
|
182
|
+
|
|
183
|
+
var _getFooterRowIndex = getFooterRowIndex(footerRowRange),
|
|
184
|
+
footerStartRowIndex = _getFooterRowIndex.startRowIndex,
|
|
185
|
+
footerEndRowIndex = _getFooterRowIndex.endRowIndex;
|
|
186
|
+
|
|
170
187
|
var startCol = columns[0];
|
|
171
188
|
var endCol = columns[columns.length - 1];
|
|
172
|
-
var
|
|
173
|
-
var
|
|
189
|
+
var bodyMatch = !isInFooter && rowIndex >= startRowIndex && rowIndex <= endRowIndex;
|
|
190
|
+
var footerMatch = isInFooter && footerRowRange && rowIndex >= footerStartRowIndex && rowIndex <= footerEndRowIndex;
|
|
191
|
+
var match = footerMatch || bodyMatch;
|
|
192
|
+
var matchSingleCell = match && isCellRangeSingleCell(rangeSelection); // 单个范围选中单元格不显示样式
|
|
193
|
+
|
|
194
|
+
var showCellRangeStyle = match && !matchSingleCell;
|
|
195
|
+
var className = cx((_cx = {}, _defineProperty(_cx, Classes.tableCellRangeSingleCell, matchSingleCell), _defineProperty(_cx, Classes.tableCellRangeSelected, showCellRangeStyle), _defineProperty(_cx, Classes.tableCellRangeTop, showCellRangeStyle && (isInFooter ? startRowIndex !== -1 ? false : rowIndex === footerStartRowIndex : rowIndex === startRowIndex)), _defineProperty(_cx, Classes.tableCellRangeLeft, showCellRangeStyle && col.code === startCol.code), _defineProperty(_cx, Classes.tableCellRangeBottom, showCellRangeStyle && (isInFooter ? rowIndex === footerEndRowIndex : footerRowRange ? false : rowIndex === endRowIndex)), _defineProperty(_cx, Classes.tableCellRangeRight, showCellRangeStyle && col.code === endCol.code), _cx));
|
|
174
196
|
return mergeCellProps(prevCellProps, {
|
|
175
197
|
className: className
|
|
176
198
|
});
|
|
@@ -196,7 +218,8 @@ function getTargetCell(target, columns) {
|
|
|
196
218
|
rowIndex: parseInt(target.getAttribute('data-rowindex')),
|
|
197
219
|
rowSpan: parseInt(target.getAttribute('rowspan') || 1),
|
|
198
220
|
code: columnCode,
|
|
199
|
-
column: column
|
|
221
|
+
column: column,
|
|
222
|
+
isInFooter: isEleInFooter(target)
|
|
200
223
|
}
|
|
201
224
|
};
|
|
202
225
|
}();
|
|
@@ -211,7 +234,19 @@ function getTargetCell(target, columns) {
|
|
|
211
234
|
}
|
|
212
235
|
|
|
213
236
|
function isSameCell(cell1, cell2) {
|
|
214
|
-
return cell1.rowIndex === cell2.rowIndex && cell1.code === cell2.code;
|
|
237
|
+
return cell1.rowIndex === cell2.rowIndex && cell1.code === cell2.code && cell1.isInFooter === cell2.isInFooter;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
function isEleInFooter(target) {
|
|
241
|
+
while (target && !target.classList.contains(Classes.artTable)) {
|
|
242
|
+
if (target.classList.contains(Classes.tableFooter)) {
|
|
243
|
+
return true;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
target = target.parentElement;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
return false;
|
|
215
250
|
}
|
|
216
251
|
|
|
217
252
|
function getRangeColumns(startCell, endCell, columns) {
|
|
@@ -230,4 +265,97 @@ function getRangeColumns(startCell, endCell, columns) {
|
|
|
230
265
|
} else {
|
|
231
266
|
return _sliceInstanceProperty(flatColumns).call(flatColumns, endIndex, startIndex + 1);
|
|
232
267
|
}
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
function getRangeSelectionRowInfo(startCell, endCell, dataSource) {
|
|
271
|
+
var footerRowRange = null;
|
|
272
|
+
var startRow = -1;
|
|
273
|
+
var endRow = -1;
|
|
274
|
+
|
|
275
|
+
var _getCellRangeRow = getCellRangeRow(startCell, endCell),
|
|
276
|
+
_startRow = _getCellRangeRow.startRow,
|
|
277
|
+
_endRow = _getCellRangeRow.endRow; // 两个单元格都在表体
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
if (!startCell.isInFooter && !endCell.isInFooter) {
|
|
281
|
+
startRow = _startRow;
|
|
282
|
+
endRow = _endRow;
|
|
283
|
+
} else if (startCell.isInFooter && endCell.isInFooter) {
|
|
284
|
+
// 两个单元格都在表底
|
|
285
|
+
footerRowRange = {
|
|
286
|
+
startRow: _startRow,
|
|
287
|
+
endRow: _endRow
|
|
288
|
+
};
|
|
289
|
+
} else {
|
|
290
|
+
// 一个单元格在表体,一个在表底
|
|
291
|
+
if (startCell.isInFooter) {
|
|
292
|
+
startRow = dataSource.length - 1;
|
|
293
|
+
endRow = endCell.rowIndex;
|
|
294
|
+
footerRowRange = {
|
|
295
|
+
startRow: startCell.rowIndex,
|
|
296
|
+
endRow: 0
|
|
297
|
+
};
|
|
298
|
+
} else {
|
|
299
|
+
startRow = startCell.rowIndex;
|
|
300
|
+
endRow = dataSource.length - 1;
|
|
301
|
+
footerRowRange = {
|
|
302
|
+
startRow: 0,
|
|
303
|
+
endRow: endCell.rowIndex
|
|
304
|
+
};
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
return {
|
|
309
|
+
startRow: startRow,
|
|
310
|
+
endRow: endRow,
|
|
311
|
+
footerRowRange: footerRowRange
|
|
312
|
+
};
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
function getCellRangeRow(startCell, endCell) {
|
|
316
|
+
if (isSameCell(startCell, endCell)) {
|
|
317
|
+
return {
|
|
318
|
+
startRow: startCell.rowIndex,
|
|
319
|
+
endRow: startCell.rowIndex
|
|
320
|
+
};
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
var isTopToBottom = startCell.rowIndex <= endCell.rowIndex;
|
|
324
|
+
var startRow = isTopToBottom ? startCell.rowIndex : startCell.rowIndex + startCell.rowSpan - 1;
|
|
325
|
+
var endRow = isTopToBottom ? endCell.rowIndex + endCell.rowSpan - 1 : endCell.rowIndex;
|
|
326
|
+
return {
|
|
327
|
+
startRow: startRow,
|
|
328
|
+
endRow: endRow
|
|
329
|
+
};
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
function isCellRangeSingleCell(rangeSelection) {
|
|
333
|
+
var startRow = rangeSelection.startRow,
|
|
334
|
+
endRow = rangeSelection.endRow,
|
|
335
|
+
columns = rangeSelection.columns,
|
|
336
|
+
footerRowRange = rangeSelection.footerRowRange;
|
|
337
|
+
var isBodySingleCell = !footerRowRange && startRow === endRow && columns.length === 1;
|
|
338
|
+
var isFooterSingleCell = startRow === -1 && footerRowRange.startRow === footerRowRange.endRow && columns.length === 1;
|
|
339
|
+
return isBodySingleCell || isFooterSingleCell;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
function getRowIndex(startRow, endRow) {
|
|
343
|
+
var isReverse = startRow > endRow;
|
|
344
|
+
var startRowIndex = isReverse ? endRow : startRow;
|
|
345
|
+
var endRowIndex = isReverse ? startRow : endRow;
|
|
346
|
+
return {
|
|
347
|
+
startRowIndex: startRowIndex,
|
|
348
|
+
endRowIndex: endRowIndex
|
|
349
|
+
};
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
function getFooterRowIndex(footerRowRange) {
|
|
353
|
+
if (footerRowRange) {
|
|
354
|
+
return getRowIndex(footerRowRange.startRow, footerRowRange.endRow);
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
return {
|
|
358
|
+
startRowIndex: -1,
|
|
359
|
+
endRowIndex: -1
|
|
360
|
+
};
|
|
233
361
|
}
|
|
@@ -60,6 +60,10 @@ export function singleSelect() {
|
|
|
60
60
|
return preCellProps;
|
|
61
61
|
},
|
|
62
62
|
render: function render(_, row, rowIndex) {
|
|
63
|
+
if (row[pipeline.getFeatureOptions('footerRowMetaKey')]) {
|
|
64
|
+
return null;
|
|
65
|
+
}
|
|
66
|
+
|
|
63
67
|
var rowKey = internals.safeGetRowKey(primaryKey, row, rowIndex);
|
|
64
68
|
return /*#__PURE__*/React.createElement(Radio, {
|
|
65
69
|
checked: value === rowKey,
|
|
@@ -32,6 +32,8 @@ export interface TreeModeFeatureOptions {
|
|
|
32
32
|
stopClickEventPropagation?: boolean;
|
|
33
33
|
/** 指定表格每一行元信息的记录字段 */
|
|
34
34
|
treeMetaKey?: string | symbol;
|
|
35
|
+
/** 指定展开列 */
|
|
36
|
+
expandColCode?: string;
|
|
35
37
|
}
|
|
36
38
|
export declare function treeMode(opts?: TreeModeFeatureOptions): (pipeline: TablePipeline) => TablePipeline;
|
|
37
39
|
export {};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
+
import _sliceInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/slice";
|
|
1
2
|
import _Array$from from "@babel/runtime-corejs3/core-js-stable/array/from";
|
|
2
3
|
import _getIteratorMethod from "@babel/runtime-corejs3/core-js/get-iterator-method";
|
|
3
|
-
import _toArray from "@babel/runtime-corejs3/helpers/toArray";
|
|
4
4
|
import _defineProperty from "@babel/runtime-corejs3/helpers/defineProperty";
|
|
5
5
|
import _extends from "@babel/runtime-corejs3/helpers/extends";
|
|
6
6
|
import _toConsumableArray from "@babel/runtime-corejs3/helpers/toConsumableArray";
|
|
7
7
|
|
|
8
8
|
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof _Symbol !== "undefined" && _getIteratorMethod(o) || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e2) { throw _e2; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e3) { didErr = true; err = _e3; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
|
|
9
9
|
|
|
10
|
-
function _unsupportedIterableToArray(o, minLen) { var
|
|
10
|
+
function _unsupportedIterableToArray(o, minLen) { var _context2; if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = _sliceInstanceProperty(_context2 = Object.prototype.toString.call(o)).call(_context2, 8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return _Array$from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
11
11
|
|
|
12
12
|
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
13
13
|
|
|
@@ -15,7 +15,7 @@ import _Symbol from "@babel/runtime-corejs3/core-js-stable/symbol";
|
|
|
15
15
|
import _Set from "@babel/runtime-corejs3/core-js-stable/set";
|
|
16
16
|
import _filterInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/filter";
|
|
17
17
|
import _concatInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/concat";
|
|
18
|
-
import
|
|
18
|
+
import _findIndexInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/find-index";
|
|
19
19
|
import cx from 'classnames';
|
|
20
20
|
import React from 'react';
|
|
21
21
|
import { ExpansionCell, icons, InlineFlexCell } from '../../common-views';
|
|
@@ -31,11 +31,6 @@ export function treeMode() {
|
|
|
31
31
|
var stateKey = 'treeMode';
|
|
32
32
|
var ctx = pipeline.ctx;
|
|
33
33
|
var primaryKey = pipeline.ensurePrimaryKey('treeMode');
|
|
34
|
-
|
|
35
|
-
if (typeof primaryKey !== 'string') {
|
|
36
|
-
throw new Error('treeMode 仅支持字符串作为 primaryKey');
|
|
37
|
-
}
|
|
38
|
-
|
|
39
34
|
var openKeys = (_c = (_b = (_a = opts.openKeys) !== null && _a !== void 0 ? _a : pipeline.getStateAtKey(stateKey)) !== null && _b !== void 0 ? _b : opts.defaultOpenKeys) !== null && _c !== void 0 ? _c : [];
|
|
40
35
|
var openKeySet = new _Set(openKeys);
|
|
41
36
|
|
|
@@ -90,7 +85,7 @@ export function treeMode() {
|
|
|
90
85
|
try {
|
|
91
86
|
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
92
87
|
var node = _step.value;
|
|
93
|
-
var rowKey = node
|
|
88
|
+
var rowKey = internals.safeGetRowKey(primaryKey, node, -1);
|
|
94
89
|
var expanded = openKeySet.has(rowKey);
|
|
95
90
|
var isLeaf = isLeafNode(node, {
|
|
96
91
|
depth: depth,
|
|
@@ -120,18 +115,20 @@ export function treeMode() {
|
|
|
120
115
|
}
|
|
121
116
|
|
|
122
117
|
function processColumns(columns) {
|
|
123
|
-
var _context2;
|
|
124
|
-
|
|
125
118
|
if (columns.length === 0) {
|
|
126
119
|
return columns;
|
|
127
120
|
}
|
|
128
121
|
|
|
129
|
-
var
|
|
130
|
-
|
|
131
|
-
|
|
122
|
+
var expandColIndex = _findIndexInstanceProperty(columns).call(columns, function (_ref) {
|
|
123
|
+
var code = _ref.code;
|
|
124
|
+
return code && opts.expandColCode === code;
|
|
125
|
+
});
|
|
126
|
+
|
|
127
|
+
expandColIndex = expandColIndex === -1 ? 0 : expandColIndex;
|
|
128
|
+
var expandCol = columns[expandColIndex];
|
|
132
129
|
|
|
133
130
|
var render = function render(value, record, recordIndex) {
|
|
134
|
-
var content = internals.safeRender(
|
|
131
|
+
var content = internals.safeRender(expandCol, record, recordIndex);
|
|
135
132
|
|
|
136
133
|
if (record[treeMetaKey] == null) {
|
|
137
134
|
// 没有 treeMeta 信息的话,就返回原先的渲染结果
|
|
@@ -191,7 +188,7 @@ export function treeMode() {
|
|
|
191
188
|
};
|
|
192
189
|
|
|
193
190
|
var getCellProps = function getCellProps(value, record, rowIndex) {
|
|
194
|
-
var prevProps = internals.safeGetCellProps(
|
|
191
|
+
var prevProps = internals.safeGetCellProps(expandCol, record, rowIndex);
|
|
195
192
|
|
|
196
193
|
if (record[treeMetaKey] == null) {
|
|
197
194
|
// 没有 treeMeta 信息的话,就返回原先的 cellProps
|
|
@@ -220,15 +217,16 @@ export function treeMode() {
|
|
|
220
217
|
});
|
|
221
218
|
};
|
|
222
219
|
|
|
223
|
-
|
|
220
|
+
columns[expandColIndex] = _extends(_extends({}, expandCol), {
|
|
224
221
|
title: /*#__PURE__*/React.createElement("span", {
|
|
225
222
|
style: {
|
|
226
223
|
marginLeft: iconIndent + iconWidth + iconGap
|
|
227
224
|
}
|
|
228
|
-
}, internals.safeRenderHeader(
|
|
225
|
+
}, internals.safeRenderHeader(expandCol)),
|
|
229
226
|
render: render,
|
|
230
|
-
getCellProps: clickArea === 'cell' ? getCellProps :
|
|
231
|
-
})
|
|
227
|
+
getCellProps: clickArea === 'cell' ? getCellProps : expandCol.getCellProps
|
|
228
|
+
});
|
|
229
|
+
return _toConsumableArray(columns);
|
|
232
230
|
}
|
|
233
231
|
};
|
|
234
232
|
}
|
|
@@ -36,7 +36,7 @@ export declare class TablePipeline {
|
|
|
36
36
|
private _tableProps;
|
|
37
37
|
private _dataSource;
|
|
38
38
|
private _columns;
|
|
39
|
-
private _footerDataSource
|
|
39
|
+
private _footerDataSource?;
|
|
40
40
|
static defaultIndents: TablePipelineIndentsConfig;
|
|
41
41
|
readonly ctx: TablePipelineCtx;
|
|
42
42
|
private readonly state;
|
|
@@ -88,6 +88,10 @@ export declare class TablePipeline {
|
|
|
88
88
|
setFeatureOptions(optionKey: string, value: any): void;
|
|
89
89
|
/** 获取 BaseTable 的 props,结果中包含 dataSource/columns/primaryKey/getRowProps 四个字段 */
|
|
90
90
|
getProps(this: TablePipeline): TableProps;
|
|
91
|
+
/**
|
|
92
|
+
* 清除范围选中内容
|
|
93
|
+
*/
|
|
94
|
+
clearRangeSelection(): void;
|
|
91
95
|
}
|
|
92
96
|
export declare function useTablePipeline(ctx?: Partial<TablePipelineCtx>): TablePipeline;
|
|
93
97
|
export {};
|
|
@@ -8,6 +8,7 @@ import _sliceInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instan
|
|
|
8
8
|
import { useState, useRef } from 'react';
|
|
9
9
|
import { mergeCellProps } from '../utils';
|
|
10
10
|
import { autoFillTableWidth, tableWidthKey } from './features/autoFill';
|
|
11
|
+
import { rangeSelectionKey } from './features/rangeSelection';
|
|
11
12
|
/**
|
|
12
13
|
* 表格数据处理流水线。TablePipeline 提供了表格数据处理过程中的一些上下方与工具方法,包括……
|
|
13
14
|
*
|
|
@@ -270,25 +271,25 @@ export var TablePipeline = /*#__PURE__*/function () {
|
|
|
270
271
|
var preTableWidth = _this2.getStateAtKey(tableWidthKey);
|
|
271
272
|
|
|
272
273
|
if (preTableWidth !== tableWidth) {
|
|
273
|
-
_this2.setStateAtKey(tableWidthKey, tableWidth);
|
|
274
|
+
tableWidth && _this2.setStateAtKey(tableWidthKey, tableWidth);
|
|
274
275
|
}
|
|
275
276
|
};
|
|
276
277
|
|
|
277
278
|
result.setTableDomHelper = function (domHelper) {
|
|
278
279
|
_this2.ref.current.domHelper = domHelper;
|
|
279
|
-
};
|
|
280
|
-
// result.clearRangeSelectionStatus = () => {
|
|
281
|
-
// const { rangeSelectedChange } = this.getFeatureOptions(rangeSelectionKey)
|
|
282
|
-
// const rangeSelection = this.getStateAtKey(rangeSelectionKey)
|
|
283
|
-
// if (rangeSelection) {
|
|
284
|
-
// rangeSelectedChange?.(null)
|
|
285
|
-
// }
|
|
286
|
-
// }
|
|
287
|
-
// }
|
|
288
|
-
|
|
280
|
+
};
|
|
289
281
|
|
|
290
282
|
return result;
|
|
291
283
|
}
|
|
284
|
+
/**
|
|
285
|
+
* 清除范围选中内容
|
|
286
|
+
*/
|
|
287
|
+
|
|
288
|
+
}, {
|
|
289
|
+
key: "clearRangeSelection",
|
|
290
|
+
value: function clearRangeSelection() {
|
|
291
|
+
this.setStateAtKey(rangeSelectionKey, null);
|
|
292
|
+
}
|
|
292
293
|
}]);
|
|
293
294
|
|
|
294
295
|
return TablePipeline;
|
|
@@ -5,13 +5,9 @@ import cx from 'classnames';
|
|
|
5
5
|
|
|
6
6
|
function composeEventHandler(handler1, handler2) {
|
|
7
7
|
return function () {
|
|
8
|
-
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
9
|
-
args[_key] = arguments[_key];
|
|
10
|
-
}
|
|
11
|
-
|
|
12
8
|
// 先执行原有的事件回调函数
|
|
13
|
-
handler1(
|
|
14
|
-
handler2(
|
|
9
|
+
handler1.apply(void 0, arguments);
|
|
10
|
+
handler2.apply(void 0, arguments); // 事件回调函数没有返回值,故这里不进行 return
|
|
15
11
|
};
|
|
16
12
|
}
|
|
17
13
|
/** 合并两个 cellProps(单元格属性)对象,返回一个合并后的全新对象。
|
|
@@ -141,7 +141,7 @@ function HtmlTable(_ref) {
|
|
|
141
141
|
positionStyle.left = hozInfo.stickyLeftMap.get(colIndex);
|
|
142
142
|
} else if (colIndex >= fullFlatCount - rightFlatCount) {
|
|
143
143
|
positionStyle.position = 'sticky';
|
|
144
|
-
positionStyle.right = hozInfo.stickyRightMap.get(colIndex) - stickyRightOffset;
|
|
144
|
+
positionStyle.right = hozInfo.stickyRightMap.get(colIndex) - (typeof stickyRightOffset === 'number' ? stickyRightOffset : 0);
|
|
145
145
|
}
|
|
146
146
|
|
|
147
147
|
return /*#__PURE__*/_react.default.createElement('td', (0, _extends2.default)((0, _extends2.default)((0, _extends2.default)((0, _extends2.default)({
|
|
@@ -2,6 +2,7 @@ export declare const LOCK_SHADOW_PADDING = 20;
|
|
|
2
2
|
export declare const Classes: {
|
|
3
3
|
/** BaseTable 表格组件的外层包裹 div */
|
|
4
4
|
readonly artTableWrapper: string;
|
|
5
|
+
readonly artTableBordered: string;
|
|
5
6
|
readonly artTable: string;
|
|
6
7
|
readonly tableHeaderMain: string;
|
|
7
8
|
readonly tableHeader: string;
|
|
@@ -40,6 +41,8 @@ export declare const Classes: {
|
|
|
40
41
|
readonly button: string;
|
|
41
42
|
readonly buttonPrimary: string;
|
|
42
43
|
readonly filterIcon: string;
|
|
44
|
+
readonly rangeSelection: string;
|
|
45
|
+
readonly tableCellRangeSingleCell: string;
|
|
43
46
|
readonly tableCellRangeSelected: string;
|
|
44
47
|
readonly tableCellRangeTop: string;
|
|
45
48
|
readonly tableCellRangeLeft: string;
|
|
@@ -60,6 +63,9 @@ export declare const Classes: {
|
|
|
60
63
|
readonly leaf: string;
|
|
61
64
|
readonly expanded: string;
|
|
62
65
|
readonly collapsed: string;
|
|
66
|
+
readonly popup: string;
|
|
67
|
+
readonly popupHeader: string;
|
|
68
|
+
readonly popupBody: string;
|
|
63
69
|
};
|
|
64
70
|
export declare const MenuClasses: {
|
|
65
71
|
menu: string;
|
|
@@ -112,13 +118,13 @@ export declare type BaseTableCSSVariables = Partial<{
|
|
|
112
118
|
'--border-color': string;
|
|
113
119
|
/** 单元格边框,默认为 1px solid #dfe3e8 */
|
|
114
120
|
'--cell-border': string;
|
|
115
|
-
/** 单元格上下边框,默认为 #dfe3e8 */
|
|
121
|
+
/** 单元格上下边框,默认为 none ,默认值为 1px solid #dfe3e8 */
|
|
116
122
|
'--cell-border-horizontal': string;
|
|
117
123
|
/** 单元格左右边框,默认为 #dfe3e8 */
|
|
118
124
|
'--cell-border-vertical': string;
|
|
119
125
|
/** 表头单元格边框,默认为 1px solid #dfe3e8 */
|
|
120
126
|
'--header-cell-border': string;
|
|
121
|
-
/** 表头单元格上下边框,默认为 1px solid #dfe3e8 */
|
|
127
|
+
/** 表头单元格上下边框,默认为 none ,默认值为 1px solid #dfe3e8 */
|
|
122
128
|
'--header-cell-border-horizontal': string;
|
|
123
129
|
/** 表头单元格左右边框,默认为 1px solid #dfe3e8 */
|
|
124
130
|
'--header-cell-border-vertical': string;
|
|
@@ -148,7 +154,9 @@ export declare const defaultCSSVariables: {
|
|
|
148
154
|
'--cell-border-horizontal': string;
|
|
149
155
|
'---cell-border-vertical': string;
|
|
150
156
|
'--header-cell-border': string;
|
|
157
|
+
'--cell-border-vertical': string;
|
|
151
158
|
'--header-cell-border-horizontal': string;
|
|
159
|
+
'--header-cell-border-vertical': string;
|
|
152
160
|
};
|
|
153
161
|
export declare const variableConst: string;
|
|
154
162
|
export declare const StyledArtTableWrapper: any;
|