@kdcloudjs/table 1.1.3-canary.7 → 1.1.3-canary.8
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 +266 -47
- package/dist/@kdcloudjs/table.js.map +1 -1
- package/dist/@kdcloudjs/table.min.css +1 -1
- package/dist/@kdcloudjs/table.min.js +6 -6
- 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 +2 -0
- package/es/table/base/styles.js +3 -1
- package/es/table/base/table.js +4 -3
- 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 +4 -0
- 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/pipeline.d.ts +5 -1
- package/es/table/pipeline/pipeline.js +11 -10
- package/lib/table/base/html-table.js +1 -1
- package/lib/table/base/styles.d.ts +2 -0
- package/lib/table/base/styles.js +3 -1
- package/lib/table/base/table.js +4 -3
- 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 +4 -0
- 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/pipeline.d.ts +5 -1
- package/lib/table/pipeline/pipeline.js +12 -10
- package/package.json +1 -1
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.footerDataSource = footerDataSource;
|
|
9
|
+
exports.footerRowMetaSymbol = void 0;
|
|
10
|
+
|
|
11
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/defineProperty"));
|
|
12
|
+
|
|
13
|
+
var _extends3 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/extends"));
|
|
14
|
+
|
|
15
|
+
var _symbol = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/symbol"));
|
|
16
|
+
|
|
17
|
+
var _map = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/map"));
|
|
18
|
+
|
|
19
|
+
var footerRowMetaSymbol = (0, _symbol.default)('footer-row');
|
|
20
|
+
exports.footerRowMetaSymbol = footerRowMetaSymbol;
|
|
21
|
+
|
|
22
|
+
function footerDataSource() {
|
|
23
|
+
var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
24
|
+
return function footerDataSourceStep(pipeline) {
|
|
25
|
+
var _a, _b;
|
|
26
|
+
|
|
27
|
+
var footerDataSource = (_a = opts.dataSource) !== null && _a !== void 0 ? _a : pipeline.getFooterDataSource();
|
|
28
|
+
var footerRowMetaKey = (_b = opts.footerRowMetaKey) !== null && _b !== void 0 ? _b : footerRowMetaSymbol;
|
|
29
|
+
pipeline.setFeatureOptions('footerRowMetaKey', footerRowMetaKey);
|
|
30
|
+
|
|
31
|
+
if (footerDataSource) {
|
|
32
|
+
pipeline.footerDataSource((0, _map.default)(footerDataSource).call(footerDataSource, function (row) {
|
|
33
|
+
return (0, _extends3.default)((0, _defineProperty2.default)({}, footerRowMetaKey, true), row);
|
|
34
|
+
}));
|
|
35
|
+
} else {
|
|
36
|
+
console.warn('调用 pipeline.use(features.footerDataSource()) 前请先设置页脚数据源,设置方法有:pipeline.use(features.footerDataSource({dataSource:any[]})) 或者 pipeline.footerDataSource(any[])');
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
return pipeline;
|
|
40
|
+
};
|
|
41
|
+
}
|
|
@@ -16,3 +16,4 @@ export { contextMenu, ContextMenuFeatureOptions } from './contextMenu';
|
|
|
16
16
|
export { filter, FilterFeatureOptions } from './columnFilter';
|
|
17
17
|
export { rangeSelection, RangeSelectionFeatureOptions } from './rangeSelection';
|
|
18
18
|
export { mergeCellHover } from './mergeCellHover';
|
|
19
|
+
export { footerDataSource, FooterDataSourceFeatureOptions, footerRowMetaSymbol } from './footerDataSource';
|
|
@@ -55,6 +55,18 @@ Object.defineProperty(exports, "filter", {
|
|
|
55
55
|
return _filterInstanceProperty(_columnFilter);
|
|
56
56
|
}
|
|
57
57
|
});
|
|
58
|
+
Object.defineProperty(exports, "footerDataSource", {
|
|
59
|
+
enumerable: true,
|
|
60
|
+
get: function get() {
|
|
61
|
+
return _footerDataSource.footerDataSource;
|
|
62
|
+
}
|
|
63
|
+
});
|
|
64
|
+
Object.defineProperty(exports, "footerRowMetaSymbol", {
|
|
65
|
+
enumerable: true,
|
|
66
|
+
get: function get() {
|
|
67
|
+
return _footerDataSource.footerRowMetaSymbol;
|
|
68
|
+
}
|
|
69
|
+
});
|
|
58
70
|
Object.defineProperty(exports, "mergeCellHover", {
|
|
59
71
|
enumerable: true,
|
|
60
72
|
get: function get() {
|
|
@@ -156,4 +168,6 @@ var _columnFilter = require("./columnFilter");
|
|
|
156
168
|
|
|
157
169
|
var _rangeSelection = require("./rangeSelection");
|
|
158
170
|
|
|
159
|
-
var _mergeCellHover = require("./mergeCellHover");
|
|
171
|
+
var _mergeCellHover = require("./mergeCellHover");
|
|
172
|
+
|
|
173
|
+
var _footerDataSource = require("./footerDataSource");
|
|
@@ -131,6 +131,10 @@ function multiSelect() {
|
|
|
131
131
|
return (0, _utils.mergeCellProps)(preCellProps, checkboxCellProps);
|
|
132
132
|
},
|
|
133
133
|
render: function render(_, row, rowIndex) {
|
|
134
|
+
if (row[pipeline.getFeatureOptions('footerRowMetaKey')]) {
|
|
135
|
+
return null;
|
|
136
|
+
}
|
|
137
|
+
|
|
134
138
|
var key = _internals.internals.safeGetRowKey(primaryKey, row, rowIndex);
|
|
135
139
|
|
|
136
140
|
var checked = set.has(key);
|
|
@@ -6,5 +6,5 @@ export interface RangeSelectionFeatureOptions {
|
|
|
6
6
|
preventkDefaultOfKeyDownEvent?: boolean;
|
|
7
7
|
}
|
|
8
8
|
export declare const rangeSelectionKey = "rangeSelection";
|
|
9
|
-
export declare const
|
|
9
|
+
export declare const lastClickCellKey = "lastClickCell";
|
|
10
10
|
export declare function rangeSelection(opts: RangeSelectionFeatureOptions): (pipeline: TablePipeline) => TablePipeline;
|
|
@@ -7,7 +7,7 @@ var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequ
|
|
|
7
7
|
Object.defineProperty(exports, "__esModule", {
|
|
8
8
|
value: true
|
|
9
9
|
});
|
|
10
|
-
exports.
|
|
10
|
+
exports.lastClickCellKey = void 0;
|
|
11
11
|
exports.rangeSelection = rangeSelection;
|
|
12
12
|
exports.rangeSelectionKey = void 0;
|
|
13
13
|
|
|
@@ -35,42 +35,44 @@ var _classnames = _interopRequireDefault(require("classnames"));
|
|
|
35
35
|
|
|
36
36
|
var rangeSelectionKey = 'rangeSelection';
|
|
37
37
|
exports.rangeSelectionKey = rangeSelectionKey;
|
|
38
|
-
var
|
|
39
|
-
exports.
|
|
38
|
+
var lastClickCellKey = 'lastClickCell';
|
|
39
|
+
exports.lastClickCellKey = lastClickCellKey;
|
|
40
40
|
|
|
41
41
|
function rangeSelection(opts) {
|
|
42
42
|
return function step(pipeline) {
|
|
43
43
|
var SCROLL_SIZE = 30;
|
|
44
44
|
var tableBody = pipeline.ref.current.domHelper && pipeline.ref.current.domHelper.tableBody;
|
|
45
|
+
var tableFooter = pipeline.ref.current.domHelper && pipeline.ref.current.domHelper.tableFooter;
|
|
45
46
|
|
|
46
47
|
if (!tableBody) {
|
|
47
48
|
return pipeline;
|
|
48
49
|
}
|
|
49
50
|
|
|
50
51
|
var columns = pipeline.getColumns();
|
|
52
|
+
var dataSource = pipeline.getDataSource();
|
|
51
53
|
|
|
52
54
|
var rangeSelectedChange = function rangeSelectedChange(rangeSelection) {
|
|
53
55
|
var _a;
|
|
54
56
|
|
|
55
57
|
pipeline.setStateAtKey(rangeSelectionKey, rangeSelection);
|
|
56
58
|
(_a = opts === null || opts === void 0 ? void 0 : opts.rangeSelectedChange) === null || _a === void 0 ? void 0 : _a.call(opts, rangeSelection);
|
|
57
|
-
};
|
|
58
|
-
// pipeline.setFeatureOptions(rangeSelectionKey, {
|
|
59
|
-
// optionKey: rangeSelectionKey,
|
|
60
|
-
// rangeSelectedChange: rangeSelectedChange
|
|
61
|
-
// })
|
|
62
|
-
// }
|
|
63
|
-
|
|
59
|
+
};
|
|
64
60
|
|
|
65
61
|
var setRangeSelection = function setRangeSelection(startDragCell, draggingCell) {
|
|
66
|
-
if (!startDragCell || !draggingCell
|
|
62
|
+
if (!startDragCell || !draggingCell) return;
|
|
67
63
|
var rangeColumns = getRangeColumns(startDragCell, draggingCell, columns);
|
|
68
|
-
|
|
64
|
+
|
|
65
|
+
var _getRangeSelectionRow = getRangeSelectionRowInfo(startDragCell, draggingCell, dataSource),
|
|
66
|
+
startRow = _getRangeSelectionRow.startRow,
|
|
67
|
+
endRow = _getRangeSelectionRow.endRow,
|
|
68
|
+
footerRowRange = _getRangeSelectionRow.footerRowRange;
|
|
69
|
+
|
|
69
70
|
var rangeSelection = {
|
|
70
|
-
startRow:
|
|
71
|
-
endRow:
|
|
71
|
+
startRow: startRow,
|
|
72
|
+
endRow: endRow,
|
|
72
73
|
columns: rangeColumns,
|
|
73
|
-
startColumn: startDragCell.column
|
|
74
|
+
startColumn: startDragCell.column,
|
|
75
|
+
footerRowRange: footerRowRange
|
|
74
76
|
};
|
|
75
77
|
rangeSelectedChange(rangeSelection);
|
|
76
78
|
};
|
|
@@ -81,23 +83,23 @@ function rangeSelection(opts) {
|
|
|
81
83
|
|
|
82
84
|
if (clickCell) {
|
|
83
85
|
if (event.shiftKey) {
|
|
84
|
-
var _lastClickCell = pipeline.getStateAtKey(
|
|
86
|
+
var _lastClickCell = pipeline.getStateAtKey(lastClickCellKey);
|
|
85
87
|
|
|
86
88
|
if (_lastClickCell) {
|
|
87
89
|
setRangeSelection(_lastClickCell, clickCell);
|
|
88
90
|
} else {
|
|
89
91
|
// 第一次进来就按住shift键,这时候要记住点击的单元格
|
|
90
|
-
pipeline.setStateAtKey(
|
|
92
|
+
pipeline.setStateAtKey(lastClickCellKey, clickCell);
|
|
91
93
|
}
|
|
92
94
|
} else {
|
|
93
|
-
pipeline.setStateAtKey(
|
|
94
|
-
|
|
95
|
+
pipeline.setStateAtKey(lastClickCellKey, clickCell);
|
|
96
|
+
setRangeSelection(clickCell, clickCell);
|
|
95
97
|
}
|
|
96
98
|
}
|
|
97
99
|
};
|
|
98
100
|
|
|
99
101
|
var onMouseDown = function onMouseDown(mouseDownEvent) {
|
|
100
|
-
if (mouseDownEvent.button !== 0 || !(0, _utils.isElementInEventPath)(tableBody, mouseDownEvent.nativeEvent)) return; // mouseDownEvent.preventDefault()
|
|
102
|
+
if (mouseDownEvent.button !== 0 || !((0, _utils.isElementInEventPath)(tableBody, mouseDownEvent.nativeEvent) || (0, _utils.isElementInEventPath)(tableFooter, mouseDownEvent.nativeEvent))) return; // mouseDownEvent.preventDefault()
|
|
101
103
|
// shift + 点击选中
|
|
102
104
|
|
|
103
105
|
shiftKeySelect(mouseDownEvent);
|
|
@@ -153,10 +155,11 @@ function rangeSelection(opts) {
|
|
|
153
155
|
};
|
|
154
156
|
|
|
155
157
|
var onKeyDown = function onKeyDown(e) {
|
|
156
|
-
if (!(0, _utils.isElementInEventPath)(tableBody, e.nativeEvent)) return;
|
|
158
|
+
if (!((0, _utils.isElementInEventPath)(tableBody, e.nativeEvent) || (0, _utils.isElementInEventPath)(tableFooter, e.nativeEvent))) return;
|
|
157
159
|
|
|
158
160
|
if ((e.ctrlKey || e.metaKey) && e.key === 'a') {
|
|
159
161
|
var rowLen = pipeline.getDataSource().length;
|
|
162
|
+
var footerDataSource = pipeline.getFooterDataSource() || [];
|
|
160
163
|
|
|
161
164
|
if (columns.length && rowLen) {
|
|
162
165
|
opts.preventkDefaultOfKeyDownEvent !== false && e.preventDefault();
|
|
@@ -164,7 +167,11 @@ function rangeSelection(opts) {
|
|
|
164
167
|
startRow: 0,
|
|
165
168
|
endRow: rowLen - 1,
|
|
166
169
|
columns: columns,
|
|
167
|
-
startColumn: columns[0]
|
|
170
|
+
startColumn: columns[0],
|
|
171
|
+
footerRowRange: footerDataSource.length > 0 ? {
|
|
172
|
+
startRow: 0,
|
|
173
|
+
endRow: footerDataSource.length - 1
|
|
174
|
+
} : null
|
|
168
175
|
});
|
|
169
176
|
}
|
|
170
177
|
}
|
|
@@ -173,7 +180,8 @@ function rangeSelection(opts) {
|
|
|
173
180
|
pipeline.addTableProps({
|
|
174
181
|
onMouseDown: onMouseDown,
|
|
175
182
|
onKeyDown: onKeyDown,
|
|
176
|
-
tabIndex: -1
|
|
183
|
+
tabIndex: -1,
|
|
184
|
+
className: (0, _classnames.default)([_styles.Classes.rangeSelection])
|
|
177
185
|
}); // todo: 后面可以把mousedown放到一个流里面
|
|
178
186
|
|
|
179
187
|
return pipeline.mapColumns((0, _utils.makeRecursiveMapper)(function (col) {
|
|
@@ -189,15 +197,29 @@ function rangeSelection(opts) {
|
|
|
189
197
|
var _cx;
|
|
190
198
|
|
|
191
199
|
var prevCellProps = prevGetCellProps === null || prevGetCellProps === void 0 ? void 0 : prevGetCellProps(value, record, rowIndex);
|
|
200
|
+
var isInFooter = record[pipeline.getFeatureOptions('footerRowMetaKey')];
|
|
192
201
|
var startRow = rangeSelection.startRow,
|
|
193
202
|
endRow = rangeSelection.endRow,
|
|
194
|
-
columns = rangeSelection.columns
|
|
195
|
-
|
|
196
|
-
|
|
203
|
+
columns = rangeSelection.columns,
|
|
204
|
+
footerRowRange = rangeSelection.footerRowRange;
|
|
205
|
+
|
|
206
|
+
var _getRowIndex = getRowIndex(startRow, endRow),
|
|
207
|
+
startRowIndex = _getRowIndex.startRowIndex,
|
|
208
|
+
endRowIndex = _getRowIndex.endRowIndex;
|
|
209
|
+
|
|
210
|
+
var _getFooterRowIndex = getFooterRowIndex(footerRowRange),
|
|
211
|
+
footerStartRowIndex = _getFooterRowIndex.startRowIndex,
|
|
212
|
+
footerEndRowIndex = _getFooterRowIndex.endRowIndex;
|
|
213
|
+
|
|
197
214
|
var startCol = columns[0];
|
|
198
215
|
var endCol = columns[columns.length - 1];
|
|
199
|
-
var
|
|
200
|
-
var
|
|
216
|
+
var bodyMatch = !isInFooter && rowIndex >= startRowIndex && rowIndex <= endRowIndex;
|
|
217
|
+
var footerMatch = isInFooter && footerRowRange && rowIndex >= footerStartRowIndex && rowIndex <= footerEndRowIndex;
|
|
218
|
+
var match = footerMatch || bodyMatch;
|
|
219
|
+
var matchSingleCell = match && isCellRangeSingleCell(rangeSelection); // 单个范围选中单元格不显示样式
|
|
220
|
+
|
|
221
|
+
var showCellRangeStyle = match && !matchSingleCell;
|
|
222
|
+
var className = (0, _classnames.default)((_cx = {}, (0, _defineProperty2.default)(_cx, _styles.Classes.tableCellRangeSingleCell, matchSingleCell), (0, _defineProperty2.default)(_cx, _styles.Classes.tableCellRangeSelected, showCellRangeStyle), (0, _defineProperty2.default)(_cx, _styles.Classes.tableCellRangeTop, showCellRangeStyle && (isInFooter ? startRowIndex !== -1 ? false : rowIndex === footerStartRowIndex : rowIndex === startRowIndex)), (0, _defineProperty2.default)(_cx, _styles.Classes.tableCellRangeLeft, showCellRangeStyle && col.code === startCol.code), (0, _defineProperty2.default)(_cx, _styles.Classes.tableCellRangeBottom, showCellRangeStyle && (isInFooter ? rowIndex === footerEndRowIndex : footerRowRange ? false : rowIndex === endRowIndex)), (0, _defineProperty2.default)(_cx, _styles.Classes.tableCellRangeRight, showCellRangeStyle && col.code === endCol.code), _cx));
|
|
201
223
|
return (0, _utils.mergeCellProps)(prevCellProps, {
|
|
202
224
|
className: className
|
|
203
225
|
});
|
|
@@ -223,7 +245,8 @@ function getTargetCell(target, columns) {
|
|
|
223
245
|
rowIndex: parseInt(target.getAttribute('data-rowindex')),
|
|
224
246
|
rowSpan: parseInt(target.getAttribute('rowspan') || 1),
|
|
225
247
|
code: columnCode,
|
|
226
|
-
column: column
|
|
248
|
+
column: column,
|
|
249
|
+
isInFooter: isEleInFooter(target)
|
|
227
250
|
}
|
|
228
251
|
};
|
|
229
252
|
}();
|
|
@@ -238,7 +261,19 @@ function getTargetCell(target, columns) {
|
|
|
238
261
|
}
|
|
239
262
|
|
|
240
263
|
function isSameCell(cell1, cell2) {
|
|
241
|
-
return cell1.rowIndex === cell2.rowIndex && cell1.code === cell2.code;
|
|
264
|
+
return cell1.rowIndex === cell2.rowIndex && cell1.code === cell2.code && cell1.isInFooter === cell2.isInFooter;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
function isEleInFooter(target) {
|
|
268
|
+
while (target && !target.classList.contains(_styles.Classes.artTable)) {
|
|
269
|
+
if (target.classList.contains(_styles.Classes.tableFooter)) {
|
|
270
|
+
return true;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
target = target.parentElement;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
return false;
|
|
242
277
|
}
|
|
243
278
|
|
|
244
279
|
function getRangeColumns(startCell, endCell, columns) {
|
|
@@ -255,4 +290,97 @@ function getRangeColumns(startCell, endCell, columns) {
|
|
|
255
290
|
} else {
|
|
256
291
|
return (0, _slice.default)(flatColumns).call(flatColumns, endIndex, startIndex + 1);
|
|
257
292
|
}
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
function getRangeSelectionRowInfo(startCell, endCell, dataSource) {
|
|
296
|
+
var footerRowRange = null;
|
|
297
|
+
var startRow = -1;
|
|
298
|
+
var endRow = -1;
|
|
299
|
+
|
|
300
|
+
var _getCellRangeRow = getCellRangeRow(startCell, endCell),
|
|
301
|
+
_startRow = _getCellRangeRow.startRow,
|
|
302
|
+
_endRow = _getCellRangeRow.endRow; // 两个单元格都在表体
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
if (!startCell.isInFooter && !endCell.isInFooter) {
|
|
306
|
+
startRow = _startRow;
|
|
307
|
+
endRow = _endRow;
|
|
308
|
+
} else if (startCell.isInFooter && endCell.isInFooter) {
|
|
309
|
+
// 两个单元格都在表底
|
|
310
|
+
footerRowRange = {
|
|
311
|
+
startRow: _startRow,
|
|
312
|
+
endRow: _endRow
|
|
313
|
+
};
|
|
314
|
+
} else {
|
|
315
|
+
// 一个单元格在表体,一个在表底
|
|
316
|
+
if (startCell.isInFooter) {
|
|
317
|
+
startRow = dataSource.length - 1;
|
|
318
|
+
endRow = endCell.rowIndex;
|
|
319
|
+
footerRowRange = {
|
|
320
|
+
startRow: startCell.rowIndex,
|
|
321
|
+
endRow: 0
|
|
322
|
+
};
|
|
323
|
+
} else {
|
|
324
|
+
startRow = startCell.rowIndex;
|
|
325
|
+
endRow = dataSource.length - 1;
|
|
326
|
+
footerRowRange = {
|
|
327
|
+
startRow: 0,
|
|
328
|
+
endRow: endCell.rowIndex
|
|
329
|
+
};
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
return {
|
|
334
|
+
startRow: startRow,
|
|
335
|
+
endRow: endRow,
|
|
336
|
+
footerRowRange: footerRowRange
|
|
337
|
+
};
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
function getCellRangeRow(startCell, endCell) {
|
|
341
|
+
if (isSameCell(startCell, endCell)) {
|
|
342
|
+
return {
|
|
343
|
+
startRow: startCell.rowIndex,
|
|
344
|
+
endRow: startCell.rowIndex
|
|
345
|
+
};
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
var isTopToBottom = startCell.rowIndex <= endCell.rowIndex;
|
|
349
|
+
var startRow = isTopToBottom ? startCell.rowIndex : startCell.rowIndex + startCell.rowSpan - 1;
|
|
350
|
+
var endRow = isTopToBottom ? endCell.rowIndex + endCell.rowSpan - 1 : endCell.rowIndex;
|
|
351
|
+
return {
|
|
352
|
+
startRow: startRow,
|
|
353
|
+
endRow: endRow
|
|
354
|
+
};
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
function isCellRangeSingleCell(rangeSelection) {
|
|
358
|
+
var startRow = rangeSelection.startRow,
|
|
359
|
+
endRow = rangeSelection.endRow,
|
|
360
|
+
columns = rangeSelection.columns,
|
|
361
|
+
footerRowRange = rangeSelection.footerRowRange;
|
|
362
|
+
var isBodySingleCell = !footerRowRange && startRow === endRow && columns.length === 1;
|
|
363
|
+
var isFooterSingleCell = startRow === -1 && footerRowRange.startRow === footerRowRange.endRow && columns.length === 1;
|
|
364
|
+
return isBodySingleCell || isFooterSingleCell;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
function getRowIndex(startRow, endRow) {
|
|
368
|
+
var isReverse = startRow > endRow;
|
|
369
|
+
var startRowIndex = isReverse ? endRow : startRow;
|
|
370
|
+
var endRowIndex = isReverse ? startRow : endRow;
|
|
371
|
+
return {
|
|
372
|
+
startRowIndex: startRowIndex,
|
|
373
|
+
endRowIndex: endRowIndex
|
|
374
|
+
};
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
function getFooterRowIndex(footerRowRange) {
|
|
378
|
+
if (footerRowRange) {
|
|
379
|
+
return getRowIndex(footerRowRange.startRow, footerRowRange.endRow);
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
return {
|
|
383
|
+
startRowIndex: -1,
|
|
384
|
+
endRowIndex: -1
|
|
385
|
+
};
|
|
258
386
|
}
|
|
@@ -76,6 +76,10 @@ function singleSelect() {
|
|
|
76
76
|
return preCellProps;
|
|
77
77
|
},
|
|
78
78
|
render: function render(_, row, rowIndex) {
|
|
79
|
+
if (row[pipeline.getFeatureOptions('footerRowMetaKey')]) {
|
|
80
|
+
return null;
|
|
81
|
+
}
|
|
82
|
+
|
|
79
83
|
var rowKey = _internals.internals.safeGetRowKey(primaryKey, row, rowIndex);
|
|
80
84
|
|
|
81
85
|
return /*#__PURE__*/_react.default.createElement(Radio, {
|
|
@@ -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 {};
|
|
@@ -28,6 +28,8 @@ var _utils = require("../utils");
|
|
|
28
28
|
|
|
29
29
|
var _autoFill = require("./features/autoFill");
|
|
30
30
|
|
|
31
|
+
var _rangeSelection = require("./features/rangeSelection");
|
|
32
|
+
|
|
31
33
|
/**
|
|
32
34
|
* 表格数据处理流水线。TablePipeline 提供了表格数据处理过程中的一些上下方与工具方法,包括……
|
|
33
35
|
*
|
|
@@ -292,19 +294,19 @@ var TablePipeline = /*#__PURE__*/function () {
|
|
|
292
294
|
|
|
293
295
|
result.setTableDomHelper = function (domHelper) {
|
|
294
296
|
_this2.ref.current.domHelper = domHelper;
|
|
295
|
-
};
|
|
296
|
-
// result.clearRangeSelectionStatus = () => {
|
|
297
|
-
// const { rangeSelectedChange } = this.getFeatureOptions(rangeSelectionKey)
|
|
298
|
-
// const rangeSelection = this.getStateAtKey(rangeSelectionKey)
|
|
299
|
-
// if (rangeSelection) {
|
|
300
|
-
// rangeSelectedChange?.(null)
|
|
301
|
-
// }
|
|
302
|
-
// }
|
|
303
|
-
// }
|
|
304
|
-
|
|
297
|
+
};
|
|
305
298
|
|
|
306
299
|
return result;
|
|
307
300
|
}
|
|
301
|
+
/**
|
|
302
|
+
* 清除范围选中内容
|
|
303
|
+
*/
|
|
304
|
+
|
|
305
|
+
}, {
|
|
306
|
+
key: "clearRangeSelection",
|
|
307
|
+
value: function clearRangeSelection() {
|
|
308
|
+
this.setStateAtKey(_rangeSelection.rangeSelectionKey, null);
|
|
309
|
+
}
|
|
308
310
|
}]);
|
|
309
311
|
return TablePipeline;
|
|
310
312
|
}();
|