@tanstack/svelte-table 8.0.12 → 8.1.0
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/build/cjs/svelte-table/src/index.js +14 -18
- package/build/cjs/svelte-table/src/index.js.map +1 -1
- package/build/cjs/table-core/build/esm/index.js +586 -678
- package/build/cjs/table-core/build/esm/index.js.map +1 -1
- package/build/esm/index.js +595 -691
- package/build/esm/index.js.map +1 -1
- package/build/stats-html.html +1 -1
- package/build/stats-react.json +49 -49
- package/build/types/index.d.ts +21 -9
- package/build/umd/index.development.js +597 -693
- package/build/umd/index.development.js.map +1 -1
- package/build/umd/index.production.js +1 -1
- package/build/umd/index.production.js.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +14 -20
- package/build/types/placeholder.d.ts +0 -3
- package/build/types/render-component.d.ts +0 -3
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
}
|
|
30
30
|
function noop() {//
|
|
31
31
|
}
|
|
32
|
-
function makeStateUpdater(key,
|
|
32
|
+
function makeStateUpdater(key, table) {
|
|
33
33
|
return updater => {
|
|
34
|
-
|
|
34
|
+
table.setState(old => {
|
|
35
35
|
return { ...old,
|
|
36
36
|
[key]: functionalUpdate(updater, old[key])
|
|
37
37
|
};
|
|
@@ -101,36 +101,35 @@
|
|
|
101
101
|
};
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
-
function createColumn(
|
|
105
|
-
var _ref,
|
|
104
|
+
function createColumn(table, columnDef, depth, parent) {
|
|
105
|
+
var _ref, _resolvedColumnDef$id;
|
|
106
106
|
|
|
107
|
-
const defaultColumn =
|
|
107
|
+
const defaultColumn = table._getDefaultColumnDef();
|
|
108
108
|
|
|
109
|
-
|
|
109
|
+
const resolvedColumnDef = { ...defaultColumn,
|
|
110
110
|
...columnDef
|
|
111
111
|
};
|
|
112
|
-
let id = (_ref = (
|
|
112
|
+
let id = (_ref = (_resolvedColumnDef$id = resolvedColumnDef.id) != null ? _resolvedColumnDef$id : resolvedColumnDef.accessorKey) != null ? _ref : typeof resolvedColumnDef.header === 'string' ? resolvedColumnDef.header : undefined;
|
|
113
113
|
let accessorFn;
|
|
114
114
|
|
|
115
|
-
if (
|
|
116
|
-
accessorFn =
|
|
117
|
-
} else if (
|
|
118
|
-
accessorFn = originalRow => originalRow[
|
|
115
|
+
if (resolvedColumnDef.accessorFn) {
|
|
116
|
+
accessorFn = resolvedColumnDef.accessorFn;
|
|
117
|
+
} else if (resolvedColumnDef.accessorKey) {
|
|
118
|
+
accessorFn = originalRow => originalRow[resolvedColumnDef.accessorKey];
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
if (!id) {
|
|
122
122
|
{
|
|
123
|
-
throw new Error(
|
|
123
|
+
throw new Error(resolvedColumnDef.accessorFn ? "Columns require an id when using an accessorFn" : "Columns require an id when using a non-string header");
|
|
124
124
|
}
|
|
125
125
|
}
|
|
126
126
|
|
|
127
127
|
let column = {
|
|
128
|
-
id: "" + id,
|
|
128
|
+
id: "" + String(id),
|
|
129
129
|
accessorFn,
|
|
130
130
|
parent: parent,
|
|
131
131
|
depth,
|
|
132
|
-
columnDef,
|
|
133
|
-
columnDefType: columnDef.columnDefType,
|
|
132
|
+
columnDef: resolvedColumnDef,
|
|
134
133
|
columns: [],
|
|
135
134
|
getFlatColumns: memo(() => [true], () => {
|
|
136
135
|
var _column$columns;
|
|
@@ -139,12 +138,12 @@
|
|
|
139
138
|
}, {
|
|
140
139
|
key: "development" === 'production' ,
|
|
141
140
|
debug: () => {
|
|
142
|
-
var
|
|
141
|
+
var _table$options$debugA;
|
|
143
142
|
|
|
144
|
-
return (
|
|
143
|
+
return (_table$options$debugA = table.options.debugAll) != null ? _table$options$debugA : table.options.debugColumns;
|
|
145
144
|
}
|
|
146
145
|
}),
|
|
147
|
-
getLeafColumns: memo(() => [
|
|
146
|
+
getLeafColumns: memo(() => [table._getOrderColumnsFn()], orderColumns => {
|
|
148
147
|
var _column$columns2;
|
|
149
148
|
|
|
150
149
|
if ((_column$columns2 = column.columns) != null && _column$columns2.length) {
|
|
@@ -156,21 +155,21 @@
|
|
|
156
155
|
}, {
|
|
157
156
|
key: "development" === 'production' ,
|
|
158
157
|
debug: () => {
|
|
159
|
-
var
|
|
158
|
+
var _table$options$debugA2;
|
|
160
159
|
|
|
161
|
-
return (
|
|
160
|
+
return (_table$options$debugA2 = table.options.debugAll) != null ? _table$options$debugA2 : table.options.debugColumns;
|
|
162
161
|
}
|
|
163
162
|
})
|
|
164
163
|
};
|
|
165
|
-
column =
|
|
166
|
-
return Object.assign(obj, feature.createColumn == null ? void 0 : feature.createColumn(column,
|
|
167
|
-
}, column); // Yes, we have to convert
|
|
164
|
+
column = table._features.reduce((obj, feature) => {
|
|
165
|
+
return Object.assign(obj, feature.createColumn == null ? void 0 : feature.createColumn(column, table));
|
|
166
|
+
}, column); // Yes, we have to convert table to uknown, because we know more than the compiler here.
|
|
168
167
|
|
|
169
168
|
return column;
|
|
170
169
|
}
|
|
171
170
|
|
|
172
171
|
//
|
|
173
|
-
function createHeader(
|
|
172
|
+
function createHeader(table, column, options) {
|
|
174
173
|
var _options$id;
|
|
175
174
|
|
|
176
175
|
const id = (_options$id = options.id) != null ? _options$id : column.id;
|
|
@@ -199,174 +198,169 @@
|
|
|
199
198
|
recurseHeader(header);
|
|
200
199
|
return leafHeaders;
|
|
201
200
|
},
|
|
202
|
-
|
|
203
|
-
|
|
201
|
+
getContext: () => ({
|
|
202
|
+
table,
|
|
204
203
|
header: header,
|
|
205
204
|
column
|
|
206
|
-
})
|
|
207
|
-
renderFooter: () => column.columnDef.footer ? instance._render(column.columnDef.footer, {
|
|
208
|
-
instance,
|
|
209
|
-
header: header,
|
|
210
|
-
column
|
|
211
|
-
}) : null
|
|
205
|
+
})
|
|
212
206
|
};
|
|
213
207
|
|
|
214
|
-
|
|
215
|
-
Object.assign(header, feature.createHeader == null ? void 0 : feature.createHeader(header,
|
|
208
|
+
table._features.forEach(feature => {
|
|
209
|
+
Object.assign(header, feature.createHeader == null ? void 0 : feature.createHeader(header, table));
|
|
216
210
|
});
|
|
217
211
|
|
|
218
212
|
return header;
|
|
219
213
|
}
|
|
220
214
|
|
|
221
215
|
const Headers = {
|
|
222
|
-
|
|
216
|
+
createTable: table => {
|
|
223
217
|
return {
|
|
224
218
|
// Header Groups
|
|
225
|
-
getHeaderGroups: memo(() => [
|
|
219
|
+
getHeaderGroups: memo(() => [table.getAllColumns(), table.getVisibleLeafColumns(), table.getState().columnPinning.left, table.getState().columnPinning.right], (allColumns, leafColumns, left, right) => {
|
|
226
220
|
var _left$map$filter, _right$map$filter;
|
|
227
221
|
|
|
228
222
|
const leftColumns = (_left$map$filter = left == null ? void 0 : left.map(columnId => leafColumns.find(d => d.id === columnId)).filter(Boolean)) != null ? _left$map$filter : [];
|
|
229
223
|
const rightColumns = (_right$map$filter = right == null ? void 0 : right.map(columnId => leafColumns.find(d => d.id === columnId)).filter(Boolean)) != null ? _right$map$filter : [];
|
|
230
224
|
const centerColumns = leafColumns.filter(column => !(left != null && left.includes(column.id)) && !(right != null && right.includes(column.id)));
|
|
231
|
-
const headerGroups = buildHeaderGroups(allColumns, [...leftColumns, ...centerColumns, ...rightColumns],
|
|
225
|
+
const headerGroups = buildHeaderGroups(allColumns, [...leftColumns, ...centerColumns, ...rightColumns], table);
|
|
232
226
|
return headerGroups;
|
|
233
227
|
}, {
|
|
234
228
|
key: 'getHeaderGroups',
|
|
235
229
|
debug: () => {
|
|
236
|
-
var
|
|
230
|
+
var _table$options$debugA;
|
|
237
231
|
|
|
238
|
-
return (
|
|
232
|
+
return (_table$options$debugA = table.options.debugAll) != null ? _table$options$debugA : table.options.debugHeaders;
|
|
239
233
|
}
|
|
240
234
|
}),
|
|
241
|
-
getCenterHeaderGroups: memo(() => [
|
|
235
|
+
getCenterHeaderGroups: memo(() => [table.getAllColumns(), table.getVisibleLeafColumns(), table.getState().columnPinning.left, table.getState().columnPinning.right], (allColumns, leafColumns, left, right) => {
|
|
242
236
|
leafColumns = leafColumns.filter(column => !(left != null && left.includes(column.id)) && !(right != null && right.includes(column.id)));
|
|
243
|
-
return buildHeaderGroups(allColumns, leafColumns,
|
|
237
|
+
return buildHeaderGroups(allColumns, leafColumns, table, 'center');
|
|
244
238
|
}, {
|
|
245
239
|
key: 'getCenterHeaderGroups',
|
|
246
240
|
debug: () => {
|
|
247
|
-
var
|
|
241
|
+
var _table$options$debugA2;
|
|
248
242
|
|
|
249
|
-
return (
|
|
243
|
+
return (_table$options$debugA2 = table.options.debugAll) != null ? _table$options$debugA2 : table.options.debugHeaders;
|
|
250
244
|
}
|
|
251
245
|
}),
|
|
252
|
-
getLeftHeaderGroups: memo(() => [
|
|
246
|
+
getLeftHeaderGroups: memo(() => [table.getAllColumns(), table.getVisibleLeafColumns(), table.getState().columnPinning.left], (allColumns, leafColumns, left) => {
|
|
253
247
|
var _left$map$filter2;
|
|
254
248
|
|
|
255
249
|
const orderedLeafColumns = (_left$map$filter2 = left == null ? void 0 : left.map(columnId => leafColumns.find(d => d.id === columnId)).filter(Boolean)) != null ? _left$map$filter2 : [];
|
|
256
|
-
return buildHeaderGroups(allColumns, orderedLeafColumns,
|
|
250
|
+
return buildHeaderGroups(allColumns, orderedLeafColumns, table, 'left');
|
|
257
251
|
}, {
|
|
258
252
|
key: 'getLeftHeaderGroups',
|
|
259
253
|
debug: () => {
|
|
260
|
-
var
|
|
254
|
+
var _table$options$debugA3;
|
|
261
255
|
|
|
262
|
-
return (
|
|
256
|
+
return (_table$options$debugA3 = table.options.debugAll) != null ? _table$options$debugA3 : table.options.debugHeaders;
|
|
263
257
|
}
|
|
264
258
|
}),
|
|
265
|
-
getRightHeaderGroups: memo(() => [
|
|
259
|
+
getRightHeaderGroups: memo(() => [table.getAllColumns(), table.getVisibleLeafColumns(), table.getState().columnPinning.right], (allColumns, leafColumns, right) => {
|
|
266
260
|
var _right$map$filter2;
|
|
267
261
|
|
|
268
262
|
const orderedLeafColumns = (_right$map$filter2 = right == null ? void 0 : right.map(columnId => leafColumns.find(d => d.id === columnId)).filter(Boolean)) != null ? _right$map$filter2 : [];
|
|
269
|
-
return buildHeaderGroups(allColumns, orderedLeafColumns,
|
|
263
|
+
return buildHeaderGroups(allColumns, orderedLeafColumns, table, 'right');
|
|
270
264
|
}, {
|
|
271
265
|
key: 'getRightHeaderGroups',
|
|
272
266
|
debug: () => {
|
|
273
|
-
var
|
|
267
|
+
var _table$options$debugA4;
|
|
274
268
|
|
|
275
|
-
return (
|
|
269
|
+
return (_table$options$debugA4 = table.options.debugAll) != null ? _table$options$debugA4 : table.options.debugHeaders;
|
|
276
270
|
}
|
|
277
271
|
}),
|
|
278
272
|
// Footer Groups
|
|
279
|
-
getFooterGroups: memo(() => [
|
|
273
|
+
getFooterGroups: memo(() => [table.getHeaderGroups()], headerGroups => {
|
|
280
274
|
return [...headerGroups].reverse();
|
|
281
275
|
}, {
|
|
282
276
|
key: 'getFooterGroups',
|
|
283
277
|
debug: () => {
|
|
284
|
-
var
|
|
278
|
+
var _table$options$debugA5;
|
|
285
279
|
|
|
286
|
-
return (
|
|
280
|
+
return (_table$options$debugA5 = table.options.debugAll) != null ? _table$options$debugA5 : table.options.debugHeaders;
|
|
287
281
|
}
|
|
288
282
|
}),
|
|
289
|
-
getLeftFooterGroups: memo(() => [
|
|
283
|
+
getLeftFooterGroups: memo(() => [table.getLeftHeaderGroups()], headerGroups => {
|
|
290
284
|
return [...headerGroups].reverse();
|
|
291
285
|
}, {
|
|
292
286
|
key: 'getLeftFooterGroups',
|
|
293
287
|
debug: () => {
|
|
294
|
-
var
|
|
288
|
+
var _table$options$debugA6;
|
|
295
289
|
|
|
296
|
-
return (
|
|
290
|
+
return (_table$options$debugA6 = table.options.debugAll) != null ? _table$options$debugA6 : table.options.debugHeaders;
|
|
297
291
|
}
|
|
298
292
|
}),
|
|
299
|
-
getCenterFooterGroups: memo(() => [
|
|
293
|
+
getCenterFooterGroups: memo(() => [table.getCenterHeaderGroups()], headerGroups => {
|
|
300
294
|
return [...headerGroups].reverse();
|
|
301
295
|
}, {
|
|
302
296
|
key: 'getCenterFooterGroups',
|
|
303
297
|
debug: () => {
|
|
304
|
-
var
|
|
298
|
+
var _table$options$debugA7;
|
|
305
299
|
|
|
306
|
-
return (
|
|
300
|
+
return (_table$options$debugA7 = table.options.debugAll) != null ? _table$options$debugA7 : table.options.debugHeaders;
|
|
307
301
|
}
|
|
308
302
|
}),
|
|
309
|
-
getRightFooterGroups: memo(() => [
|
|
303
|
+
getRightFooterGroups: memo(() => [table.getRightHeaderGroups()], headerGroups => {
|
|
310
304
|
return [...headerGroups].reverse();
|
|
311
305
|
}, {
|
|
312
306
|
key: 'getRightFooterGroups',
|
|
313
307
|
debug: () => {
|
|
314
|
-
var
|
|
308
|
+
var _table$options$debugA8;
|
|
315
309
|
|
|
316
|
-
return (
|
|
310
|
+
return (_table$options$debugA8 = table.options.debugAll) != null ? _table$options$debugA8 : table.options.debugHeaders;
|
|
317
311
|
}
|
|
318
312
|
}),
|
|
319
313
|
// Flat Headers
|
|
320
|
-
getFlatHeaders: memo(() => [
|
|
314
|
+
getFlatHeaders: memo(() => [table.getHeaderGroups()], headerGroups => {
|
|
321
315
|
return headerGroups.map(headerGroup => {
|
|
322
316
|
return headerGroup.headers;
|
|
323
317
|
}).flat();
|
|
324
318
|
}, {
|
|
325
319
|
key: 'getFlatHeaders',
|
|
326
320
|
debug: () => {
|
|
327
|
-
var
|
|
321
|
+
var _table$options$debugA9;
|
|
328
322
|
|
|
329
|
-
return (
|
|
323
|
+
return (_table$options$debugA9 = table.options.debugAll) != null ? _table$options$debugA9 : table.options.debugHeaders;
|
|
330
324
|
}
|
|
331
325
|
}),
|
|
332
|
-
getLeftFlatHeaders: memo(() => [
|
|
326
|
+
getLeftFlatHeaders: memo(() => [table.getLeftHeaderGroups()], left => {
|
|
333
327
|
return left.map(headerGroup => {
|
|
334
328
|
return headerGroup.headers;
|
|
335
329
|
}).flat();
|
|
336
330
|
}, {
|
|
337
331
|
key: 'getLeftFlatHeaders',
|
|
338
332
|
debug: () => {
|
|
339
|
-
var
|
|
333
|
+
var _table$options$debugA10;
|
|
340
334
|
|
|
341
|
-
return (
|
|
335
|
+
return (_table$options$debugA10 = table.options.debugAll) != null ? _table$options$debugA10 : table.options.debugHeaders;
|
|
342
336
|
}
|
|
343
337
|
}),
|
|
344
|
-
getCenterFlatHeaders: memo(() => [
|
|
338
|
+
getCenterFlatHeaders: memo(() => [table.getCenterHeaderGroups()], left => {
|
|
345
339
|
return left.map(headerGroup => {
|
|
346
340
|
return headerGroup.headers;
|
|
347
341
|
}).flat();
|
|
348
342
|
}, {
|
|
349
343
|
key: 'getCenterFlatHeaders',
|
|
350
344
|
debug: () => {
|
|
351
|
-
var
|
|
345
|
+
var _table$options$debugA11;
|
|
352
346
|
|
|
353
|
-
return (
|
|
347
|
+
return (_table$options$debugA11 = table.options.debugAll) != null ? _table$options$debugA11 : table.options.debugHeaders;
|
|
354
348
|
}
|
|
355
349
|
}),
|
|
356
|
-
getRightFlatHeaders: memo(() => [
|
|
350
|
+
getRightFlatHeaders: memo(() => [table.getRightHeaderGroups()], left => {
|
|
357
351
|
return left.map(headerGroup => {
|
|
358
352
|
return headerGroup.headers;
|
|
359
353
|
}).flat();
|
|
360
354
|
}, {
|
|
361
355
|
key: 'getRightFlatHeaders',
|
|
362
356
|
debug: () => {
|
|
363
|
-
var
|
|
357
|
+
var _table$options$debugA12;
|
|
364
358
|
|
|
365
|
-
return (
|
|
359
|
+
return (_table$options$debugA12 = table.options.debugAll) != null ? _table$options$debugA12 : table.options.debugHeaders;
|
|
366
360
|
}
|
|
367
361
|
}),
|
|
368
362
|
// Leaf Headers
|
|
369
|
-
getCenterLeafHeaders: memo(() => [
|
|
363
|
+
getCenterLeafHeaders: memo(() => [table.getCenterFlatHeaders()], flatHeaders => {
|
|
370
364
|
return flatHeaders.filter(header => {
|
|
371
365
|
var _header$subHeaders;
|
|
372
366
|
|
|
@@ -375,12 +369,12 @@
|
|
|
375
369
|
}, {
|
|
376
370
|
key: 'getCenterLeafHeaders',
|
|
377
371
|
debug: () => {
|
|
378
|
-
var
|
|
372
|
+
var _table$options$debugA13;
|
|
379
373
|
|
|
380
|
-
return (
|
|
374
|
+
return (_table$options$debugA13 = table.options.debugAll) != null ? _table$options$debugA13 : table.options.debugHeaders;
|
|
381
375
|
}
|
|
382
376
|
}),
|
|
383
|
-
getLeftLeafHeaders: memo(() => [
|
|
377
|
+
getLeftLeafHeaders: memo(() => [table.getLeftFlatHeaders()], flatHeaders => {
|
|
384
378
|
return flatHeaders.filter(header => {
|
|
385
379
|
var _header$subHeaders2;
|
|
386
380
|
|
|
@@ -389,12 +383,12 @@
|
|
|
389
383
|
}, {
|
|
390
384
|
key: 'getLeftLeafHeaders',
|
|
391
385
|
debug: () => {
|
|
392
|
-
var
|
|
386
|
+
var _table$options$debugA14;
|
|
393
387
|
|
|
394
|
-
return (
|
|
388
|
+
return (_table$options$debugA14 = table.options.debugAll) != null ? _table$options$debugA14 : table.options.debugHeaders;
|
|
395
389
|
}
|
|
396
390
|
}),
|
|
397
|
-
getRightLeafHeaders: memo(() => [
|
|
391
|
+
getRightLeafHeaders: memo(() => [table.getRightFlatHeaders()], flatHeaders => {
|
|
398
392
|
return flatHeaders.filter(header => {
|
|
399
393
|
var _header$subHeaders3;
|
|
400
394
|
|
|
@@ -403,12 +397,12 @@
|
|
|
403
397
|
}, {
|
|
404
398
|
key: 'getRightLeafHeaders',
|
|
405
399
|
debug: () => {
|
|
406
|
-
var
|
|
400
|
+
var _table$options$debugA15;
|
|
407
401
|
|
|
408
|
-
return (
|
|
402
|
+
return (_table$options$debugA15 = table.options.debugAll) != null ? _table$options$debugA15 : table.options.debugHeaders;
|
|
409
403
|
}
|
|
410
404
|
}),
|
|
411
|
-
getLeafHeaders: memo(() => [
|
|
405
|
+
getLeafHeaders: memo(() => [table.getLeftHeaderGroups(), table.getCenterHeaderGroups(), table.getRightHeaderGroups()], (left, center, right) => {
|
|
412
406
|
var _left$0$headers, _left$, _center$0$headers, _center$, _right$0$headers, _right$;
|
|
413
407
|
|
|
414
408
|
return [...((_left$0$headers = (_left$ = left[0]) == null ? void 0 : _left$.headers) != null ? _left$0$headers : []), ...((_center$0$headers = (_center$ = center[0]) == null ? void 0 : _center$.headers) != null ? _center$0$headers : []), ...((_right$0$headers = (_right$ = right[0]) == null ? void 0 : _right$.headers) != null ? _right$0$headers : [])].map(header => {
|
|
@@ -417,15 +411,15 @@
|
|
|
417
411
|
}, {
|
|
418
412
|
key: 'getLeafHeaders',
|
|
419
413
|
debug: () => {
|
|
420
|
-
var
|
|
414
|
+
var _table$options$debugA16;
|
|
421
415
|
|
|
422
|
-
return (
|
|
416
|
+
return (_table$options$debugA16 = table.options.debugAll) != null ? _table$options$debugA16 : table.options.debugHeaders;
|
|
423
417
|
}
|
|
424
418
|
})
|
|
425
419
|
};
|
|
426
420
|
}
|
|
427
421
|
};
|
|
428
|
-
function buildHeaderGroups(allColumns, columnsToGroup,
|
|
422
|
+
function buildHeaderGroups(allColumns, columnsToGroup, table, headerFamily) {
|
|
429
423
|
var _headerGroups$0$heade, _headerGroups$;
|
|
430
424
|
|
|
431
425
|
// Find the max depth of the columns:
|
|
@@ -479,12 +473,12 @@
|
|
|
479
473
|
isPlaceholder = true;
|
|
480
474
|
}
|
|
481
475
|
|
|
482
|
-
if ((latestPendingParentHeader == null ? void 0 : latestPendingParentHeader.column) === column) {
|
|
476
|
+
if (latestPendingParentHeader && (latestPendingParentHeader == null ? void 0 : latestPendingParentHeader.column) === column) {
|
|
483
477
|
// This column is repeated. Add it as a sub header to the next batch
|
|
484
478
|
latestPendingParentHeader.subHeaders.push(headerToGroup);
|
|
485
479
|
} else {
|
|
486
480
|
// This is a new header. Let's create it
|
|
487
|
-
const header = createHeader(
|
|
481
|
+
const header = createHeader(table, column, {
|
|
488
482
|
id: [headerFamily, depth, column.id, headerToGroup == null ? void 0 : headerToGroup.id].filter(Boolean).join('_'),
|
|
489
483
|
isPlaceholder,
|
|
490
484
|
placeholderId: isPlaceholder ? "" + pendingParentHeaders.filter(d => d.column === column).length : undefined,
|
|
@@ -508,7 +502,7 @@
|
|
|
508
502
|
}
|
|
509
503
|
};
|
|
510
504
|
|
|
511
|
-
const bottomHeaders = columnsToGroup.map((column, index) => createHeader(
|
|
505
|
+
const bottomHeaders = columnsToGroup.map((column, index) => createHeader(table, column, {
|
|
512
506
|
depth: maxDepth,
|
|
513
507
|
index
|
|
514
508
|
}));
|
|
@@ -580,23 +574,23 @@
|
|
|
580
574
|
...state
|
|
581
575
|
};
|
|
582
576
|
},
|
|
583
|
-
getDefaultOptions:
|
|
577
|
+
getDefaultOptions: table => {
|
|
584
578
|
return {
|
|
585
579
|
columnResizeMode: 'onEnd',
|
|
586
|
-
onColumnSizingChange: makeStateUpdater('columnSizing',
|
|
587
|
-
onColumnSizingInfoChange: makeStateUpdater('columnSizingInfo',
|
|
580
|
+
onColumnSizingChange: makeStateUpdater('columnSizing', table),
|
|
581
|
+
onColumnSizingInfoChange: makeStateUpdater('columnSizingInfo', table)
|
|
588
582
|
};
|
|
589
583
|
},
|
|
590
|
-
createColumn: (column,
|
|
584
|
+
createColumn: (column, table) => {
|
|
591
585
|
return {
|
|
592
586
|
getSize: () => {
|
|
593
587
|
var _column$columnDef$min, _ref, _column$columnDef$max;
|
|
594
588
|
|
|
595
|
-
const columnSize =
|
|
589
|
+
const columnSize = table.getState().columnSizing[column.id];
|
|
596
590
|
return Math.min(Math.max((_column$columnDef$min = column.columnDef.minSize) != null ? _column$columnDef$min : defaultColumnSizing.minSize, (_ref = columnSize != null ? columnSize : column.columnDef.size) != null ? _ref : defaultColumnSizing.size), (_column$columnDef$max = column.columnDef.maxSize) != null ? _column$columnDef$max : defaultColumnSizing.maxSize);
|
|
597
591
|
},
|
|
598
592
|
getStart: position => {
|
|
599
|
-
const columns = !position ?
|
|
593
|
+
const columns = !position ? table.getVisibleLeafColumns() : position === 'left' ? table.getLeftVisibleLeafColumns() : table.getRightVisibleLeafColumns();
|
|
600
594
|
const index = columns.findIndex(d => d.id === column.id);
|
|
601
595
|
|
|
602
596
|
if (index > 0) {
|
|
@@ -607,7 +601,7 @@
|
|
|
607
601
|
return 0;
|
|
608
602
|
},
|
|
609
603
|
resetSize: () => {
|
|
610
|
-
|
|
604
|
+
table.setColumnSizing(_ref2 => {
|
|
611
605
|
let {
|
|
612
606
|
[column.id]: _,
|
|
613
607
|
...rest
|
|
@@ -616,16 +610,16 @@
|
|
|
616
610
|
});
|
|
617
611
|
},
|
|
618
612
|
getCanResize: () => {
|
|
619
|
-
var _column$columnDef$ena,
|
|
613
|
+
var _column$columnDef$ena, _table$options$enable;
|
|
620
614
|
|
|
621
|
-
return ((_column$columnDef$ena = column.columnDef.enableResizing) != null ? _column$columnDef$ena : true) && ((
|
|
615
|
+
return ((_column$columnDef$ena = column.columnDef.enableResizing) != null ? _column$columnDef$ena : true) && ((_table$options$enable = table.options.enableColumnResizing) != null ? _table$options$enable : true);
|
|
622
616
|
},
|
|
623
617
|
getIsResizing: () => {
|
|
624
|
-
return
|
|
618
|
+
return table.getState().columnSizingInfo.isResizingColumn === column.id;
|
|
625
619
|
}
|
|
626
620
|
};
|
|
627
621
|
},
|
|
628
|
-
createHeader: (header,
|
|
622
|
+
createHeader: (header, table) => {
|
|
629
623
|
return {
|
|
630
624
|
getSize: () => {
|
|
631
625
|
let sum = 0;
|
|
@@ -652,7 +646,7 @@
|
|
|
652
646
|
return 0;
|
|
653
647
|
},
|
|
654
648
|
getResizeHandler: () => {
|
|
655
|
-
const column =
|
|
649
|
+
const column = table.getColumn(header.column.id);
|
|
656
650
|
const canResize = column.getCanResize();
|
|
657
651
|
return e => {
|
|
658
652
|
if (!canResize) {
|
|
@@ -677,7 +671,7 @@
|
|
|
677
671
|
}
|
|
678
672
|
|
|
679
673
|
let newColumnSizing = {};
|
|
680
|
-
|
|
674
|
+
table.setColumnSizingInfo(old => {
|
|
681
675
|
var _old$startOffset, _old$startSize;
|
|
682
676
|
|
|
683
677
|
const deltaOffset = clientXPos - ((_old$startOffset = old == null ? void 0 : old.startOffset) != null ? _old$startOffset : 0);
|
|
@@ -692,8 +686,8 @@
|
|
|
692
686
|
};
|
|
693
687
|
});
|
|
694
688
|
|
|
695
|
-
if (
|
|
696
|
-
|
|
689
|
+
if (table.options.columnResizeMode === 'onChange' || eventType === 'end') {
|
|
690
|
+
table.setColumnSizing(old => ({ ...old,
|
|
697
691
|
...newColumnSizing
|
|
698
692
|
}));
|
|
699
693
|
}
|
|
@@ -703,7 +697,7 @@
|
|
|
703
697
|
|
|
704
698
|
const onEnd = clientXPos => {
|
|
705
699
|
updateOffset('end', clientXPos);
|
|
706
|
-
|
|
700
|
+
table.setColumnSizingInfo(old => ({ ...old,
|
|
707
701
|
isResizingColumn: false,
|
|
708
702
|
startOffset: null,
|
|
709
703
|
startSize: null,
|
|
@@ -730,7 +724,7 @@
|
|
|
730
724
|
document.addEventListener('mouseup', mouseEvents.upHandler, passiveIfSupported);
|
|
731
725
|
}
|
|
732
726
|
|
|
733
|
-
|
|
727
|
+
table.setColumnSizingInfo(old => ({ ...old,
|
|
734
728
|
startOffset: clientX,
|
|
735
729
|
startSize,
|
|
736
730
|
deltaOffset: 0,
|
|
@@ -742,47 +736,47 @@
|
|
|
742
736
|
}
|
|
743
737
|
};
|
|
744
738
|
},
|
|
745
|
-
|
|
739
|
+
createTable: table => {
|
|
746
740
|
return {
|
|
747
|
-
setColumnSizing: updater =>
|
|
748
|
-
setColumnSizingInfo: updater =>
|
|
741
|
+
setColumnSizing: updater => table.options.onColumnSizingChange == null ? void 0 : table.options.onColumnSizingChange(updater),
|
|
742
|
+
setColumnSizingInfo: updater => table.options.onColumnSizingInfoChange == null ? void 0 : table.options.onColumnSizingInfoChange(updater),
|
|
749
743
|
resetColumnSizing: defaultState => {
|
|
750
|
-
var
|
|
744
|
+
var _table$initialState$c;
|
|
751
745
|
|
|
752
|
-
|
|
746
|
+
table.setColumnSizing(defaultState ? {} : (_table$initialState$c = table.initialState.columnSizing) != null ? _table$initialState$c : {});
|
|
753
747
|
},
|
|
754
748
|
resetHeaderSizeInfo: defaultState => {
|
|
755
|
-
var
|
|
749
|
+
var _table$initialState$c2;
|
|
756
750
|
|
|
757
|
-
|
|
751
|
+
table.setColumnSizingInfo(defaultState ? getDefaultColumnSizingInfoState() : (_table$initialState$c2 = table.initialState.columnSizingInfo) != null ? _table$initialState$c2 : getDefaultColumnSizingInfoState());
|
|
758
752
|
},
|
|
759
753
|
getTotalSize: () => {
|
|
760
|
-
var
|
|
754
|
+
var _table$getHeaderGroup, _table$getHeaderGroup2;
|
|
761
755
|
|
|
762
|
-
return (
|
|
756
|
+
return (_table$getHeaderGroup = (_table$getHeaderGroup2 = table.getHeaderGroups()[0]) == null ? void 0 : _table$getHeaderGroup2.headers.reduce((sum, header) => {
|
|
763
757
|
return sum + header.getSize();
|
|
764
|
-
}, 0)) != null ?
|
|
758
|
+
}, 0)) != null ? _table$getHeaderGroup : 0;
|
|
765
759
|
},
|
|
766
760
|
getLeftTotalSize: () => {
|
|
767
|
-
var
|
|
761
|
+
var _table$getLeftHeaderG, _table$getLeftHeaderG2;
|
|
768
762
|
|
|
769
|
-
return (
|
|
763
|
+
return (_table$getLeftHeaderG = (_table$getLeftHeaderG2 = table.getLeftHeaderGroups()[0]) == null ? void 0 : _table$getLeftHeaderG2.headers.reduce((sum, header) => {
|
|
770
764
|
return sum + header.getSize();
|
|
771
|
-
}, 0)) != null ?
|
|
765
|
+
}, 0)) != null ? _table$getLeftHeaderG : 0;
|
|
772
766
|
},
|
|
773
767
|
getCenterTotalSize: () => {
|
|
774
|
-
var
|
|
768
|
+
var _table$getCenterHeade, _table$getCenterHeade2;
|
|
775
769
|
|
|
776
|
-
return (
|
|
770
|
+
return (_table$getCenterHeade = (_table$getCenterHeade2 = table.getCenterHeaderGroups()[0]) == null ? void 0 : _table$getCenterHeade2.headers.reduce((sum, header) => {
|
|
777
771
|
return sum + header.getSize();
|
|
778
|
-
}, 0)) != null ?
|
|
772
|
+
}, 0)) != null ? _table$getCenterHeade : 0;
|
|
779
773
|
},
|
|
780
774
|
getRightTotalSize: () => {
|
|
781
|
-
var
|
|
775
|
+
var _table$getRightHeader, _table$getRightHeader2;
|
|
782
776
|
|
|
783
|
-
return (
|
|
777
|
+
return (_table$getRightHeader = (_table$getRightHeader2 = table.getRightHeaderGroups()[0]) == null ? void 0 : _table$getRightHeader2.headers.reduce((sum, header) => {
|
|
784
778
|
return sum + header.getSize();
|
|
785
|
-
}, 0)) != null ?
|
|
779
|
+
}, 0)) != null ? _table$getRightHeader : 0;
|
|
786
780
|
}
|
|
787
781
|
};
|
|
788
782
|
}
|
|
@@ -825,65 +819,65 @@
|
|
|
825
819
|
...state
|
|
826
820
|
};
|
|
827
821
|
},
|
|
828
|
-
getDefaultOptions:
|
|
822
|
+
getDefaultOptions: table => {
|
|
829
823
|
return {
|
|
830
|
-
onExpandedChange: makeStateUpdater('expanded',
|
|
824
|
+
onExpandedChange: makeStateUpdater('expanded', table),
|
|
831
825
|
paginateExpandedRows: true
|
|
832
826
|
};
|
|
833
827
|
},
|
|
834
|
-
|
|
828
|
+
createTable: table => {
|
|
835
829
|
let registered = false;
|
|
836
830
|
let queued = false;
|
|
837
831
|
return {
|
|
838
832
|
_autoResetExpanded: () => {
|
|
839
|
-
var _ref,
|
|
833
|
+
var _ref, _table$options$autoRe;
|
|
840
834
|
|
|
841
835
|
if (!registered) {
|
|
842
|
-
|
|
836
|
+
table._queue(() => {
|
|
843
837
|
registered = true;
|
|
844
838
|
});
|
|
845
839
|
|
|
846
840
|
return;
|
|
847
841
|
}
|
|
848
842
|
|
|
849
|
-
if ((_ref = (
|
|
843
|
+
if ((_ref = (_table$options$autoRe = table.options.autoResetAll) != null ? _table$options$autoRe : table.options.autoResetExpanded) != null ? _ref : !table.options.manualExpanding) {
|
|
850
844
|
if (queued) return;
|
|
851
845
|
queued = true;
|
|
852
846
|
|
|
853
|
-
|
|
854
|
-
|
|
847
|
+
table._queue(() => {
|
|
848
|
+
table.resetExpanded();
|
|
855
849
|
queued = false;
|
|
856
850
|
});
|
|
857
851
|
}
|
|
858
852
|
},
|
|
859
|
-
setExpanded: updater =>
|
|
853
|
+
setExpanded: updater => table.options.onExpandedChange == null ? void 0 : table.options.onExpandedChange(updater),
|
|
860
854
|
toggleAllRowsExpanded: expanded => {
|
|
861
|
-
if (expanded != null ? expanded : !
|
|
862
|
-
|
|
855
|
+
if (expanded != null ? expanded : !table.getIsAllRowsExpanded()) {
|
|
856
|
+
table.setExpanded(true);
|
|
863
857
|
} else {
|
|
864
|
-
|
|
858
|
+
table.setExpanded({});
|
|
865
859
|
}
|
|
866
860
|
},
|
|
867
861
|
resetExpanded: defaultState => {
|
|
868
|
-
var
|
|
862
|
+
var _table$initialState$e, _table$initialState;
|
|
869
863
|
|
|
870
|
-
|
|
864
|
+
table.setExpanded(defaultState ? {} : (_table$initialState$e = (_table$initialState = table.initialState) == null ? void 0 : _table$initialState.expanded) != null ? _table$initialState$e : {});
|
|
871
865
|
},
|
|
872
866
|
getCanSomeRowsExpand: () => {
|
|
873
|
-
return
|
|
867
|
+
return table.getRowModel().flatRows.some(row => row.getCanExpand());
|
|
874
868
|
},
|
|
875
869
|
getToggleAllRowsExpandedHandler: () => {
|
|
876
870
|
return e => {
|
|
877
871
|
e.persist == null ? void 0 : e.persist();
|
|
878
|
-
|
|
872
|
+
table.toggleAllRowsExpanded();
|
|
879
873
|
};
|
|
880
874
|
},
|
|
881
875
|
getIsSomeRowsExpanded: () => {
|
|
882
|
-
const expanded =
|
|
876
|
+
const expanded = table.getState().expanded;
|
|
883
877
|
return expanded === true || Object.values(expanded).some(Boolean);
|
|
884
878
|
},
|
|
885
879
|
getIsAllRowsExpanded: () => {
|
|
886
|
-
const expanded =
|
|
880
|
+
const expanded = table.getState().expanded; // If expanded is true, save some cycles and return true
|
|
887
881
|
|
|
888
882
|
if (typeof expanded === 'boolean') {
|
|
889
883
|
return expanded === true;
|
|
@@ -894,7 +888,7 @@
|
|
|
894
888
|
} // If any row is not expanded, return false
|
|
895
889
|
|
|
896
890
|
|
|
897
|
-
if (
|
|
891
|
+
if (table.getRowModel().flatRows.some(row => row.getIsExpanded())) {
|
|
898
892
|
return false;
|
|
899
893
|
} // They must all be expanded :shrug:
|
|
900
894
|
|
|
@@ -903,38 +897,38 @@
|
|
|
903
897
|
},
|
|
904
898
|
getExpandedDepth: () => {
|
|
905
899
|
let maxDepth = 0;
|
|
906
|
-
const rowIds =
|
|
900
|
+
const rowIds = table.getState().expanded === true ? Object.keys(table.getRowModel().rowsById) : Object.keys(table.getState().expanded);
|
|
907
901
|
rowIds.forEach(id => {
|
|
908
902
|
const splitId = id.split('.');
|
|
909
903
|
maxDepth = Math.max(maxDepth, splitId.length);
|
|
910
904
|
});
|
|
911
905
|
return maxDepth;
|
|
912
906
|
},
|
|
913
|
-
getPreExpandedRowModel: () =>
|
|
907
|
+
getPreExpandedRowModel: () => table.getSortedRowModel(),
|
|
914
908
|
getExpandedRowModel: () => {
|
|
915
|
-
if (!
|
|
916
|
-
|
|
909
|
+
if (!table._getExpandedRowModel && table.options.getExpandedRowModel) {
|
|
910
|
+
table._getExpandedRowModel = table.options.getExpandedRowModel(table);
|
|
917
911
|
}
|
|
918
912
|
|
|
919
|
-
if (
|
|
920
|
-
return
|
|
913
|
+
if (table.options.manualExpanding || !table._getExpandedRowModel) {
|
|
914
|
+
return table.getPreExpandedRowModel();
|
|
921
915
|
}
|
|
922
916
|
|
|
923
|
-
return
|
|
917
|
+
return table._getExpandedRowModel();
|
|
924
918
|
}
|
|
925
919
|
};
|
|
926
920
|
},
|
|
927
|
-
createRow: (row,
|
|
921
|
+
createRow: (row, table) => {
|
|
928
922
|
return {
|
|
929
923
|
toggleExpanded: expanded => {
|
|
930
|
-
|
|
924
|
+
table.setExpanded(old => {
|
|
931
925
|
var _expanded;
|
|
932
926
|
|
|
933
927
|
const exists = old === true ? true : !!(old != null && old[row.id]);
|
|
934
928
|
let oldExpanded = {};
|
|
935
929
|
|
|
936
930
|
if (old === true) {
|
|
937
|
-
Object.keys(
|
|
931
|
+
Object.keys(table.getRowModel().rowsById).forEach(rowId => {
|
|
938
932
|
oldExpanded[rowId] = true;
|
|
939
933
|
});
|
|
940
934
|
} else {
|
|
@@ -961,15 +955,15 @@
|
|
|
961
955
|
});
|
|
962
956
|
},
|
|
963
957
|
getIsExpanded: () => {
|
|
964
|
-
var
|
|
958
|
+
var _table$options$getIsR;
|
|
965
959
|
|
|
966
|
-
const expanded =
|
|
967
|
-
return !!((
|
|
960
|
+
const expanded = table.getState().expanded;
|
|
961
|
+
return !!((_table$options$getIsR = table.options.getIsRowExpanded == null ? void 0 : table.options.getIsRowExpanded(row)) != null ? _table$options$getIsR : expanded === true || (expanded == null ? void 0 : expanded[row.id]));
|
|
968
962
|
},
|
|
969
963
|
getCanExpand: () => {
|
|
970
|
-
var
|
|
964
|
+
var _table$options$getRow, _table$options$enable, _row$subRows;
|
|
971
965
|
|
|
972
|
-
return ((
|
|
966
|
+
return ((_table$options$getRow = table.options.getRowCanExpand == null ? void 0 : table.options.getRowCanExpand(row)) != null ? _table$options$getRow : true) && ((_table$options$enable = table.options.enableExpanding) != null ? _table$options$enable : true) && !!((_row$subRows = row.subRows) != null && _row$subRows.length);
|
|
973
967
|
},
|
|
974
968
|
getToggleExpandedHandler: () => {
|
|
975
969
|
const canExpand = row.getCanExpand();
|
|
@@ -1105,24 +1099,24 @@
|
|
|
1105
1099
|
...state
|
|
1106
1100
|
};
|
|
1107
1101
|
},
|
|
1108
|
-
getDefaultOptions:
|
|
1102
|
+
getDefaultOptions: table => {
|
|
1109
1103
|
return {
|
|
1110
|
-
onColumnFiltersChange: makeStateUpdater('columnFilters',
|
|
1111
|
-
onGlobalFilterChange: makeStateUpdater('globalFilter',
|
|
1104
|
+
onColumnFiltersChange: makeStateUpdater('columnFilters', table),
|
|
1105
|
+
onGlobalFilterChange: makeStateUpdater('globalFilter', table),
|
|
1112
1106
|
filterFromLeafRows: false,
|
|
1113
1107
|
globalFilterFn: 'auto',
|
|
1114
1108
|
getColumnCanGlobalFilter: column => {
|
|
1115
|
-
var
|
|
1109
|
+
var _table$getCoreRowMode, _table$getCoreRowMode2;
|
|
1116
1110
|
|
|
1117
|
-
const value = (
|
|
1111
|
+
const value = (_table$getCoreRowMode = table.getCoreRowModel().flatRows[0]) == null ? void 0 : (_table$getCoreRowMode2 = _table$getCoreRowMode._getAllCellsByColumnId()[column.id]) == null ? void 0 : _table$getCoreRowMode2.getValue();
|
|
1118
1112
|
return typeof value === 'string';
|
|
1119
1113
|
}
|
|
1120
1114
|
};
|
|
1121
1115
|
},
|
|
1122
|
-
createColumn: (column,
|
|
1116
|
+
createColumn: (column, table) => {
|
|
1123
1117
|
return {
|
|
1124
1118
|
getAutoFilterFn: () => {
|
|
1125
|
-
const firstRow =
|
|
1119
|
+
const firstRow = table.getCoreRowModel().flatRows[0];
|
|
1126
1120
|
const value = firstRow == null ? void 0 : firstRow.getValue(column.id);
|
|
1127
1121
|
|
|
1128
1122
|
if (typeof value === 'string') {
|
|
@@ -1148,34 +1142,31 @@
|
|
|
1148
1142
|
return filterFns.weakEquals;
|
|
1149
1143
|
},
|
|
1150
1144
|
getFilterFn: () => {
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
const userFilterFns = instance.options.filterFns;
|
|
1154
|
-
return isFunction(column.columnDef.filterFn) ? column.columnDef.filterFn : column.columnDef.filterFn === 'auto' ? column.getAutoFilterFn() : (_ref = userFilterFns == null ? void 0 : userFilterFns[column.columnDef.filterFn]) != null ? _ref : filterFns[column.columnDef.filterFn];
|
|
1145
|
+
return isFunction(column.columnDef.filterFn) ? column.columnDef.filterFn : column.columnDef.filterFn === 'auto' ? column.getAutoFilterFn() : filterFns[column.columnDef.filterFn];
|
|
1155
1146
|
},
|
|
1156
1147
|
getCanFilter: () => {
|
|
1157
|
-
var _column$columnDef$ena,
|
|
1148
|
+
var _column$columnDef$ena, _table$options$enable, _table$options$enable2;
|
|
1158
1149
|
|
|
1159
|
-
return ((_column$columnDef$ena = column.columnDef.enableColumnFilter) != null ? _column$columnDef$ena : true) && ((
|
|
1150
|
+
return ((_column$columnDef$ena = column.columnDef.enableColumnFilter) != null ? _column$columnDef$ena : true) && ((_table$options$enable = table.options.enableColumnFilters) != null ? _table$options$enable : true) && ((_table$options$enable2 = table.options.enableFilters) != null ? _table$options$enable2 : true) && !!column.accessorFn;
|
|
1160
1151
|
},
|
|
1161
1152
|
getCanGlobalFilter: () => {
|
|
1162
|
-
var _column$columnDef$ena2,
|
|
1153
|
+
var _column$columnDef$ena2, _table$options$enable3, _table$options$enable4, _table$options$getCol;
|
|
1163
1154
|
|
|
1164
|
-
return ((_column$columnDef$ena2 = column.columnDef.enableGlobalFilter) != null ? _column$columnDef$ena2 : true) && ((
|
|
1155
|
+
return ((_column$columnDef$ena2 = column.columnDef.enableGlobalFilter) != null ? _column$columnDef$ena2 : true) && ((_table$options$enable3 = table.options.enableGlobalFilter) != null ? _table$options$enable3 : true) && ((_table$options$enable4 = table.options.enableFilters) != null ? _table$options$enable4 : true) && ((_table$options$getCol = table.options.getColumnCanGlobalFilter == null ? void 0 : table.options.getColumnCanGlobalFilter(column)) != null ? _table$options$getCol : true) && !!column.accessorFn;
|
|
1165
1156
|
},
|
|
1166
1157
|
getIsFiltered: () => column.getFilterIndex() > -1,
|
|
1167
1158
|
getFilterValue: () => {
|
|
1168
|
-
var
|
|
1159
|
+
var _table$getState$colum, _table$getState$colum2;
|
|
1169
1160
|
|
|
1170
|
-
return (
|
|
1161
|
+
return (_table$getState$colum = table.getState().columnFilters) == null ? void 0 : (_table$getState$colum2 = _table$getState$colum.find(d => d.id === column.id)) == null ? void 0 : _table$getState$colum2.value;
|
|
1171
1162
|
},
|
|
1172
1163
|
getFilterIndex: () => {
|
|
1173
|
-
var
|
|
1164
|
+
var _table$getState$colum3, _table$getState$colum4;
|
|
1174
1165
|
|
|
1175
|
-
return (
|
|
1166
|
+
return (_table$getState$colum3 = (_table$getState$colum4 = table.getState().columnFilters) == null ? void 0 : _table$getState$colum4.findIndex(d => d.id === column.id)) != null ? _table$getState$colum3 : -1;
|
|
1176
1167
|
},
|
|
1177
1168
|
setFilterValue: value => {
|
|
1178
|
-
|
|
1169
|
+
table.setColumnFilters(old => {
|
|
1179
1170
|
const filterFn = column.getFilterFn();
|
|
1180
1171
|
const previousfilter = old == null ? void 0 : old.find(d => d.id === column.id);
|
|
1181
1172
|
const newFilter = functionalUpdate(value, previousfilter ? previousfilter.value : undefined); //
|
|
@@ -1210,15 +1201,15 @@
|
|
|
1210
1201
|
return [newFilterObj];
|
|
1211
1202
|
});
|
|
1212
1203
|
},
|
|
1213
|
-
_getFacetedRowModel:
|
|
1204
|
+
_getFacetedRowModel: table.options.getFacetedRowModel && table.options.getFacetedRowModel(table, column.id),
|
|
1214
1205
|
getFacetedRowModel: () => {
|
|
1215
1206
|
if (!column._getFacetedRowModel) {
|
|
1216
|
-
return
|
|
1207
|
+
return table.getPreFilteredRowModel();
|
|
1217
1208
|
}
|
|
1218
1209
|
|
|
1219
1210
|
return column._getFacetedRowModel();
|
|
1220
1211
|
},
|
|
1221
|
-
_getFacetedUniqueValues:
|
|
1212
|
+
_getFacetedUniqueValues: table.options.getFacetedUniqueValues && table.options.getFacetedUniqueValues(table, column.id),
|
|
1222
1213
|
getFacetedUniqueValues: () => {
|
|
1223
1214
|
if (!column._getFacetedUniqueValues) {
|
|
1224
1215
|
return new Map();
|
|
@@ -1226,7 +1217,7 @@
|
|
|
1226
1217
|
|
|
1227
1218
|
return column._getFacetedUniqueValues();
|
|
1228
1219
|
},
|
|
1229
|
-
_getFacetedMinMaxValues:
|
|
1220
|
+
_getFacetedMinMaxValues: table.options.getFacetedMinMaxValues && table.options.getFacetedMinMaxValues(table, column.id),
|
|
1230
1221
|
getFacetedMinMaxValues: () => {
|
|
1231
1222
|
if (!column._getFacetedMinMaxValues) {
|
|
1232
1223
|
return undefined;
|
|
@@ -1238,28 +1229,25 @@
|
|
|
1238
1229
|
|
|
1239
1230
|
};
|
|
1240
1231
|
},
|
|
1241
|
-
createRow: (row,
|
|
1232
|
+
createRow: (row, table) => {
|
|
1242
1233
|
return {
|
|
1243
1234
|
columnFilters: {},
|
|
1244
1235
|
columnFiltersMeta: {}
|
|
1245
1236
|
};
|
|
1246
1237
|
},
|
|
1247
|
-
|
|
1238
|
+
createTable: table => {
|
|
1248
1239
|
return {
|
|
1249
1240
|
getGlobalAutoFilterFn: () => {
|
|
1250
1241
|
return filterFns.includesString;
|
|
1251
1242
|
},
|
|
1252
1243
|
getGlobalFilterFn: () => {
|
|
1253
|
-
var _ref2;
|
|
1254
|
-
|
|
1255
1244
|
const {
|
|
1256
|
-
filterFns: userFilterFns,
|
|
1257
1245
|
globalFilterFn: globalFilterFn
|
|
1258
|
-
} =
|
|
1259
|
-
return isFunction(globalFilterFn) ? globalFilterFn : globalFilterFn === 'auto' ?
|
|
1246
|
+
} = table.options;
|
|
1247
|
+
return isFunction(globalFilterFn) ? globalFilterFn : globalFilterFn === 'auto' ? table.getGlobalAutoFilterFn() : filterFns[globalFilterFn];
|
|
1260
1248
|
},
|
|
1261
1249
|
setColumnFilters: updater => {
|
|
1262
|
-
const leafColumns =
|
|
1250
|
+
const leafColumns = table.getAllLeafColumns();
|
|
1263
1251
|
|
|
1264
1252
|
const updateFn = old => {
|
|
1265
1253
|
var _functionalUpdate;
|
|
@@ -1279,51 +1267,51 @@
|
|
|
1279
1267
|
});
|
|
1280
1268
|
};
|
|
1281
1269
|
|
|
1282
|
-
|
|
1270
|
+
table.options.onColumnFiltersChange == null ? void 0 : table.options.onColumnFiltersChange(updateFn);
|
|
1283
1271
|
},
|
|
1284
1272
|
setGlobalFilter: updater => {
|
|
1285
|
-
|
|
1273
|
+
table.options.onGlobalFilterChange == null ? void 0 : table.options.onGlobalFilterChange(updater);
|
|
1286
1274
|
},
|
|
1287
1275
|
resetGlobalFilter: defaultState => {
|
|
1288
|
-
|
|
1276
|
+
table.setGlobalFilter(defaultState ? undefined : table.initialState.globalFilter);
|
|
1289
1277
|
},
|
|
1290
1278
|
resetColumnFilters: defaultState => {
|
|
1291
|
-
var
|
|
1279
|
+
var _table$initialState$c, _table$initialState;
|
|
1292
1280
|
|
|
1293
|
-
|
|
1281
|
+
table.setColumnFilters(defaultState ? [] : (_table$initialState$c = (_table$initialState = table.initialState) == null ? void 0 : _table$initialState.columnFilters) != null ? _table$initialState$c : []);
|
|
1294
1282
|
},
|
|
1295
|
-
getPreFilteredRowModel: () =>
|
|
1296
|
-
_getFilteredRowModel:
|
|
1283
|
+
getPreFilteredRowModel: () => table.getCoreRowModel(),
|
|
1284
|
+
_getFilteredRowModel: table.options.getFilteredRowModel && table.options.getFilteredRowModel(table),
|
|
1297
1285
|
getFilteredRowModel: () => {
|
|
1298
|
-
if (
|
|
1299
|
-
return
|
|
1286
|
+
if (table.options.manualFiltering || !table._getFilteredRowModel) {
|
|
1287
|
+
return table.getPreFilteredRowModel();
|
|
1300
1288
|
}
|
|
1301
1289
|
|
|
1302
|
-
return
|
|
1290
|
+
return table._getFilteredRowModel();
|
|
1303
1291
|
},
|
|
1304
|
-
_getGlobalFacetedRowModel:
|
|
1292
|
+
_getGlobalFacetedRowModel: table.options.getFacetedRowModel && table.options.getFacetedRowModel(table, '__global__'),
|
|
1305
1293
|
getGlobalFacetedRowModel: () => {
|
|
1306
|
-
if (
|
|
1307
|
-
return
|
|
1294
|
+
if (table.options.manualFiltering || !table._getGlobalFacetedRowModel) {
|
|
1295
|
+
return table.getPreFilteredRowModel();
|
|
1308
1296
|
}
|
|
1309
1297
|
|
|
1310
|
-
return
|
|
1298
|
+
return table._getGlobalFacetedRowModel();
|
|
1311
1299
|
},
|
|
1312
|
-
_getGlobalFacetedUniqueValues:
|
|
1300
|
+
_getGlobalFacetedUniqueValues: table.options.getFacetedUniqueValues && table.options.getFacetedUniqueValues(table, '__global__'),
|
|
1313
1301
|
getGlobalFacetedUniqueValues: () => {
|
|
1314
|
-
if (!
|
|
1302
|
+
if (!table._getGlobalFacetedUniqueValues) {
|
|
1315
1303
|
return new Map();
|
|
1316
1304
|
}
|
|
1317
1305
|
|
|
1318
|
-
return
|
|
1306
|
+
return table._getGlobalFacetedUniqueValues();
|
|
1319
1307
|
},
|
|
1320
|
-
_getGlobalFacetedMinMaxValues:
|
|
1308
|
+
_getGlobalFacetedMinMaxValues: table.options.getFacetedMinMaxValues && table.options.getFacetedMinMaxValues(table, '__global__'),
|
|
1321
1309
|
getGlobalFacetedMinMaxValues: () => {
|
|
1322
|
-
if (!
|
|
1310
|
+
if (!table._getGlobalFacetedMinMaxValues) {
|
|
1323
1311
|
return;
|
|
1324
1312
|
}
|
|
1325
1313
|
|
|
1326
|
-
return
|
|
1314
|
+
return table._getGlobalFacetedMinMaxValues();
|
|
1327
1315
|
}
|
|
1328
1316
|
};
|
|
1329
1317
|
}
|
|
@@ -1444,9 +1432,9 @@
|
|
|
1444
1432
|
getDefaultColumnDef: () => {
|
|
1445
1433
|
return {
|
|
1446
1434
|
aggregatedCell: props => {
|
|
1447
|
-
var
|
|
1435
|
+
var _toString, _props$getValue;
|
|
1448
1436
|
|
|
1449
|
-
return (
|
|
1437
|
+
return (_toString = (_props$getValue = props.getValue()) == null ? void 0 : _props$getValue.toString == null ? void 0 : _props$getValue.toString()) != null ? _toString : null;
|
|
1450
1438
|
},
|
|
1451
1439
|
aggregationFn: 'auto'
|
|
1452
1440
|
};
|
|
@@ -1457,16 +1445,16 @@
|
|
|
1457
1445
|
...state
|
|
1458
1446
|
};
|
|
1459
1447
|
},
|
|
1460
|
-
getDefaultOptions:
|
|
1448
|
+
getDefaultOptions: table => {
|
|
1461
1449
|
return {
|
|
1462
|
-
onGroupingChange: makeStateUpdater('grouping',
|
|
1450
|
+
onGroupingChange: makeStateUpdater('grouping', table),
|
|
1463
1451
|
groupedColumnMode: 'reorder'
|
|
1464
1452
|
};
|
|
1465
1453
|
},
|
|
1466
|
-
createColumn: (column,
|
|
1454
|
+
createColumn: (column, table) => {
|
|
1467
1455
|
return {
|
|
1468
1456
|
toggleGrouping: () => {
|
|
1469
|
-
|
|
1457
|
+
table.setGrouping(old => {
|
|
1470
1458
|
// Find any existing grouping for this column
|
|
1471
1459
|
if (old != null && old.includes(column.id)) {
|
|
1472
1460
|
return old.filter(d => d !== column.id);
|
|
@@ -1478,17 +1466,17 @@
|
|
|
1478
1466
|
getCanGroup: () => {
|
|
1479
1467
|
var _ref, _ref2, _ref3, _column$columnDef$ena;
|
|
1480
1468
|
|
|
1481
|
-
return (_ref = (_ref2 = (_ref3 = (_column$columnDef$ena = column.columnDef.enableGrouping) != null ? _column$columnDef$ena : true) != null ? _ref3 :
|
|
1469
|
+
return (_ref = (_ref2 = (_ref3 = (_column$columnDef$ena = column.columnDef.enableGrouping) != null ? _column$columnDef$ena : true) != null ? _ref3 : table.options.enableGrouping) != null ? _ref2 : true) != null ? _ref : !!column.accessorFn;
|
|
1482
1470
|
},
|
|
1483
1471
|
getIsGrouped: () => {
|
|
1484
|
-
var
|
|
1472
|
+
var _table$getState$group;
|
|
1485
1473
|
|
|
1486
|
-
return (
|
|
1474
|
+
return (_table$getState$group = table.getState().grouping) == null ? void 0 : _table$getState$group.includes(column.id);
|
|
1487
1475
|
},
|
|
1488
1476
|
getGroupedIndex: () => {
|
|
1489
|
-
var
|
|
1477
|
+
var _table$getState$group2;
|
|
1490
1478
|
|
|
1491
|
-
return (
|
|
1479
|
+
return (_table$getState$group2 = table.getState().grouping) == null ? void 0 : _table$getState$group2.indexOf(column.id);
|
|
1492
1480
|
},
|
|
1493
1481
|
getToggleGroupingHandler: () => {
|
|
1494
1482
|
const canGroup = column.getCanGroup();
|
|
@@ -1498,7 +1486,7 @@
|
|
|
1498
1486
|
};
|
|
1499
1487
|
},
|
|
1500
1488
|
getAutoAggregationFn: () => {
|
|
1501
|
-
const firstRow =
|
|
1489
|
+
const firstRow = table.getCoreRowModel().flatRows[0];
|
|
1502
1490
|
const value = firstRow == null ? void 0 : firstRow.getValue(column.id);
|
|
1503
1491
|
|
|
1504
1492
|
if (typeof value === 'number') {
|
|
@@ -1510,37 +1498,33 @@
|
|
|
1510
1498
|
}
|
|
1511
1499
|
},
|
|
1512
1500
|
getAggregationFn: () => {
|
|
1513
|
-
var _ref4;
|
|
1514
|
-
|
|
1515
|
-
const userAggregationFns = instance.options.aggregationFns;
|
|
1516
|
-
|
|
1517
1501
|
if (!column) {
|
|
1518
1502
|
throw new Error();
|
|
1519
1503
|
}
|
|
1520
1504
|
|
|
1521
|
-
return isFunction(column.columnDef.aggregationFn) ? column.columnDef.aggregationFn : column.columnDef.aggregationFn === 'auto' ? column.getAutoAggregationFn() :
|
|
1505
|
+
return isFunction(column.columnDef.aggregationFn) ? column.columnDef.aggregationFn : column.columnDef.aggregationFn === 'auto' ? column.getAutoAggregationFn() : aggregationFns[column.columnDef.aggregationFn];
|
|
1522
1506
|
}
|
|
1523
1507
|
};
|
|
1524
1508
|
},
|
|
1525
|
-
|
|
1509
|
+
createTable: table => {
|
|
1526
1510
|
return {
|
|
1527
|
-
setGrouping: updater =>
|
|
1511
|
+
setGrouping: updater => table.options.onGroupingChange == null ? void 0 : table.options.onGroupingChange(updater),
|
|
1528
1512
|
resetGrouping: defaultState => {
|
|
1529
|
-
var
|
|
1513
|
+
var _table$initialState$g, _table$initialState;
|
|
1530
1514
|
|
|
1531
|
-
|
|
1515
|
+
table.setGrouping(defaultState ? [] : (_table$initialState$g = (_table$initialState = table.initialState) == null ? void 0 : _table$initialState.grouping) != null ? _table$initialState$g : []);
|
|
1532
1516
|
},
|
|
1533
|
-
getPreGroupedRowModel: () =>
|
|
1517
|
+
getPreGroupedRowModel: () => table.getFilteredRowModel(),
|
|
1534
1518
|
getGroupedRowModel: () => {
|
|
1535
|
-
if (!
|
|
1536
|
-
|
|
1519
|
+
if (!table._getGroupedRowModel && table.options.getGroupedRowModel) {
|
|
1520
|
+
table._getGroupedRowModel = table.options.getGroupedRowModel(table);
|
|
1537
1521
|
}
|
|
1538
1522
|
|
|
1539
|
-
if (
|
|
1540
|
-
return
|
|
1523
|
+
if (table.options.manualGrouping || !table._getGroupedRowModel) {
|
|
1524
|
+
return table.getPreGroupedRowModel();
|
|
1541
1525
|
}
|
|
1542
1526
|
|
|
1543
|
-
return
|
|
1527
|
+
return table._getGroupedRowModel();
|
|
1544
1528
|
}
|
|
1545
1529
|
};
|
|
1546
1530
|
},
|
|
@@ -1550,12 +1534,7 @@
|
|
|
1550
1534
|
_groupingValuesCache: {}
|
|
1551
1535
|
};
|
|
1552
1536
|
},
|
|
1553
|
-
createCell: (cell, column, row,
|
|
1554
|
-
const getRenderValue = () => {
|
|
1555
|
-
var _cell$getValue;
|
|
1556
|
-
|
|
1557
|
-
return (_cell$getValue = cell.getValue()) != null ? _cell$getValue : instance.options.renderFallbackValue;
|
|
1558
|
-
};
|
|
1537
|
+
createCell: (cell, column, row, table) => {
|
|
1559
1538
|
|
|
1560
1539
|
return {
|
|
1561
1540
|
getIsGrouped: () => column.getIsGrouped() && column.id === row.groupingColumnId,
|
|
@@ -1564,22 +1543,6 @@
|
|
|
1564
1543
|
var _row$subRows;
|
|
1565
1544
|
|
|
1566
1545
|
return !cell.getIsGrouped() && !cell.getIsPlaceholder() && !!((_row$subRows = row.subRows) != null && _row$subRows.length);
|
|
1567
|
-
},
|
|
1568
|
-
renderAggregatedCell: () => {
|
|
1569
|
-
{
|
|
1570
|
-
if (!column.columnDef.aggregatedCell) {
|
|
1571
|
-
console.warn('A columnDef.aggregatedCell template is recommended for displaying aggregated values.');
|
|
1572
|
-
}
|
|
1573
|
-
}
|
|
1574
|
-
|
|
1575
|
-
const template = column.columnDef.aggregatedCell || column.columnDef.cell;
|
|
1576
|
-
return template ? instance._render(template, {
|
|
1577
|
-
instance,
|
|
1578
|
-
column,
|
|
1579
|
-
row,
|
|
1580
|
-
cell,
|
|
1581
|
-
getValue: getRenderValue
|
|
1582
|
-
}) : null;
|
|
1583
1546
|
}
|
|
1584
1547
|
};
|
|
1585
1548
|
}
|
|
@@ -1607,20 +1570,20 @@
|
|
|
1607
1570
|
...state
|
|
1608
1571
|
};
|
|
1609
1572
|
},
|
|
1610
|
-
getDefaultOptions:
|
|
1573
|
+
getDefaultOptions: table => {
|
|
1611
1574
|
return {
|
|
1612
|
-
onColumnOrderChange: makeStateUpdater('columnOrder',
|
|
1575
|
+
onColumnOrderChange: makeStateUpdater('columnOrder', table)
|
|
1613
1576
|
};
|
|
1614
1577
|
},
|
|
1615
|
-
|
|
1578
|
+
createTable: table => {
|
|
1616
1579
|
return {
|
|
1617
|
-
setColumnOrder: updater =>
|
|
1580
|
+
setColumnOrder: updater => table.options.onColumnOrderChange == null ? void 0 : table.options.onColumnOrderChange(updater),
|
|
1618
1581
|
resetColumnOrder: defaultState => {
|
|
1619
|
-
var
|
|
1582
|
+
var _table$initialState$c;
|
|
1620
1583
|
|
|
1621
|
-
|
|
1584
|
+
table.setColumnOrder(defaultState ? [] : (_table$initialState$c = table.initialState.columnOrder) != null ? _table$initialState$c : []);
|
|
1622
1585
|
},
|
|
1623
|
-
_getOrderColumnsFn: memo(() => [
|
|
1586
|
+
_getOrderColumnsFn: memo(() => [table.getState().columnOrder, table.getState().grouping, table.options.groupedColumnMode], (columnOrder, grouping, groupedColumnMode) => columns => {
|
|
1624
1587
|
// Sort grouped columns to the start of the column list
|
|
1625
1588
|
// before the headers are built
|
|
1626
1589
|
let orderedColumns = []; // If there is no order, return the normal columns
|
|
@@ -1648,7 +1611,7 @@
|
|
|
1648
1611
|
|
|
1649
1612
|
return orderColumns(orderedColumns, grouping, groupedColumnMode);
|
|
1650
1613
|
}, {
|
|
1651
|
-
key: 'getOrderColumnsFn' // debug: () =>
|
|
1614
|
+
key: 'getOrderColumnsFn' // debug: () => table.options.debugAll ?? table.options.debugTable,
|
|
1652
1615
|
|
|
1653
1616
|
})
|
|
1654
1617
|
};
|
|
@@ -1672,32 +1635,32 @@
|
|
|
1672
1635
|
}
|
|
1673
1636
|
};
|
|
1674
1637
|
},
|
|
1675
|
-
getDefaultOptions:
|
|
1638
|
+
getDefaultOptions: table => {
|
|
1676
1639
|
return {
|
|
1677
|
-
onPaginationChange: makeStateUpdater('pagination',
|
|
1640
|
+
onPaginationChange: makeStateUpdater('pagination', table)
|
|
1678
1641
|
};
|
|
1679
1642
|
},
|
|
1680
|
-
|
|
1643
|
+
createTable: table => {
|
|
1681
1644
|
let registered = false;
|
|
1682
1645
|
let queued = false;
|
|
1683
1646
|
return {
|
|
1684
1647
|
_autoResetPageIndex: () => {
|
|
1685
|
-
var _ref,
|
|
1648
|
+
var _ref, _table$options$autoRe;
|
|
1686
1649
|
|
|
1687
1650
|
if (!registered) {
|
|
1688
|
-
|
|
1651
|
+
table._queue(() => {
|
|
1689
1652
|
registered = true;
|
|
1690
1653
|
});
|
|
1691
1654
|
|
|
1692
1655
|
return;
|
|
1693
1656
|
}
|
|
1694
1657
|
|
|
1695
|
-
if ((_ref = (
|
|
1658
|
+
if ((_ref = (_table$options$autoRe = table.options.autoResetAll) != null ? _table$options$autoRe : table.options.autoResetPageIndex) != null ? _ref : !table.options.manualPagination) {
|
|
1696
1659
|
if (queued) return;
|
|
1697
1660
|
queued = true;
|
|
1698
1661
|
|
|
1699
|
-
|
|
1700
|
-
|
|
1662
|
+
table._queue(() => {
|
|
1663
|
+
table.resetPageIndex();
|
|
1701
1664
|
queued = false;
|
|
1702
1665
|
});
|
|
1703
1666
|
}
|
|
@@ -1708,17 +1671,17 @@
|
|
|
1708
1671
|
return newState;
|
|
1709
1672
|
};
|
|
1710
1673
|
|
|
1711
|
-
return
|
|
1674
|
+
return table.options.onPaginationChange == null ? void 0 : table.options.onPaginationChange(safeUpdater);
|
|
1712
1675
|
},
|
|
1713
1676
|
resetPagination: defaultState => {
|
|
1714
|
-
var
|
|
1677
|
+
var _table$initialState$p;
|
|
1715
1678
|
|
|
1716
|
-
|
|
1679
|
+
table.setPagination(defaultState ? getDefaultPaginationState() : (_table$initialState$p = table.initialState.pagination) != null ? _table$initialState$p : getDefaultPaginationState());
|
|
1717
1680
|
},
|
|
1718
1681
|
setPageIndex: updater => {
|
|
1719
|
-
|
|
1682
|
+
table.setPagination(old => {
|
|
1720
1683
|
let pageIndex = functionalUpdate(updater, old.pageIndex);
|
|
1721
|
-
const maxPageIndex = typeof
|
|
1684
|
+
const maxPageIndex = typeof table.options.pageCount === 'undefined' || table.options.pageCount === -1 ? Number.MAX_SAFE_INTEGER : table.options.pageCount - 1;
|
|
1722
1685
|
pageIndex = Math.min(Math.max(0, pageIndex), maxPageIndex);
|
|
1723
1686
|
return { ...old,
|
|
1724
1687
|
pageIndex
|
|
@@ -1726,17 +1689,17 @@
|
|
|
1726
1689
|
});
|
|
1727
1690
|
},
|
|
1728
1691
|
resetPageIndex: defaultState => {
|
|
1729
|
-
var
|
|
1692
|
+
var _table$initialState$p2, _table$initialState, _table$initialState$p3;
|
|
1730
1693
|
|
|
1731
|
-
|
|
1694
|
+
table.setPageIndex(defaultState ? defaultPageIndex : (_table$initialState$p2 = (_table$initialState = table.initialState) == null ? void 0 : (_table$initialState$p3 = _table$initialState.pagination) == null ? void 0 : _table$initialState$p3.pageIndex) != null ? _table$initialState$p2 : defaultPageIndex);
|
|
1732
1695
|
},
|
|
1733
1696
|
resetPageSize: defaultState => {
|
|
1734
|
-
var
|
|
1697
|
+
var _table$initialState$p4, _table$initialState2, _table$initialState2$;
|
|
1735
1698
|
|
|
1736
|
-
|
|
1699
|
+
table.setPageSize(defaultState ? defaultPageSize : (_table$initialState$p4 = (_table$initialState2 = table.initialState) == null ? void 0 : (_table$initialState2$ = _table$initialState2.pagination) == null ? void 0 : _table$initialState2$.pageSize) != null ? _table$initialState$p4 : defaultPageSize);
|
|
1737
1700
|
},
|
|
1738
1701
|
setPageSize: updater => {
|
|
1739
|
-
|
|
1702
|
+
table.setPagination(old => {
|
|
1740
1703
|
const pageSize = Math.max(1, functionalUpdate(updater, old.pageSize));
|
|
1741
1704
|
const topRowIndex = old.pageSize * old.pageIndex;
|
|
1742
1705
|
const pageIndex = Math.floor(topRowIndex / pageSize);
|
|
@@ -1746,10 +1709,10 @@
|
|
|
1746
1709
|
};
|
|
1747
1710
|
});
|
|
1748
1711
|
},
|
|
1749
|
-
setPageCount: updater =>
|
|
1750
|
-
var
|
|
1712
|
+
setPageCount: updater => table.setPagination(old => {
|
|
1713
|
+
var _table$options$pageCo;
|
|
1751
1714
|
|
|
1752
|
-
let newPageCount = functionalUpdate(updater, (
|
|
1715
|
+
let newPageCount = functionalUpdate(updater, (_table$options$pageCo = table.options.pageCount) != null ? _table$options$pageCo : -1);
|
|
1753
1716
|
|
|
1754
1717
|
if (typeof newPageCount === 'number') {
|
|
1755
1718
|
newPageCount = Math.max(-1, newPageCount);
|
|
@@ -1759,7 +1722,7 @@
|
|
|
1759
1722
|
pageCount: newPageCount
|
|
1760
1723
|
};
|
|
1761
1724
|
}),
|
|
1762
|
-
getPageOptions: memo(() => [
|
|
1725
|
+
getPageOptions: memo(() => [table.getPageCount()], pageCount => {
|
|
1763
1726
|
let pageOptions = [];
|
|
1764
1727
|
|
|
1765
1728
|
if (pageCount && pageCount > 0) {
|
|
@@ -1770,17 +1733,17 @@
|
|
|
1770
1733
|
}, {
|
|
1771
1734
|
key: 'getPageOptions',
|
|
1772
1735
|
debug: () => {
|
|
1773
|
-
var
|
|
1736
|
+
var _table$options$debugA;
|
|
1774
1737
|
|
|
1775
|
-
return (
|
|
1738
|
+
return (_table$options$debugA = table.options.debugAll) != null ? _table$options$debugA : table.options.debugTable;
|
|
1776
1739
|
}
|
|
1777
1740
|
}),
|
|
1778
|
-
getCanPreviousPage: () =>
|
|
1741
|
+
getCanPreviousPage: () => table.getState().pagination.pageIndex > 0,
|
|
1779
1742
|
getCanNextPage: () => {
|
|
1780
1743
|
const {
|
|
1781
1744
|
pageIndex
|
|
1782
|
-
} =
|
|
1783
|
-
const pageCount =
|
|
1745
|
+
} = table.getState().pagination;
|
|
1746
|
+
const pageCount = table.getPageCount();
|
|
1784
1747
|
|
|
1785
1748
|
if (pageCount === -1) {
|
|
1786
1749
|
return true;
|
|
@@ -1793,29 +1756,29 @@
|
|
|
1793
1756
|
return pageIndex < pageCount - 1;
|
|
1794
1757
|
},
|
|
1795
1758
|
previousPage: () => {
|
|
1796
|
-
return
|
|
1759
|
+
return table.setPageIndex(old => old - 1);
|
|
1797
1760
|
},
|
|
1798
1761
|
nextPage: () => {
|
|
1799
|
-
return
|
|
1762
|
+
return table.setPageIndex(old => {
|
|
1800
1763
|
return old + 1;
|
|
1801
1764
|
});
|
|
1802
1765
|
},
|
|
1803
|
-
getPrePaginationRowModel: () =>
|
|
1766
|
+
getPrePaginationRowModel: () => table.getExpandedRowModel(),
|
|
1804
1767
|
getPaginationRowModel: () => {
|
|
1805
|
-
if (!
|
|
1806
|
-
|
|
1768
|
+
if (!table._getPaginationRowModel && table.options.getPaginationRowModel) {
|
|
1769
|
+
table._getPaginationRowModel = table.options.getPaginationRowModel(table);
|
|
1807
1770
|
}
|
|
1808
1771
|
|
|
1809
|
-
if (
|
|
1810
|
-
return
|
|
1772
|
+
if (table.options.manualPagination || !table._getPaginationRowModel) {
|
|
1773
|
+
return table.getPrePaginationRowModel();
|
|
1811
1774
|
}
|
|
1812
1775
|
|
|
1813
|
-
return
|
|
1776
|
+
return table._getPaginationRowModel();
|
|
1814
1777
|
},
|
|
1815
1778
|
getPageCount: () => {
|
|
1816
|
-
var
|
|
1779
|
+
var _table$options$pageCo2;
|
|
1817
1780
|
|
|
1818
|
-
return (
|
|
1781
|
+
return (_table$options$pageCo2 = table.options.pageCount) != null ? _table$options$pageCo2 : Math.ceil(table.getPrePaginationRowModel().rows.length / table.getState().pagination.pageSize);
|
|
1819
1782
|
}
|
|
1820
1783
|
};
|
|
1821
1784
|
}
|
|
@@ -1834,16 +1797,16 @@
|
|
|
1834
1797
|
...state
|
|
1835
1798
|
};
|
|
1836
1799
|
},
|
|
1837
|
-
getDefaultOptions:
|
|
1800
|
+
getDefaultOptions: table => {
|
|
1838
1801
|
return {
|
|
1839
|
-
onColumnPinningChange: makeStateUpdater('columnPinning',
|
|
1802
|
+
onColumnPinningChange: makeStateUpdater('columnPinning', table)
|
|
1840
1803
|
};
|
|
1841
1804
|
},
|
|
1842
|
-
createColumn: (column,
|
|
1805
|
+
createColumn: (column, table) => {
|
|
1843
1806
|
return {
|
|
1844
1807
|
pin: position => {
|
|
1845
1808
|
const columnIds = column.getLeafColumns().map(d => d.id).filter(Boolean);
|
|
1846
|
-
|
|
1809
|
+
table.setColumnPinning(old => {
|
|
1847
1810
|
var _old$left3, _old$right3;
|
|
1848
1811
|
|
|
1849
1812
|
if (position === 'right') {
|
|
@@ -1873,9 +1836,9 @@
|
|
|
1873
1836
|
getCanPin: () => {
|
|
1874
1837
|
const leafColumns = column.getLeafColumns();
|
|
1875
1838
|
return leafColumns.some(d => {
|
|
1876
|
-
var _d$columnDef$enablePi,
|
|
1839
|
+
var _d$columnDef$enablePi, _table$options$enable;
|
|
1877
1840
|
|
|
1878
|
-
return ((_d$columnDef$enablePi = d.columnDef.enablePinning) != null ? _d$columnDef$enablePi : true) && ((
|
|
1841
|
+
return ((_d$columnDef$enablePi = d.columnDef.enablePinning) != null ? _d$columnDef$enablePi : true) && ((_table$options$enable = table.options.enablePinning) != null ? _table$options$enable : true);
|
|
1879
1842
|
});
|
|
1880
1843
|
},
|
|
1881
1844
|
getIsPinned: () => {
|
|
@@ -1883,33 +1846,33 @@
|
|
|
1883
1846
|
const {
|
|
1884
1847
|
left,
|
|
1885
1848
|
right
|
|
1886
|
-
} =
|
|
1849
|
+
} = table.getState().columnPinning;
|
|
1887
1850
|
const isLeft = leafColumnIds.some(d => left == null ? void 0 : left.includes(d));
|
|
1888
1851
|
const isRight = leafColumnIds.some(d => right == null ? void 0 : right.includes(d));
|
|
1889
1852
|
return isLeft ? 'left' : isRight ? 'right' : false;
|
|
1890
1853
|
},
|
|
1891
1854
|
getPinnedIndex: () => {
|
|
1892
|
-
var
|
|
1855
|
+
var _table$getState$colum, _table$getState$colum2, _table$getState$colum3;
|
|
1893
1856
|
|
|
1894
1857
|
const position = column.getIsPinned();
|
|
1895
|
-
return position ? (
|
|
1858
|
+
return position ? (_table$getState$colum = (_table$getState$colum2 = table.getState().columnPinning) == null ? void 0 : (_table$getState$colum3 = _table$getState$colum2[position]) == null ? void 0 : _table$getState$colum3.indexOf(column.id)) != null ? _table$getState$colum : -1 : 0;
|
|
1896
1859
|
}
|
|
1897
1860
|
};
|
|
1898
1861
|
},
|
|
1899
|
-
createRow: (row,
|
|
1862
|
+
createRow: (row, table) => {
|
|
1900
1863
|
return {
|
|
1901
|
-
getCenterVisibleCells: memo(() => [row._getAllVisibleCells(),
|
|
1864
|
+
getCenterVisibleCells: memo(() => [row._getAllVisibleCells(), table.getState().columnPinning.left, table.getState().columnPinning.right], (allCells, left, right) => {
|
|
1902
1865
|
const leftAndRight = [...(left != null ? left : []), ...(right != null ? right : [])];
|
|
1903
1866
|
return allCells.filter(d => !leftAndRight.includes(d.column.id));
|
|
1904
1867
|
}, {
|
|
1905
1868
|
key: "development" === 'production' ,
|
|
1906
1869
|
debug: () => {
|
|
1907
|
-
var
|
|
1870
|
+
var _table$options$debugA;
|
|
1908
1871
|
|
|
1909
|
-
return (
|
|
1872
|
+
return (_table$options$debugA = table.options.debugAll) != null ? _table$options$debugA : table.options.debugRows;
|
|
1910
1873
|
}
|
|
1911
1874
|
}),
|
|
1912
|
-
getLeftVisibleCells: memo(() => [row._getAllVisibleCells(),
|
|
1875
|
+
getLeftVisibleCells: memo(() => [row._getAllVisibleCells(), table.getState().columnPinning.left,,], (allCells, left) => {
|
|
1913
1876
|
const cells = (left != null ? left : []).map(columnId => allCells.find(cell => cell.column.id === columnId)).filter(Boolean).map(d => ({ ...d,
|
|
1914
1877
|
position: 'left'
|
|
1915
1878
|
}));
|
|
@@ -1917,12 +1880,12 @@
|
|
|
1917
1880
|
}, {
|
|
1918
1881
|
key: "development" === 'production' ,
|
|
1919
1882
|
debug: () => {
|
|
1920
|
-
var
|
|
1883
|
+
var _table$options$debugA2;
|
|
1921
1884
|
|
|
1922
|
-
return (
|
|
1885
|
+
return (_table$options$debugA2 = table.options.debugAll) != null ? _table$options$debugA2 : table.options.debugRows;
|
|
1923
1886
|
}
|
|
1924
1887
|
}),
|
|
1925
|
-
getRightVisibleCells: memo(() => [row._getAllVisibleCells(),
|
|
1888
|
+
getRightVisibleCells: memo(() => [row._getAllVisibleCells(), table.getState().columnPinning.right], (allCells, right) => {
|
|
1926
1889
|
const cells = (right != null ? right : []).map(columnId => allCells.find(cell => cell.column.id === columnId)).filter(Boolean).map(d => ({ ...d,
|
|
1927
1890
|
position: 'left'
|
|
1928
1891
|
}));
|
|
@@ -1930,25 +1893,25 @@
|
|
|
1930
1893
|
}, {
|
|
1931
1894
|
key: "development" === 'production' ,
|
|
1932
1895
|
debug: () => {
|
|
1933
|
-
var
|
|
1896
|
+
var _table$options$debugA3;
|
|
1934
1897
|
|
|
1935
|
-
return (
|
|
1898
|
+
return (_table$options$debugA3 = table.options.debugAll) != null ? _table$options$debugA3 : table.options.debugRows;
|
|
1936
1899
|
}
|
|
1937
1900
|
})
|
|
1938
1901
|
};
|
|
1939
1902
|
},
|
|
1940
|
-
|
|
1903
|
+
createTable: table => {
|
|
1941
1904
|
return {
|
|
1942
|
-
setColumnPinning: updater =>
|
|
1905
|
+
setColumnPinning: updater => table.options.onColumnPinningChange == null ? void 0 : table.options.onColumnPinningChange(updater),
|
|
1943
1906
|
resetColumnPinning: defaultState => {
|
|
1944
|
-
var
|
|
1907
|
+
var _table$initialState$c, _table$initialState;
|
|
1945
1908
|
|
|
1946
|
-
return
|
|
1909
|
+
return table.setColumnPinning(defaultState ? getDefaultPinningState() : (_table$initialState$c = (_table$initialState = table.initialState) == null ? void 0 : _table$initialState.columnPinning) != null ? _table$initialState$c : getDefaultPinningState());
|
|
1947
1910
|
},
|
|
1948
1911
|
getIsSomeColumnsPinned: position => {
|
|
1949
1912
|
var _pinningState$positio;
|
|
1950
1913
|
|
|
1951
|
-
const pinningState =
|
|
1914
|
+
const pinningState = table.getState().columnPinning;
|
|
1952
1915
|
|
|
1953
1916
|
if (!position) {
|
|
1954
1917
|
var _pinningState$left, _pinningState$right;
|
|
@@ -1958,35 +1921,35 @@
|
|
|
1958
1921
|
|
|
1959
1922
|
return Boolean((_pinningState$positio = pinningState[position]) == null ? void 0 : _pinningState$positio.length);
|
|
1960
1923
|
},
|
|
1961
|
-
getLeftLeafColumns: memo(() => [
|
|
1924
|
+
getLeftLeafColumns: memo(() => [table.getAllLeafColumns(), table.getState().columnPinning.left], (allColumns, left) => {
|
|
1962
1925
|
return (left != null ? left : []).map(columnId => allColumns.find(column => column.id === columnId)).filter(Boolean);
|
|
1963
1926
|
}, {
|
|
1964
1927
|
key: 'getLeftLeafColumns',
|
|
1965
1928
|
debug: () => {
|
|
1966
|
-
var
|
|
1929
|
+
var _table$options$debugA4;
|
|
1967
1930
|
|
|
1968
|
-
return (
|
|
1931
|
+
return (_table$options$debugA4 = table.options.debugAll) != null ? _table$options$debugA4 : table.options.debugColumns;
|
|
1969
1932
|
}
|
|
1970
1933
|
}),
|
|
1971
|
-
getRightLeafColumns: memo(() => [
|
|
1934
|
+
getRightLeafColumns: memo(() => [table.getAllLeafColumns(), table.getState().columnPinning.right], (allColumns, right) => {
|
|
1972
1935
|
return (right != null ? right : []).map(columnId => allColumns.find(column => column.id === columnId)).filter(Boolean);
|
|
1973
1936
|
}, {
|
|
1974
1937
|
key: 'getRightLeafColumns',
|
|
1975
1938
|
debug: () => {
|
|
1976
|
-
var
|
|
1939
|
+
var _table$options$debugA5;
|
|
1977
1940
|
|
|
1978
|
-
return (
|
|
1941
|
+
return (_table$options$debugA5 = table.options.debugAll) != null ? _table$options$debugA5 : table.options.debugColumns;
|
|
1979
1942
|
}
|
|
1980
1943
|
}),
|
|
1981
|
-
getCenterLeafColumns: memo(() => [
|
|
1944
|
+
getCenterLeafColumns: memo(() => [table.getAllLeafColumns(), table.getState().columnPinning.left, table.getState().columnPinning.right], (allColumns, left, right) => {
|
|
1982
1945
|
const leftAndRight = [...(left != null ? left : []), ...(right != null ? right : [])];
|
|
1983
1946
|
return allColumns.filter(d => !leftAndRight.includes(d.id));
|
|
1984
1947
|
}, {
|
|
1985
1948
|
key: 'getCenterLeafColumns',
|
|
1986
1949
|
debug: () => {
|
|
1987
|
-
var
|
|
1950
|
+
var _table$options$debugA6;
|
|
1988
1951
|
|
|
1989
|
-
return (
|
|
1952
|
+
return (_table$options$debugA6 = table.options.debugAll) != null ? _table$options$debugA6 : table.options.debugColumns;
|
|
1990
1953
|
}
|
|
1991
1954
|
})
|
|
1992
1955
|
};
|
|
@@ -2001,9 +1964,9 @@
|
|
|
2001
1964
|
...state
|
|
2002
1965
|
};
|
|
2003
1966
|
},
|
|
2004
|
-
getDefaultOptions:
|
|
1967
|
+
getDefaultOptions: table => {
|
|
2005
1968
|
return {
|
|
2006
|
-
onRowSelectionChange: makeStateUpdater('rowSelection',
|
|
1969
|
+
onRowSelectionChange: makeStateUpdater('rowSelection', table),
|
|
2007
1970
|
enableRowSelection: true,
|
|
2008
1971
|
enableMultiRowSelection: true,
|
|
2009
1972
|
enableSubRowSelection: true // enableGroupingRowSelection: false,
|
|
@@ -2012,20 +1975,20 @@
|
|
|
2012
1975
|
|
|
2013
1976
|
};
|
|
2014
1977
|
},
|
|
2015
|
-
|
|
1978
|
+
createTable: table => {
|
|
2016
1979
|
return {
|
|
2017
|
-
setRowSelection: updater =>
|
|
1980
|
+
setRowSelection: updater => table.options.onRowSelectionChange == null ? void 0 : table.options.onRowSelectionChange(updater),
|
|
2018
1981
|
resetRowSelection: defaultState => {
|
|
2019
|
-
var
|
|
1982
|
+
var _table$initialState$r;
|
|
2020
1983
|
|
|
2021
|
-
return
|
|
1984
|
+
return table.setRowSelection(defaultState ? {} : (_table$initialState$r = table.initialState.rowSelection) != null ? _table$initialState$r : {});
|
|
2022
1985
|
},
|
|
2023
1986
|
toggleAllRowsSelected: value => {
|
|
2024
|
-
|
|
2025
|
-
value = typeof value !== 'undefined' ? value : !
|
|
1987
|
+
table.setRowSelection(old => {
|
|
1988
|
+
value = typeof value !== 'undefined' ? value : !table.getIsAllRowsSelected();
|
|
2026
1989
|
const rowSelection = { ...old
|
|
2027
1990
|
};
|
|
2028
|
-
const preGroupedFlatRows =
|
|
1991
|
+
const preGroupedFlatRows = table.getPreGroupedRowModel().flatRows; // We don't use `mutateRowIsSelected` here for performance reasons.
|
|
2029
1992
|
// All of the rows are flat already, so it wouldn't be worth it
|
|
2030
1993
|
|
|
2031
1994
|
if (value) {
|
|
@@ -2041,12 +2004,12 @@
|
|
|
2041
2004
|
return rowSelection;
|
|
2042
2005
|
});
|
|
2043
2006
|
},
|
|
2044
|
-
toggleAllPageRowsSelected: value =>
|
|
2045
|
-
const resolvedValue = typeof value !== 'undefined' ? value : !
|
|
2007
|
+
toggleAllPageRowsSelected: value => table.setRowSelection(old => {
|
|
2008
|
+
const resolvedValue = typeof value !== 'undefined' ? value : !table.getIsAllPageRowsSelected();
|
|
2046
2009
|
const rowSelection = { ...old
|
|
2047
2010
|
};
|
|
2048
|
-
|
|
2049
|
-
mutateRowIsSelected(rowSelection, row.id, resolvedValue,
|
|
2011
|
+
table.getRowModel().rows.forEach(row => {
|
|
2012
|
+
mutateRowIsSelected(rowSelection, row.id, resolvedValue, table);
|
|
2050
2013
|
});
|
|
2051
2014
|
return rowSelection;
|
|
2052
2015
|
}),
|
|
@@ -2055,7 +2018,7 @@
|
|
|
2055
2018
|
// rows,
|
|
2056
2019
|
// rowsById,
|
|
2057
2020
|
// options: { selectGroupingRows, selectSubRows },
|
|
2058
|
-
// } =
|
|
2021
|
+
// } = table
|
|
2059
2022
|
// const findSelectedRow = (rows: Row[]) => {
|
|
2060
2023
|
// let found
|
|
2061
2024
|
// rows.find(d => {
|
|
@@ -2083,7 +2046,7 @@
|
|
|
2083
2046
|
// selectSubRows: selectSubRows!,
|
|
2084
2047
|
// })
|
|
2085
2048
|
// }
|
|
2086
|
-
//
|
|
2049
|
+
// table.rows.forEach(row => {
|
|
2087
2050
|
// const isFirstRow = row.id === firstRow.id
|
|
2088
2051
|
// const isLastRow = row.id === lastRow.id
|
|
2089
2052
|
// if (isFirstRow || isLastRow) {
|
|
@@ -2098,10 +2061,10 @@
|
|
|
2098
2061
|
// addRow(row)
|
|
2099
2062
|
// }
|
|
2100
2063
|
// })
|
|
2101
|
-
//
|
|
2064
|
+
// table.setRowSelection(selectedRowIds)
|
|
2102
2065
|
// },
|
|
2103
|
-
getPreSelectedRowModel: () =>
|
|
2104
|
-
getSelectedRowModel: memo(() => [
|
|
2066
|
+
getPreSelectedRowModel: () => table.getCoreRowModel(),
|
|
2067
|
+
getSelectedRowModel: memo(() => [table.getState().rowSelection, table.getCoreRowModel()], (rowSelection, rowModel) => {
|
|
2105
2068
|
if (!Object.keys(rowSelection).length) {
|
|
2106
2069
|
return {
|
|
2107
2070
|
rows: [],
|
|
@@ -2110,16 +2073,16 @@
|
|
|
2110
2073
|
};
|
|
2111
2074
|
}
|
|
2112
2075
|
|
|
2113
|
-
return selectRowsFn(
|
|
2076
|
+
return selectRowsFn(table, rowModel);
|
|
2114
2077
|
}, {
|
|
2115
2078
|
key: 'getSelectedRowModel',
|
|
2116
2079
|
debug: () => {
|
|
2117
|
-
var
|
|
2080
|
+
var _table$options$debugA;
|
|
2118
2081
|
|
|
2119
|
-
return (
|
|
2082
|
+
return (_table$options$debugA = table.options.debugAll) != null ? _table$options$debugA : table.options.debugTable;
|
|
2120
2083
|
}
|
|
2121
2084
|
}),
|
|
2122
|
-
getFilteredSelectedRowModel: memo(() => [
|
|
2085
|
+
getFilteredSelectedRowModel: memo(() => [table.getState().rowSelection, table.getFilteredRowModel()], (rowSelection, rowModel) => {
|
|
2123
2086
|
if (!Object.keys(rowSelection).length) {
|
|
2124
2087
|
return {
|
|
2125
2088
|
rows: [],
|
|
@@ -2128,16 +2091,16 @@
|
|
|
2128
2091
|
};
|
|
2129
2092
|
}
|
|
2130
2093
|
|
|
2131
|
-
return selectRowsFn(
|
|
2094
|
+
return selectRowsFn(table, rowModel);
|
|
2132
2095
|
}, {
|
|
2133
2096
|
key: "development" === 'production' ,
|
|
2134
2097
|
debug: () => {
|
|
2135
|
-
var
|
|
2098
|
+
var _table$options$debugA2;
|
|
2136
2099
|
|
|
2137
|
-
return (
|
|
2100
|
+
return (_table$options$debugA2 = table.options.debugAll) != null ? _table$options$debugA2 : table.options.debugTable;
|
|
2138
2101
|
}
|
|
2139
2102
|
}),
|
|
2140
|
-
getGroupedSelectedRowModel: memo(() => [
|
|
2103
|
+
getGroupedSelectedRowModel: memo(() => [table.getState().rowSelection, table.getSortedRowModel()], (rowSelection, rowModel) => {
|
|
2141
2104
|
if (!Object.keys(rowSelection).length) {
|
|
2142
2105
|
return {
|
|
2143
2106
|
rows: [],
|
|
@@ -2146,31 +2109,31 @@
|
|
|
2146
2109
|
};
|
|
2147
2110
|
}
|
|
2148
2111
|
|
|
2149
|
-
return selectRowsFn(
|
|
2112
|
+
return selectRowsFn(table, rowModel);
|
|
2150
2113
|
}, {
|
|
2151
2114
|
key: "development" === 'production' ,
|
|
2152
2115
|
debug: () => {
|
|
2153
|
-
var
|
|
2116
|
+
var _table$options$debugA3;
|
|
2154
2117
|
|
|
2155
|
-
return (
|
|
2118
|
+
return (_table$options$debugA3 = table.options.debugAll) != null ? _table$options$debugA3 : table.options.debugTable;
|
|
2156
2119
|
}
|
|
2157
2120
|
}),
|
|
2158
2121
|
///
|
|
2159
2122
|
// getGroupingRowCanSelect: rowId => {
|
|
2160
|
-
// const row =
|
|
2123
|
+
// const row = table.getRow(rowId)
|
|
2161
2124
|
// if (!row) {
|
|
2162
2125
|
// throw new Error()
|
|
2163
2126
|
// }
|
|
2164
|
-
// if (typeof
|
|
2165
|
-
// return
|
|
2127
|
+
// if (typeof table.options.enableGroupingRowSelection === 'function') {
|
|
2128
|
+
// return table.options.enableGroupingRowSelection(row)
|
|
2166
2129
|
// }
|
|
2167
|
-
// return
|
|
2130
|
+
// return table.options.enableGroupingRowSelection ?? false
|
|
2168
2131
|
// },
|
|
2169
2132
|
getIsAllRowsSelected: () => {
|
|
2170
|
-
const preFilteredFlatRows =
|
|
2133
|
+
const preFilteredFlatRows = table.getPreFilteredRowModel().flatRows;
|
|
2171
2134
|
const {
|
|
2172
2135
|
rowSelection
|
|
2173
|
-
} =
|
|
2136
|
+
} = table.getState();
|
|
2174
2137
|
let isAllRowsSelected = Boolean(preFilteredFlatRows.length && Object.keys(rowSelection).length);
|
|
2175
2138
|
|
|
2176
2139
|
if (isAllRowsSelected) {
|
|
@@ -2182,10 +2145,10 @@
|
|
|
2182
2145
|
return isAllRowsSelected;
|
|
2183
2146
|
},
|
|
2184
2147
|
getIsAllPageRowsSelected: () => {
|
|
2185
|
-
const paginationFlatRows =
|
|
2148
|
+
const paginationFlatRows = table.getPaginationRowModel().flatRows;
|
|
2186
2149
|
const {
|
|
2187
2150
|
rowSelection
|
|
2188
|
-
} =
|
|
2151
|
+
} = table.getState();
|
|
2189
2152
|
let isAllPageRowsSelected = !!paginationFlatRows.length;
|
|
2190
2153
|
|
|
2191
2154
|
if (isAllPageRowsSelected && paginationFlatRows.some(row => !rowSelection[row.id])) {
|
|
@@ -2195,31 +2158,31 @@
|
|
|
2195
2158
|
return isAllPageRowsSelected;
|
|
2196
2159
|
},
|
|
2197
2160
|
getIsSomeRowsSelected: () => {
|
|
2198
|
-
var
|
|
2161
|
+
var _table$getState$rowSe;
|
|
2199
2162
|
|
|
2200
|
-
return !
|
|
2163
|
+
return !table.getIsAllRowsSelected() && !!Object.keys((_table$getState$rowSe = table.getState().rowSelection) != null ? _table$getState$rowSe : {}).length;
|
|
2201
2164
|
},
|
|
2202
2165
|
getIsSomePageRowsSelected: () => {
|
|
2203
|
-
const paginationFlatRows =
|
|
2204
|
-
return
|
|
2166
|
+
const paginationFlatRows = table.getPaginationRowModel().flatRows;
|
|
2167
|
+
return table.getIsAllPageRowsSelected() ? false : paginationFlatRows.some(d => d.getIsSelected() || d.getIsSomeSelected());
|
|
2205
2168
|
},
|
|
2206
2169
|
getToggleAllRowsSelectedHandler: () => {
|
|
2207
2170
|
return e => {
|
|
2208
|
-
|
|
2171
|
+
table.toggleAllRowsSelected(e.target.checked);
|
|
2209
2172
|
};
|
|
2210
2173
|
},
|
|
2211
2174
|
getToggleAllPageRowsSelectedHandler: () => {
|
|
2212
2175
|
return e => {
|
|
2213
|
-
|
|
2176
|
+
table.toggleAllPageRowsSelected(e.target.checked);
|
|
2214
2177
|
};
|
|
2215
2178
|
}
|
|
2216
2179
|
};
|
|
2217
2180
|
},
|
|
2218
|
-
createRow: (row,
|
|
2181
|
+
createRow: (row, table) => {
|
|
2219
2182
|
return {
|
|
2220
2183
|
toggleSelected: value => {
|
|
2221
2184
|
const isSelected = row.getIsSelected();
|
|
2222
|
-
|
|
2185
|
+
table.setRowSelection(old => {
|
|
2223
2186
|
value = typeof value !== 'undefined' ? value : !isSelected;
|
|
2224
2187
|
|
|
2225
2188
|
if (isSelected === value) {
|
|
@@ -2228,48 +2191,54 @@
|
|
|
2228
2191
|
|
|
2229
2192
|
const selectedRowIds = { ...old
|
|
2230
2193
|
};
|
|
2231
|
-
mutateRowIsSelected(selectedRowIds, row.id, value,
|
|
2194
|
+
mutateRowIsSelected(selectedRowIds, row.id, value, table);
|
|
2232
2195
|
return selectedRowIds;
|
|
2233
2196
|
});
|
|
2234
2197
|
},
|
|
2235
2198
|
getIsSelected: () => {
|
|
2236
2199
|
const {
|
|
2237
2200
|
rowSelection
|
|
2238
|
-
} =
|
|
2239
|
-
return isRowSelected(row, rowSelection)
|
|
2201
|
+
} = table.getState();
|
|
2202
|
+
return isRowSelected(row, rowSelection);
|
|
2240
2203
|
},
|
|
2241
2204
|
getIsSomeSelected: () => {
|
|
2242
2205
|
const {
|
|
2243
2206
|
rowSelection
|
|
2244
|
-
} =
|
|
2245
|
-
return
|
|
2207
|
+
} = table.getState();
|
|
2208
|
+
return isSubRowSelected(row, rowSelection) === 'some';
|
|
2209
|
+
},
|
|
2210
|
+
getIsAllSubRowsSelected: () => {
|
|
2211
|
+
const {
|
|
2212
|
+
rowSelection
|
|
2213
|
+
} = table.getState();
|
|
2214
|
+
return isSubRowSelected(row, rowSelection) === 'all';
|
|
2246
2215
|
},
|
|
2247
2216
|
getCanSelect: () => {
|
|
2248
|
-
var
|
|
2217
|
+
var _table$options$enable;
|
|
2249
2218
|
|
|
2250
|
-
if (typeof
|
|
2251
|
-
return
|
|
2219
|
+
if (typeof table.options.enableRowSelection === 'function') {
|
|
2220
|
+
return table.options.enableRowSelection(row);
|
|
2252
2221
|
}
|
|
2253
2222
|
|
|
2254
|
-
return (
|
|
2223
|
+
return (_table$options$enable = table.options.enableRowSelection) != null ? _table$options$enable : true;
|
|
2255
2224
|
},
|
|
2256
2225
|
getCanSelectSubRows: () => {
|
|
2257
|
-
var
|
|
2226
|
+
var _table$options$enable2;
|
|
2258
2227
|
|
|
2259
|
-
if (typeof
|
|
2260
|
-
return
|
|
2228
|
+
if (typeof table.options.enableSubRowSelection === 'function') {
|
|
2229
|
+
return table.options.enableSubRowSelection(row);
|
|
2261
2230
|
}
|
|
2262
2231
|
|
|
2263
|
-
return (
|
|
2232
|
+
return (_table$options$enable2 = table.options.enableSubRowSelection) != null ? _table$options$enable2 : true;
|
|
2264
2233
|
},
|
|
2265
2234
|
getCanMultiSelect: () => {
|
|
2266
|
-
var
|
|
2235
|
+
var _table$options$enable3;
|
|
2267
2236
|
|
|
2268
|
-
if (typeof
|
|
2269
|
-
return
|
|
2237
|
+
if (typeof table.options.enableMultiRowSelection === 'function') {
|
|
2238
|
+
return table.options.enableMultiRowSelection(row);
|
|
2270
2239
|
}
|
|
2271
2240
|
|
|
2272
|
-
return (
|
|
2241
|
+
return (_table$options$enable3 = table.options.enableMultiRowSelection) != null ? _table$options$enable3 : true;
|
|
2273
2242
|
},
|
|
2274
2243
|
getToggleSelectedHandler: () => {
|
|
2275
2244
|
const canSelect = row.getCanSelect();
|
|
@@ -2284,16 +2253,20 @@
|
|
|
2284
2253
|
}
|
|
2285
2254
|
};
|
|
2286
2255
|
|
|
2287
|
-
const mutateRowIsSelected = (selectedRowIds, id, value,
|
|
2256
|
+
const mutateRowIsSelected = (selectedRowIds, id, value, table) => {
|
|
2288
2257
|
var _row$subRows;
|
|
2289
2258
|
|
|
2290
|
-
const row =
|
|
2259
|
+
const row = table.getRow(id);
|
|
2291
2260
|
row.getIsGrouped(); // if ( // TODO: enforce grouping row selection rules
|
|
2292
2261
|
// !isGrouped ||
|
|
2293
|
-
// (isGrouped &&
|
|
2262
|
+
// (isGrouped && table.options.enableGroupingRowSelection)
|
|
2294
2263
|
// ) {
|
|
2295
2264
|
|
|
2296
2265
|
if (value) {
|
|
2266
|
+
if (!row.getCanMultiSelect()) {
|
|
2267
|
+
Object.keys(selectedRowIds).forEach(key => delete selectedRowIds[key]);
|
|
2268
|
+
}
|
|
2269
|
+
|
|
2297
2270
|
selectedRowIds[id] = true;
|
|
2298
2271
|
} else {
|
|
2299
2272
|
delete selectedRowIds[id];
|
|
@@ -2301,12 +2274,12 @@
|
|
|
2301
2274
|
|
|
2302
2275
|
|
|
2303
2276
|
if ((_row$subRows = row.subRows) != null && _row$subRows.length && row.getCanSelectSubRows()) {
|
|
2304
|
-
row.subRows.forEach(row => mutateRowIsSelected(selectedRowIds, row.id, value,
|
|
2277
|
+
row.subRows.forEach(row => mutateRowIsSelected(selectedRowIds, row.id, value, table));
|
|
2305
2278
|
}
|
|
2306
2279
|
};
|
|
2307
2280
|
|
|
2308
|
-
function selectRowsFn(
|
|
2309
|
-
const rowSelection =
|
|
2281
|
+
function selectRowsFn(table, rowModel) {
|
|
2282
|
+
const rowSelection = table.getState().rowSelection;
|
|
2310
2283
|
const newSelectedFlatRows = [];
|
|
2311
2284
|
const newSelectedRowsById = {}; // Filters top level and nested rows
|
|
2312
2285
|
|
|
@@ -2315,7 +2288,7 @@
|
|
|
2315
2288
|
return rows.map(row => {
|
|
2316
2289
|
var _row$subRows2;
|
|
2317
2290
|
|
|
2318
|
-
const isSelected = isRowSelected(row, rowSelection)
|
|
2291
|
+
const isSelected = isRowSelected(row, rowSelection);
|
|
2319
2292
|
|
|
2320
2293
|
if (isSelected) {
|
|
2321
2294
|
newSelectedFlatRows.push(row);
|
|
@@ -2340,11 +2313,12 @@
|
|
|
2340
2313
|
rowsById: newSelectedRowsById
|
|
2341
2314
|
};
|
|
2342
2315
|
}
|
|
2343
|
-
function isRowSelected(row, selection
|
|
2344
|
-
|
|
2345
|
-
return true;
|
|
2346
|
-
}
|
|
2316
|
+
function isRowSelected(row, selection) {
|
|
2317
|
+
var _selection$row$id;
|
|
2347
2318
|
|
|
2319
|
+
return (_selection$row$id = selection[row.id]) != null ? _selection$row$id : false;
|
|
2320
|
+
}
|
|
2321
|
+
function isSubRowSelected(row, selection, table) {
|
|
2348
2322
|
if (row.subRows && row.subRows.length) {
|
|
2349
2323
|
let allChildrenSelected = true;
|
|
2350
2324
|
let someSelected = false;
|
|
@@ -2360,7 +2334,7 @@
|
|
|
2360
2334
|
allChildrenSelected = false;
|
|
2361
2335
|
}
|
|
2362
2336
|
});
|
|
2363
|
-
return allChildrenSelected ?
|
|
2337
|
+
return allChildrenSelected ? 'all' : someSelected ? 'some' : false;
|
|
2364
2338
|
}
|
|
2365
2339
|
|
|
2366
2340
|
return false;
|
|
@@ -2486,18 +2460,18 @@
|
|
|
2486
2460
|
sortingFn: 'auto'
|
|
2487
2461
|
};
|
|
2488
2462
|
},
|
|
2489
|
-
getDefaultOptions:
|
|
2463
|
+
getDefaultOptions: table => {
|
|
2490
2464
|
return {
|
|
2491
|
-
onSortingChange: makeStateUpdater('sorting',
|
|
2465
|
+
onSortingChange: makeStateUpdater('sorting', table),
|
|
2492
2466
|
isMultiSortEvent: e => {
|
|
2493
2467
|
return e.shiftKey;
|
|
2494
2468
|
}
|
|
2495
2469
|
};
|
|
2496
2470
|
},
|
|
2497
|
-
createColumn: (column,
|
|
2471
|
+
createColumn: (column, table) => {
|
|
2498
2472
|
return {
|
|
2499
2473
|
getAutoSortingFn: () => {
|
|
2500
|
-
const firstRows =
|
|
2474
|
+
const firstRows = table.getFilteredRowModel().flatRows.slice(10);
|
|
2501
2475
|
let isString = false;
|
|
2502
2476
|
|
|
2503
2477
|
for (const row of firstRows) {
|
|
@@ -2523,7 +2497,7 @@
|
|
|
2523
2497
|
return sortingFns.basic;
|
|
2524
2498
|
},
|
|
2525
2499
|
getAutoSortDir: () => {
|
|
2526
|
-
const firstRow =
|
|
2500
|
+
const firstRow = table.getFilteredRowModel().flatRows[0];
|
|
2527
2501
|
const value = firstRow == null ? void 0 : firstRow.getValue(column.id);
|
|
2528
2502
|
|
|
2529
2503
|
if (typeof value === 'string') {
|
|
@@ -2533,29 +2507,25 @@
|
|
|
2533
2507
|
return 'desc';
|
|
2534
2508
|
},
|
|
2535
2509
|
getSortingFn: () => {
|
|
2536
|
-
var _ref;
|
|
2537
|
-
|
|
2538
|
-
const userSortingFn = instance.options.sortingFns;
|
|
2539
|
-
|
|
2540
2510
|
if (!column) {
|
|
2541
2511
|
throw new Error();
|
|
2542
2512
|
}
|
|
2543
2513
|
|
|
2544
|
-
return isFunction(column.columnDef.sortingFn) ? column.columnDef.sortingFn : column.columnDef.sortingFn === 'auto' ? column.getAutoSortingFn() :
|
|
2514
|
+
return isFunction(column.columnDef.sortingFn) ? column.columnDef.sortingFn : column.columnDef.sortingFn === 'auto' ? column.getAutoSortingFn() : sortingFns[column.columnDef.sortingFn];
|
|
2545
2515
|
},
|
|
2546
2516
|
toggleSorting: (desc, multi) => {
|
|
2547
2517
|
// if (column.columns.length) {
|
|
2548
2518
|
// column.columns.forEach((c, i) => {
|
|
2549
2519
|
// if (c.id) {
|
|
2550
|
-
//
|
|
2520
|
+
// table.toggleColumnSorting(c.id, undefined, multi || !!i)
|
|
2551
2521
|
// }
|
|
2552
2522
|
// })
|
|
2553
2523
|
// return
|
|
2554
2524
|
// }
|
|
2555
|
-
// this needs to be outside of
|
|
2525
|
+
// this needs to be outside of table.setSorting to be in sync with rerender
|
|
2556
2526
|
const nextSortingOrder = column.getNextSortingOrder();
|
|
2557
|
-
|
|
2558
|
-
var
|
|
2527
|
+
table.setSorting(old => {
|
|
2528
|
+
var _table$options$enable, _table$options$enable2;
|
|
2559
2529
|
|
|
2560
2530
|
// Find any existing sorting for this column
|
|
2561
2531
|
const existingSorting = old == null ? void 0 : old.find(d => d.id === column.id);
|
|
@@ -2584,9 +2554,9 @@
|
|
|
2584
2554
|
|
|
2585
2555
|
|
|
2586
2556
|
if (sortAction === 'toggle' && ( // Must be toggling
|
|
2587
|
-
(
|
|
2557
|
+
(_table$options$enable = table.options.enableSortingRemoval) != null ? _table$options$enable : true) && // If enableSortRemove, enable in general
|
|
2588
2558
|
!hasDescDefined && ( // Must not be setting desc
|
|
2589
|
-
multi ? (
|
|
2559
|
+
multi ? (_table$options$enable2 = table.options.enableMultiRemove) != null ? _table$options$enable2 : true : true) && // If multi, don't allow if enableMultiRemove
|
|
2590
2560
|
!nextSortingOrder // Finally, detect if it should indeed be removed
|
|
2591
2561
|
) {
|
|
2592
2562
|
sortAction = 'remove';
|
|
@@ -2598,14 +2568,14 @@
|
|
|
2598
2568
|
desc: hasDescDefined ? desc : nextSortingOrder === 'desc'
|
|
2599
2569
|
}];
|
|
2600
2570
|
} else if (sortAction === 'add' && old != null && old.length) {
|
|
2601
|
-
var
|
|
2571
|
+
var _table$options$maxMul;
|
|
2602
2572
|
|
|
2603
2573
|
newSorting = [...old, {
|
|
2604
2574
|
id: column.id,
|
|
2605
2575
|
desc: hasDescDefined ? desc : nextSortingOrder === 'desc'
|
|
2606
2576
|
}]; // Take latest n columns
|
|
2607
2577
|
|
|
2608
|
-
newSorting.splice(0, newSorting.length - ((
|
|
2578
|
+
newSorting.splice(0, newSorting.length - ((_table$options$maxMul = table.options.maxMultiSortColCount) != null ? _table$options$maxMul : Number.MAX_SAFE_INTEGER));
|
|
2609
2579
|
} else if (sortAction === 'toggle' && old != null && old.length) {
|
|
2610
2580
|
// This flips (or sets) the
|
|
2611
2581
|
newSorting = old.map(d => {
|
|
@@ -2625,9 +2595,9 @@
|
|
|
2625
2595
|
});
|
|
2626
2596
|
},
|
|
2627
2597
|
getNextSortingOrder: () => {
|
|
2628
|
-
var
|
|
2598
|
+
var _ref, _column$columnDef$sor;
|
|
2629
2599
|
|
|
2630
|
-
const sortDescFirst = (
|
|
2600
|
+
const sortDescFirst = (_ref = (_column$columnDef$sor = column.columnDef.sortDescFirst) != null ? _column$columnDef$sor : table.options.sortDescFirst) != null ? _ref : column.getAutoSortDir() === 'desc';
|
|
2631
2601
|
const firstSortDirection = sortDescFirst ? 'desc' : 'asc';
|
|
2632
2602
|
const isSorted = column.getIsSorted();
|
|
2633
2603
|
|
|
@@ -2642,59 +2612,59 @@
|
|
|
2642
2612
|
}
|
|
2643
2613
|
},
|
|
2644
2614
|
getCanSort: () => {
|
|
2645
|
-
var _column$columnDef$ena,
|
|
2615
|
+
var _column$columnDef$ena, _table$options$enable3;
|
|
2646
2616
|
|
|
2647
|
-
return ((_column$columnDef$ena = column.columnDef.enableSorting) != null ? _column$columnDef$ena : true) && ((
|
|
2617
|
+
return ((_column$columnDef$ena = column.columnDef.enableSorting) != null ? _column$columnDef$ena : true) && ((_table$options$enable3 = table.options.enableSorting) != null ? _table$options$enable3 : true) && !!column.accessorFn;
|
|
2648
2618
|
},
|
|
2649
2619
|
getCanMultiSort: () => {
|
|
2650
|
-
var
|
|
2620
|
+
var _ref2, _column$columnDef$ena2;
|
|
2651
2621
|
|
|
2652
|
-
return (
|
|
2622
|
+
return (_ref2 = (_column$columnDef$ena2 = column.columnDef.enableMultiSort) != null ? _column$columnDef$ena2 : table.options.enableMultiSort) != null ? _ref2 : !!column.accessorFn;
|
|
2653
2623
|
},
|
|
2654
2624
|
getIsSorted: () => {
|
|
2655
|
-
var
|
|
2625
|
+
var _table$getState$sorti;
|
|
2656
2626
|
|
|
2657
|
-
const columnSort = (
|
|
2627
|
+
const columnSort = (_table$getState$sorti = table.getState().sorting) == null ? void 0 : _table$getState$sorti.find(d => d.id === column.id);
|
|
2658
2628
|
return !columnSort ? false : columnSort.desc ? 'desc' : 'asc';
|
|
2659
2629
|
},
|
|
2660
2630
|
getSortIndex: () => {
|
|
2661
|
-
var
|
|
2631
|
+
var _table$getState$sorti2, _table$getState$sorti3;
|
|
2662
2632
|
|
|
2663
|
-
return (
|
|
2633
|
+
return (_table$getState$sorti2 = (_table$getState$sorti3 = table.getState().sorting) == null ? void 0 : _table$getState$sorti3.findIndex(d => d.id === column.id)) != null ? _table$getState$sorti2 : -1;
|
|
2664
2634
|
},
|
|
2665
2635
|
clearSorting: () => {
|
|
2666
2636
|
//clear sorting for just 1 column
|
|
2667
|
-
|
|
2637
|
+
table.setSorting(old => old != null && old.length ? old.filter(d => d.id !== column.id) : []);
|
|
2668
2638
|
},
|
|
2669
2639
|
getToggleSortingHandler: () => {
|
|
2670
2640
|
const canSort = column.getCanSort();
|
|
2671
2641
|
return e => {
|
|
2672
2642
|
if (!canSort) return;
|
|
2673
2643
|
e.persist == null ? void 0 : e.persist();
|
|
2674
|
-
column.toggleSorting == null ? void 0 : column.toggleSorting(undefined, column.getCanMultiSort() ?
|
|
2644
|
+
column.toggleSorting == null ? void 0 : column.toggleSorting(undefined, column.getCanMultiSort() ? table.options.isMultiSortEvent == null ? void 0 : table.options.isMultiSortEvent(e) : false);
|
|
2675
2645
|
};
|
|
2676
2646
|
}
|
|
2677
2647
|
};
|
|
2678
2648
|
},
|
|
2679
|
-
|
|
2649
|
+
createTable: table => {
|
|
2680
2650
|
return {
|
|
2681
|
-
setSorting: updater =>
|
|
2651
|
+
setSorting: updater => table.options.onSortingChange == null ? void 0 : table.options.onSortingChange(updater),
|
|
2682
2652
|
resetSorting: defaultState => {
|
|
2683
|
-
var
|
|
2653
|
+
var _table$initialState$s, _table$initialState;
|
|
2684
2654
|
|
|
2685
|
-
|
|
2655
|
+
table.setSorting(defaultState ? [] : (_table$initialState$s = (_table$initialState = table.initialState) == null ? void 0 : _table$initialState.sorting) != null ? _table$initialState$s : []);
|
|
2686
2656
|
},
|
|
2687
|
-
getPreSortedRowModel: () =>
|
|
2657
|
+
getPreSortedRowModel: () => table.getGroupedRowModel(),
|
|
2688
2658
|
getSortedRowModel: () => {
|
|
2689
|
-
if (!
|
|
2690
|
-
|
|
2659
|
+
if (!table._getSortedRowModel && table.options.getSortedRowModel) {
|
|
2660
|
+
table._getSortedRowModel = table.options.getSortedRowModel(table);
|
|
2691
2661
|
}
|
|
2692
2662
|
|
|
2693
|
-
if (
|
|
2694
|
-
return
|
|
2663
|
+
if (table.options.manualSorting || !table._getSortedRowModel) {
|
|
2664
|
+
return table.getPreSortedRowModel();
|
|
2695
2665
|
}
|
|
2696
2666
|
|
|
2697
|
-
return
|
|
2667
|
+
return table._getSortedRowModel();
|
|
2698
2668
|
}
|
|
2699
2669
|
};
|
|
2700
2670
|
}
|
|
@@ -2708,29 +2678,29 @@
|
|
|
2708
2678
|
...state
|
|
2709
2679
|
};
|
|
2710
2680
|
},
|
|
2711
|
-
getDefaultOptions:
|
|
2681
|
+
getDefaultOptions: table => {
|
|
2712
2682
|
return {
|
|
2713
|
-
onColumnVisibilityChange: makeStateUpdater('columnVisibility',
|
|
2683
|
+
onColumnVisibilityChange: makeStateUpdater('columnVisibility', table)
|
|
2714
2684
|
};
|
|
2715
2685
|
},
|
|
2716
|
-
createColumn: (column,
|
|
2686
|
+
createColumn: (column, table) => {
|
|
2717
2687
|
return {
|
|
2718
2688
|
toggleVisibility: value => {
|
|
2719
2689
|
if (column.getCanHide()) {
|
|
2720
|
-
|
|
2690
|
+
table.setColumnVisibility(old => ({ ...old,
|
|
2721
2691
|
[column.id]: value != null ? value : !column.getIsVisible()
|
|
2722
2692
|
}));
|
|
2723
2693
|
}
|
|
2724
2694
|
},
|
|
2725
2695
|
getIsVisible: () => {
|
|
2726
|
-
var
|
|
2696
|
+
var _table$getState$colum, _table$getState$colum2;
|
|
2727
2697
|
|
|
2728
|
-
return (
|
|
2698
|
+
return (_table$getState$colum = (_table$getState$colum2 = table.getState().columnVisibility) == null ? void 0 : _table$getState$colum2[column.id]) != null ? _table$getState$colum : true;
|
|
2729
2699
|
},
|
|
2730
2700
|
getCanHide: () => {
|
|
2731
|
-
var _column$columnDef$ena,
|
|
2701
|
+
var _column$columnDef$ena, _table$options$enable;
|
|
2732
2702
|
|
|
2733
|
-
return ((_column$columnDef$ena = column.columnDef.enableHiding) != null ? _column$columnDef$ena : true) && ((
|
|
2703
|
+
return ((_column$columnDef$ena = column.columnDef.enableHiding) != null ? _column$columnDef$ena : true) && ((_table$options$enable = table.options.enableHiding) != null ? _table$options$enable : true);
|
|
2734
2704
|
},
|
|
2735
2705
|
getToggleVisibilityHandler: () => {
|
|
2736
2706
|
return e => {
|
|
@@ -2739,69 +2709,69 @@
|
|
|
2739
2709
|
}
|
|
2740
2710
|
};
|
|
2741
2711
|
},
|
|
2742
|
-
createRow: (row,
|
|
2712
|
+
createRow: (row, table) => {
|
|
2743
2713
|
return {
|
|
2744
|
-
_getAllVisibleCells: memo(() => [row.getAllCells(),
|
|
2714
|
+
_getAllVisibleCells: memo(() => [row.getAllCells(), table.getState().columnVisibility], cells => {
|
|
2745
2715
|
return cells.filter(cell => cell.column.getIsVisible());
|
|
2746
2716
|
}, {
|
|
2747
2717
|
key: "development" === 'production' ,
|
|
2748
2718
|
debug: () => {
|
|
2749
|
-
var
|
|
2719
|
+
var _table$options$debugA;
|
|
2750
2720
|
|
|
2751
|
-
return (
|
|
2721
|
+
return (_table$options$debugA = table.options.debugAll) != null ? _table$options$debugA : table.options.debugRows;
|
|
2752
2722
|
}
|
|
2753
2723
|
}),
|
|
2754
2724
|
getVisibleCells: memo(() => [row.getLeftVisibleCells(), row.getCenterVisibleCells(), row.getRightVisibleCells()], (left, center, right) => [...left, ...center, ...right], {
|
|
2755
2725
|
key: 'row.getVisibleCells',
|
|
2756
2726
|
debug: () => {
|
|
2757
|
-
var
|
|
2727
|
+
var _table$options$debugA2;
|
|
2758
2728
|
|
|
2759
|
-
return (
|
|
2729
|
+
return (_table$options$debugA2 = table.options.debugAll) != null ? _table$options$debugA2 : table.options.debugRows;
|
|
2760
2730
|
}
|
|
2761
2731
|
})
|
|
2762
2732
|
};
|
|
2763
2733
|
},
|
|
2764
|
-
|
|
2734
|
+
createTable: table => {
|
|
2765
2735
|
const makeVisibleColumnsMethod = (key, getColumns) => {
|
|
2766
2736
|
return memo(() => [getColumns(), getColumns().filter(d => d.getIsVisible()).map(d => d.id).join('_')], columns => {
|
|
2767
2737
|
return columns.filter(d => d.getIsVisible == null ? void 0 : d.getIsVisible());
|
|
2768
2738
|
}, {
|
|
2769
2739
|
key,
|
|
2770
2740
|
debug: () => {
|
|
2771
|
-
var
|
|
2741
|
+
var _table$options$debugA3;
|
|
2772
2742
|
|
|
2773
|
-
return (
|
|
2743
|
+
return (_table$options$debugA3 = table.options.debugAll) != null ? _table$options$debugA3 : table.options.debugColumns;
|
|
2774
2744
|
}
|
|
2775
2745
|
});
|
|
2776
2746
|
};
|
|
2777
2747
|
|
|
2778
2748
|
return {
|
|
2779
|
-
getVisibleFlatColumns: makeVisibleColumnsMethod('getVisibleFlatColumns', () =>
|
|
2780
|
-
getVisibleLeafColumns: makeVisibleColumnsMethod('getVisibleLeafColumns', () =>
|
|
2781
|
-
getLeftVisibleLeafColumns: makeVisibleColumnsMethod('getLeftVisibleLeafColumns', () =>
|
|
2782
|
-
getRightVisibleLeafColumns: makeVisibleColumnsMethod('getRightVisibleLeafColumns', () =>
|
|
2783
|
-
getCenterVisibleLeafColumns: makeVisibleColumnsMethod('getCenterVisibleLeafColumns', () =>
|
|
2784
|
-
setColumnVisibility: updater =>
|
|
2749
|
+
getVisibleFlatColumns: makeVisibleColumnsMethod('getVisibleFlatColumns', () => table.getAllFlatColumns()),
|
|
2750
|
+
getVisibleLeafColumns: makeVisibleColumnsMethod('getVisibleLeafColumns', () => table.getAllLeafColumns()),
|
|
2751
|
+
getLeftVisibleLeafColumns: makeVisibleColumnsMethod('getLeftVisibleLeafColumns', () => table.getLeftLeafColumns()),
|
|
2752
|
+
getRightVisibleLeafColumns: makeVisibleColumnsMethod('getRightVisibleLeafColumns', () => table.getRightLeafColumns()),
|
|
2753
|
+
getCenterVisibleLeafColumns: makeVisibleColumnsMethod('getCenterVisibleLeafColumns', () => table.getCenterLeafColumns()),
|
|
2754
|
+
setColumnVisibility: updater => table.options.onColumnVisibilityChange == null ? void 0 : table.options.onColumnVisibilityChange(updater),
|
|
2785
2755
|
resetColumnVisibility: defaultState => {
|
|
2786
|
-
var
|
|
2756
|
+
var _table$initialState$c;
|
|
2787
2757
|
|
|
2788
|
-
|
|
2758
|
+
table.setColumnVisibility(defaultState ? {} : (_table$initialState$c = table.initialState.columnVisibility) != null ? _table$initialState$c : {});
|
|
2789
2759
|
},
|
|
2790
2760
|
toggleAllColumnsVisible: value => {
|
|
2791
2761
|
var _value;
|
|
2792
2762
|
|
|
2793
|
-
value = (_value = value) != null ? _value : !
|
|
2794
|
-
|
|
2763
|
+
value = (_value = value) != null ? _value : !table.getIsAllColumnsVisible();
|
|
2764
|
+
table.setColumnVisibility(table.getAllLeafColumns().reduce((obj, column) => ({ ...obj,
|
|
2795
2765
|
[column.id]: !value ? !(column.getCanHide != null && column.getCanHide()) : value
|
|
2796
2766
|
}), {}));
|
|
2797
2767
|
},
|
|
2798
|
-
getIsAllColumnsVisible: () => !
|
|
2799
|
-
getIsSomeColumnsVisible: () =>
|
|
2768
|
+
getIsAllColumnsVisible: () => !table.getAllLeafColumns().some(column => !(column.getIsVisible != null && column.getIsVisible())),
|
|
2769
|
+
getIsSomeColumnsVisible: () => table.getAllLeafColumns().some(column => column.getIsVisible == null ? void 0 : column.getIsVisible()),
|
|
2800
2770
|
getToggleAllColumnsVisibilityHandler: () => {
|
|
2801
2771
|
return e => {
|
|
2802
2772
|
var _target;
|
|
2803
2773
|
|
|
2804
|
-
|
|
2774
|
+
table.toggleAllColumnsVisible((_target = e.target) == null ? void 0 : _target.checked);
|
|
2805
2775
|
};
|
|
2806
2776
|
}
|
|
2807
2777
|
};
|
|
@@ -2810,24 +2780,24 @@
|
|
|
2810
2780
|
|
|
2811
2781
|
const features = [Headers, Visibility, Ordering, Pinning, Filters, Sorting, Grouping, Expanding, Pagination, RowSelection, ColumnSizing]; //
|
|
2812
2782
|
|
|
2813
|
-
function
|
|
2783
|
+
function createTable(options) {
|
|
2814
2784
|
var _options$initialState;
|
|
2815
2785
|
|
|
2816
2786
|
if (options.debugAll || options.debugTable) {
|
|
2817
2787
|
console.info('Creating Table Instance...');
|
|
2818
2788
|
}
|
|
2819
2789
|
|
|
2820
|
-
let
|
|
2790
|
+
let table = {
|
|
2821
2791
|
_features: features
|
|
2822
2792
|
};
|
|
2823
2793
|
|
|
2824
|
-
const defaultOptions =
|
|
2825
|
-
return Object.assign(obj, feature.getDefaultOptions == null ? void 0 : feature.getDefaultOptions(
|
|
2794
|
+
const defaultOptions = table._features.reduce((obj, feature) => {
|
|
2795
|
+
return Object.assign(obj, feature.getDefaultOptions == null ? void 0 : feature.getDefaultOptions(table));
|
|
2826
2796
|
}, {});
|
|
2827
2797
|
|
|
2828
2798
|
const mergeOptions = options => {
|
|
2829
|
-
if (
|
|
2830
|
-
return
|
|
2799
|
+
if (table.options.mergeOptions) {
|
|
2800
|
+
return table.options.mergeOptions(defaultOptions, options);
|
|
2831
2801
|
}
|
|
2832
2802
|
|
|
2833
2803
|
return { ...defaultOptions,
|
|
@@ -2840,7 +2810,7 @@
|
|
|
2840
2810
|
...((_options$initialState = options.initialState) != null ? _options$initialState : {})
|
|
2841
2811
|
};
|
|
2842
2812
|
|
|
2843
|
-
|
|
2813
|
+
table._features.forEach(feature => {
|
|
2844
2814
|
var _feature$getInitialSt;
|
|
2845
2815
|
|
|
2846
2816
|
initialState = (_feature$getInitialSt = feature.getInitialState == null ? void 0 : feature.getInitialState(initialState)) != null ? _feature$getInitialSt : initialState;
|
|
@@ -2873,48 +2843,37 @@
|
|
|
2873
2843
|
}
|
|
2874
2844
|
},
|
|
2875
2845
|
reset: () => {
|
|
2876
|
-
|
|
2846
|
+
table.setState(table.initialState);
|
|
2877
2847
|
},
|
|
2878
2848
|
setOptions: updater => {
|
|
2879
|
-
const newOptions = functionalUpdate(updater,
|
|
2880
|
-
|
|
2881
|
-
},
|
|
2882
|
-
_render: (template, props) => {
|
|
2883
|
-
if (typeof instance.options.render === 'function') {
|
|
2884
|
-
return instance.options.render(template, props);
|
|
2885
|
-
}
|
|
2886
|
-
|
|
2887
|
-
if (typeof template === 'function') {
|
|
2888
|
-
return template(props);
|
|
2889
|
-
}
|
|
2890
|
-
|
|
2891
|
-
return template;
|
|
2849
|
+
const newOptions = functionalUpdate(updater, table.options);
|
|
2850
|
+
table.options = mergeOptions(newOptions);
|
|
2892
2851
|
},
|
|
2893
2852
|
getState: () => {
|
|
2894
|
-
return
|
|
2853
|
+
return table.options.state;
|
|
2895
2854
|
},
|
|
2896
2855
|
setState: updater => {
|
|
2897
|
-
|
|
2856
|
+
table.options.onStateChange == null ? void 0 : table.options.onStateChange(updater);
|
|
2898
2857
|
},
|
|
2899
2858
|
_getRowId: (row, index, parent) => {
|
|
2900
|
-
var
|
|
2859
|
+
var _table$options$getRow;
|
|
2901
2860
|
|
|
2902
|
-
return (
|
|
2861
|
+
return (_table$options$getRow = table.options.getRowId == null ? void 0 : table.options.getRowId(row, index, parent)) != null ? _table$options$getRow : "" + (parent ? [parent.id, index].join('.') : index);
|
|
2903
2862
|
},
|
|
2904
2863
|
getCoreRowModel: () => {
|
|
2905
|
-
if (!
|
|
2906
|
-
|
|
2864
|
+
if (!table._getCoreRowModel) {
|
|
2865
|
+
table._getCoreRowModel = table.options.getCoreRowModel(table);
|
|
2907
2866
|
}
|
|
2908
2867
|
|
|
2909
|
-
return
|
|
2868
|
+
return table._getCoreRowModel();
|
|
2910
2869
|
},
|
|
2911
2870
|
// The final calls start at the bottom of the model,
|
|
2912
2871
|
// expanded rows, which then work their way up
|
|
2913
2872
|
getRowModel: () => {
|
|
2914
|
-
return
|
|
2873
|
+
return table.getPaginationRowModel();
|
|
2915
2874
|
},
|
|
2916
2875
|
getRow: id => {
|
|
2917
|
-
const row =
|
|
2876
|
+
const row = table.getRowModel().rowsById[id];
|
|
2918
2877
|
|
|
2919
2878
|
if (!row) {
|
|
2920
2879
|
{
|
|
@@ -2924,7 +2883,7 @@
|
|
|
2924
2883
|
|
|
2925
2884
|
return row;
|
|
2926
2885
|
},
|
|
2927
|
-
_getDefaultColumnDef: memo(() => [
|
|
2886
|
+
_getDefaultColumnDef: memo(() => [table.options.defaultColumn], defaultColumn => {
|
|
2928
2887
|
var _defaultColumn;
|
|
2929
2888
|
|
|
2930
2889
|
defaultColumn = (_defaultColumn = defaultColumn) != null ? _defaultColumn : {};
|
|
@@ -2932,32 +2891,32 @@
|
|
|
2932
2891
|
header: props => props.header.column.id,
|
|
2933
2892
|
footer: props => props.header.column.id,
|
|
2934
2893
|
cell: props => {
|
|
2935
|
-
var
|
|
2894
|
+
var _toString, _props$renderValue;
|
|
2936
2895
|
|
|
2937
|
-
return (
|
|
2896
|
+
return (_toString = (_props$renderValue = props.renderValue()) == null ? void 0 : _props$renderValue.toString == null ? void 0 : _props$renderValue.toString()) != null ? _toString : null;
|
|
2938
2897
|
},
|
|
2939
|
-
...
|
|
2898
|
+
...table._features.reduce((obj, feature) => {
|
|
2940
2899
|
return Object.assign(obj, feature.getDefaultColumnDef == null ? void 0 : feature.getDefaultColumnDef());
|
|
2941
2900
|
}, {}),
|
|
2942
2901
|
...defaultColumn
|
|
2943
2902
|
};
|
|
2944
2903
|
}, {
|
|
2945
2904
|
debug: () => {
|
|
2946
|
-
var
|
|
2905
|
+
var _table$options$debugA;
|
|
2947
2906
|
|
|
2948
|
-
return (
|
|
2907
|
+
return (_table$options$debugA = table.options.debugAll) != null ? _table$options$debugA : table.options.debugColumns;
|
|
2949
2908
|
},
|
|
2950
2909
|
key: 'getDefaultColumnDef'
|
|
2951
2910
|
}),
|
|
2952
|
-
_getColumnDefs: () =>
|
|
2953
|
-
getAllColumns: memo(() => [
|
|
2911
|
+
_getColumnDefs: () => table.options.columns,
|
|
2912
|
+
getAllColumns: memo(() => [table._getColumnDefs()], columnDefs => {
|
|
2954
2913
|
const recurseColumns = function (columnDefs, parent, depth) {
|
|
2955
2914
|
if (depth === void 0) {
|
|
2956
2915
|
depth = 0;
|
|
2957
2916
|
}
|
|
2958
2917
|
|
|
2959
2918
|
return columnDefs.map(columnDef => {
|
|
2960
|
-
const column = createColumn(
|
|
2919
|
+
const column = createColumn(table, columnDef, depth, parent);
|
|
2961
2920
|
column.columns = columnDef.columns ? recurseColumns(columnDef.columns, column, depth + 1) : [];
|
|
2962
2921
|
return column;
|
|
2963
2922
|
});
|
|
@@ -2967,24 +2926,24 @@
|
|
|
2967
2926
|
}, {
|
|
2968
2927
|
key: 'getAllColumns',
|
|
2969
2928
|
debug: () => {
|
|
2970
|
-
var
|
|
2929
|
+
var _table$options$debugA2;
|
|
2971
2930
|
|
|
2972
|
-
return (
|
|
2931
|
+
return (_table$options$debugA2 = table.options.debugAll) != null ? _table$options$debugA2 : table.options.debugColumns;
|
|
2973
2932
|
}
|
|
2974
2933
|
}),
|
|
2975
|
-
getAllFlatColumns: memo(() => [
|
|
2934
|
+
getAllFlatColumns: memo(() => [table.getAllColumns()], allColumns => {
|
|
2976
2935
|
return allColumns.flatMap(column => {
|
|
2977
2936
|
return column.getFlatColumns();
|
|
2978
2937
|
});
|
|
2979
2938
|
}, {
|
|
2980
2939
|
key: 'getAllFlatColumns',
|
|
2981
2940
|
debug: () => {
|
|
2982
|
-
var
|
|
2941
|
+
var _table$options$debugA3;
|
|
2983
2942
|
|
|
2984
|
-
return (
|
|
2943
|
+
return (_table$options$debugA3 = table.options.debugAll) != null ? _table$options$debugA3 : table.options.debugColumns;
|
|
2985
2944
|
}
|
|
2986
2945
|
}),
|
|
2987
|
-
_getAllFlatColumnsById: memo(() => [
|
|
2946
|
+
_getAllFlatColumnsById: memo(() => [table.getAllFlatColumns()], flatColumns => {
|
|
2988
2947
|
return flatColumns.reduce((acc, column) => {
|
|
2989
2948
|
acc[column.id] = column;
|
|
2990
2949
|
return acc;
|
|
@@ -2992,24 +2951,24 @@
|
|
|
2992
2951
|
}, {
|
|
2993
2952
|
key: 'getAllFlatColumnsById',
|
|
2994
2953
|
debug: () => {
|
|
2995
|
-
var
|
|
2954
|
+
var _table$options$debugA4;
|
|
2996
2955
|
|
|
2997
|
-
return (
|
|
2956
|
+
return (_table$options$debugA4 = table.options.debugAll) != null ? _table$options$debugA4 : table.options.debugColumns;
|
|
2998
2957
|
}
|
|
2999
2958
|
}),
|
|
3000
|
-
getAllLeafColumns: memo(() => [
|
|
2959
|
+
getAllLeafColumns: memo(() => [table.getAllColumns(), table._getOrderColumnsFn()], (allColumns, orderColumns) => {
|
|
3001
2960
|
let leafColumns = allColumns.flatMap(column => column.getLeafColumns());
|
|
3002
2961
|
return orderColumns(leafColumns);
|
|
3003
2962
|
}, {
|
|
3004
2963
|
key: 'getAllLeafColumns',
|
|
3005
2964
|
debug: () => {
|
|
3006
|
-
var
|
|
2965
|
+
var _table$options$debugA5;
|
|
3007
2966
|
|
|
3008
|
-
return (
|
|
2967
|
+
return (_table$options$debugA5 = table.options.debugAll) != null ? _table$options$debugA5 : table.options.debugColumns;
|
|
3009
2968
|
}
|
|
3010
2969
|
}),
|
|
3011
2970
|
getColumn: columnId => {
|
|
3012
|
-
const column =
|
|
2971
|
+
const column = table._getAllFlatColumnsById()[columnId];
|
|
3013
2972
|
|
|
3014
2973
|
if (!column) {
|
|
3015
2974
|
{
|
|
@@ -3022,76 +2981,20 @@
|
|
|
3022
2981
|
return column;
|
|
3023
2982
|
}
|
|
3024
2983
|
};
|
|
3025
|
-
Object.assign(
|
|
2984
|
+
Object.assign(table, coreInstance);
|
|
3026
2985
|
|
|
3027
|
-
|
|
3028
|
-
return Object.assign(
|
|
2986
|
+
table._features.forEach(feature => {
|
|
2987
|
+
return Object.assign(table, feature.createTable == null ? void 0 : feature.createTable(table));
|
|
3029
2988
|
});
|
|
3030
2989
|
|
|
3031
|
-
return instance;
|
|
3032
|
-
}
|
|
3033
|
-
|
|
3034
|
-
//
|
|
3035
|
-
function createTableFactory(opts) {
|
|
3036
|
-
return () => createTable$1(undefined, undefined, opts);
|
|
3037
|
-
} // A lot of returns in here are `as any` for a reason. Unless you
|
|
3038
|
-
// can find a better way to do this, then don't worry about them
|
|
3039
|
-
|
|
3040
|
-
function createTable$1(_, __, options) {
|
|
3041
|
-
const table = {
|
|
3042
|
-
generics: undefined,
|
|
3043
|
-
options: options != null ? options : {
|
|
3044
|
-
render: (() => {
|
|
3045
|
-
throw new Error('');
|
|
3046
|
-
})()
|
|
3047
|
-
},
|
|
3048
|
-
// setGenerics: () => table as any,
|
|
3049
|
-
setRowType: () => table,
|
|
3050
|
-
setTableMetaType: () => table,
|
|
3051
|
-
setColumnMetaType: () => table,
|
|
3052
|
-
setFilterMetaType: () => table,
|
|
3053
|
-
setOptions: newOptions => createTable$1(_, __, { ...options,
|
|
3054
|
-
...newOptions
|
|
3055
|
-
}),
|
|
3056
|
-
createDisplayColumn: column => ({ ...column,
|
|
3057
|
-
columnDefType: 'display'
|
|
3058
|
-
}),
|
|
3059
|
-
createGroup: column => ({ ...column,
|
|
3060
|
-
columnDefType: 'group'
|
|
3061
|
-
}),
|
|
3062
|
-
createDataColumn: (accessor, column) => {
|
|
3063
|
-
column = { ...column,
|
|
3064
|
-
columnDefType: 'data',
|
|
3065
|
-
id: column.id
|
|
3066
|
-
};
|
|
3067
|
-
|
|
3068
|
-
if (typeof accessor === 'string') {
|
|
3069
|
-
var _column$id;
|
|
3070
|
-
|
|
3071
|
-
return { ...column,
|
|
3072
|
-
id: (_column$id = column.id) != null ? _column$id : accessor,
|
|
3073
|
-
accessorKey: accessor
|
|
3074
|
-
};
|
|
3075
|
-
}
|
|
3076
|
-
|
|
3077
|
-
if (typeof accessor === 'function') {
|
|
3078
|
-
return { ...column,
|
|
3079
|
-
accessorFn: accessor
|
|
3080
|
-
};
|
|
3081
|
-
}
|
|
3082
|
-
|
|
3083
|
-
throw new Error('Invalid accessor');
|
|
3084
|
-
},
|
|
3085
|
-
createOptions: options => options
|
|
3086
|
-
};
|
|
3087
2990
|
return table;
|
|
3088
2991
|
}
|
|
3089
2992
|
|
|
3090
|
-
function createCell(
|
|
2993
|
+
function createCell(table, row, column, columnId) {
|
|
3091
2994
|
const getRenderValue = () => {
|
|
3092
2995
|
var _cell$getValue;
|
|
3093
2996
|
|
|
3094
|
-
return (_cell$getValue = cell.getValue()) != null ? _cell$getValue :
|
|
2997
|
+
return (_cell$getValue = cell.getValue()) != null ? _cell$getValue : table.options.renderFallbackValue;
|
|
3095
2998
|
};
|
|
3096
2999
|
|
|
3097
3000
|
const cell = {
|
|
@@ -3099,25 +3002,25 @@
|
|
|
3099
3002
|
row,
|
|
3100
3003
|
column,
|
|
3101
3004
|
getValue: () => row.getValue(columnId),
|
|
3102
|
-
|
|
3103
|
-
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
|
|
3107
|
-
|
|
3108
|
-
|
|
3109
|
-
|
|
3110
|
-
}
|
|
3005
|
+
renderValue: getRenderValue,
|
|
3006
|
+
getContext: () => ({
|
|
3007
|
+
table,
|
|
3008
|
+
column,
|
|
3009
|
+
row,
|
|
3010
|
+
cell: cell,
|
|
3011
|
+
getValue: cell.getValue,
|
|
3012
|
+
renderValue: cell.renderValue
|
|
3013
|
+
})
|
|
3111
3014
|
};
|
|
3112
3015
|
|
|
3113
|
-
|
|
3114
|
-
Object.assign(cell, feature.createCell == null ? void 0 : feature.createCell(cell, column, row,
|
|
3016
|
+
table._features.forEach(feature => {
|
|
3017
|
+
Object.assign(cell, feature.createCell == null ? void 0 : feature.createCell(cell, column, row, table));
|
|
3115
3018
|
}, {});
|
|
3116
3019
|
|
|
3117
3020
|
return cell;
|
|
3118
3021
|
}
|
|
3119
3022
|
|
|
3120
|
-
const createRow = (
|
|
3023
|
+
const createRow = (table, id, original, rowIndex, depth, subRows) => {
|
|
3121
3024
|
let row = {
|
|
3122
3025
|
id,
|
|
3123
3026
|
index: rowIndex,
|
|
@@ -3129,7 +3032,7 @@
|
|
|
3129
3032
|
return row._valuesCache[columnId];
|
|
3130
3033
|
}
|
|
3131
3034
|
|
|
3132
|
-
const column =
|
|
3035
|
+
const column = table.getColumn(columnId);
|
|
3133
3036
|
|
|
3134
3037
|
if (!column.accessorFn) {
|
|
3135
3038
|
return undefined;
|
|
@@ -3138,18 +3041,23 @@
|
|
|
3138
3041
|
row._valuesCache[columnId] = column.accessorFn(row.original, rowIndex);
|
|
3139
3042
|
return row._valuesCache[columnId];
|
|
3140
3043
|
},
|
|
3044
|
+
renderValue: columnId => {
|
|
3045
|
+
var _row$getValue;
|
|
3046
|
+
|
|
3047
|
+
return (_row$getValue = row.getValue(columnId)) != null ? _row$getValue : table.options.renderFallbackValue;
|
|
3048
|
+
},
|
|
3141
3049
|
subRows: subRows != null ? subRows : [],
|
|
3142
3050
|
getLeafRows: () => flattenBy(row.subRows, d => d.subRows),
|
|
3143
|
-
getAllCells: memo(() => [
|
|
3051
|
+
getAllCells: memo(() => [table.getAllLeafColumns()], leafColumns => {
|
|
3144
3052
|
return leafColumns.map(column => {
|
|
3145
|
-
return createCell(
|
|
3053
|
+
return createCell(table, row, column, column.id);
|
|
3146
3054
|
});
|
|
3147
3055
|
}, {
|
|
3148
3056
|
key: 'row.getAllCells',
|
|
3149
3057
|
debug: () => {
|
|
3150
|
-
var
|
|
3058
|
+
var _table$options$debugA;
|
|
3151
3059
|
|
|
3152
|
-
return (
|
|
3060
|
+
return (_table$options$debugA = table.options.debugAll) != null ? _table$options$debugA : table.options.debugRows;
|
|
3153
3061
|
}
|
|
3154
3062
|
}),
|
|
3155
3063
|
_getAllCellsByColumnId: memo(() => [row.getAllCells()], allCells => {
|
|
@@ -3160,23 +3068,23 @@
|
|
|
3160
3068
|
}, {
|
|
3161
3069
|
key: "development" === 'production' ,
|
|
3162
3070
|
debug: () => {
|
|
3163
|
-
var
|
|
3071
|
+
var _table$options$debugA2;
|
|
3164
3072
|
|
|
3165
|
-
return (
|
|
3073
|
+
return (_table$options$debugA2 = table.options.debugAll) != null ? _table$options$debugA2 : table.options.debugRows;
|
|
3166
3074
|
}
|
|
3167
3075
|
})
|
|
3168
3076
|
};
|
|
3169
3077
|
|
|
3170
|
-
for (let i = 0; i <
|
|
3171
|
-
const feature =
|
|
3172
|
-
Object.assign(row, feature == null ? void 0 : feature.createRow == null ? void 0 : feature.createRow(row,
|
|
3078
|
+
for (let i = 0; i < table._features.length; i++) {
|
|
3079
|
+
const feature = table._features[i];
|
|
3080
|
+
Object.assign(row, feature == null ? void 0 : feature.createRow == null ? void 0 : feature.createRow(row, table));
|
|
3173
3081
|
}
|
|
3174
3082
|
|
|
3175
3083
|
return row;
|
|
3176
3084
|
};
|
|
3177
3085
|
|
|
3178
3086
|
function getCoreRowModel() {
|
|
3179
|
-
return
|
|
3087
|
+
return table => memo(() => [table.options.data], data => {
|
|
3180
3088
|
const rowModel = {
|
|
3181
3089
|
rows: [],
|
|
3182
3090
|
flatRows: [],
|
|
@@ -3198,18 +3106,18 @@
|
|
|
3198
3106
|
// }
|
|
3199
3107
|
// }
|
|
3200
3108
|
// Make the row
|
|
3201
|
-
const row = createRow(
|
|
3109
|
+
const row = createRow(table, table._getRowId(originalRows[i], i, parent), originalRows[i], i, depth); // Keep track of every row in a flat array
|
|
3202
3110
|
|
|
3203
3111
|
rowModel.flatRows.push(row); // Also keep track of every row by its ID
|
|
3204
3112
|
|
|
3205
|
-
rowModel.rowsById[row.id] = row; // Push
|
|
3113
|
+
rowModel.rowsById[row.id] = row; // Push table row into parent
|
|
3206
3114
|
|
|
3207
3115
|
rows.push(row); // Get the original subrows
|
|
3208
3116
|
|
|
3209
|
-
if (
|
|
3117
|
+
if (table.options.getSubRows) {
|
|
3210
3118
|
var _row$originalSubRows;
|
|
3211
3119
|
|
|
3212
|
-
row.originalSubRows =
|
|
3120
|
+
row.originalSubRows = table.options.getSubRows(originalRows[i], i); // Then recursively access them
|
|
3213
3121
|
|
|
3214
3122
|
if ((_row$originalSubRows = row.originalSubRows) != null && _row$originalSubRows.length) {
|
|
3215
3123
|
row.subRows = accessRows(row.originalSubRows, depth + 1, row);
|
|
@@ -3225,24 +3133,24 @@
|
|
|
3225
3133
|
}, {
|
|
3226
3134
|
key: 'getRowModel',
|
|
3227
3135
|
debug: () => {
|
|
3228
|
-
var
|
|
3136
|
+
var _table$options$debugA;
|
|
3229
3137
|
|
|
3230
|
-
return (
|
|
3138
|
+
return (_table$options$debugA = table.options.debugAll) != null ? _table$options$debugA : table.options.debugTable;
|
|
3231
3139
|
},
|
|
3232
3140
|
onChange: () => {
|
|
3233
|
-
|
|
3141
|
+
table._autoResetPageIndex();
|
|
3234
3142
|
}
|
|
3235
3143
|
});
|
|
3236
3144
|
}
|
|
3237
3145
|
|
|
3238
|
-
function filterRows(rows, filterRowImpl,
|
|
3239
|
-
if (
|
|
3240
|
-
return filterRowModelFromLeafs(rows, filterRowImpl,
|
|
3146
|
+
function filterRows(rows, filterRowImpl, table) {
|
|
3147
|
+
if (table.options.filterFromLeafRows) {
|
|
3148
|
+
return filterRowModelFromLeafs(rows, filterRowImpl, table);
|
|
3241
3149
|
}
|
|
3242
3150
|
|
|
3243
|
-
return filterRowModelFromRoot(rows, filterRowImpl,
|
|
3151
|
+
return filterRowModelFromRoot(rows, filterRowImpl, table);
|
|
3244
3152
|
}
|
|
3245
|
-
function filterRowModelFromLeafs(rowsToFilter, filterRow,
|
|
3153
|
+
function filterRowModelFromLeafs(rowsToFilter, filterRow, table) {
|
|
3246
3154
|
const newFilteredFlatRows = [];
|
|
3247
3155
|
const newFilteredRowsById = {};
|
|
3248
3156
|
|
|
@@ -3256,7 +3164,7 @@
|
|
|
3256
3164
|
let row = rowsToFilter[i];
|
|
3257
3165
|
|
|
3258
3166
|
if ((_row$subRows = row.subRows) != null && _row$subRows.length) {
|
|
3259
|
-
const newRow = createRow(
|
|
3167
|
+
const newRow = createRow(table, row.id, row.original, row.index, row.depth);
|
|
3260
3168
|
newRow.columnFilters = row.columnFilters;
|
|
3261
3169
|
newRow.subRows = recurseFilterRows(row.subRows);
|
|
3262
3170
|
|
|
@@ -3283,7 +3191,7 @@
|
|
|
3283
3191
|
rowsById: newFilteredRowsById
|
|
3284
3192
|
};
|
|
3285
3193
|
}
|
|
3286
|
-
function filterRowModelFromRoot(rowsToFilter, filterRow,
|
|
3194
|
+
function filterRowModelFromRoot(rowsToFilter, filterRow, table) {
|
|
3287
3195
|
const newFilteredFlatRows = [];
|
|
3288
3196
|
const newFilteredRowsById = {}; // Filters top level and nested rows
|
|
3289
3197
|
|
|
@@ -3300,7 +3208,7 @@
|
|
|
3300
3208
|
var _row$subRows2;
|
|
3301
3209
|
|
|
3302
3210
|
if ((_row$subRows2 = row.subRows) != null && _row$subRows2.length) {
|
|
3303
|
-
const newRow = createRow(
|
|
3211
|
+
const newRow = createRow(table, row.id, row.original, row.index, row.depth);
|
|
3304
3212
|
newRow.subRows = recurseFilterRows(row.subRows);
|
|
3305
3213
|
row = newRow;
|
|
3306
3214
|
}
|
|
@@ -3322,7 +3230,7 @@
|
|
|
3322
3230
|
}
|
|
3323
3231
|
|
|
3324
3232
|
function getFilteredRowModel() {
|
|
3325
|
-
return
|
|
3233
|
+
return table => memo(() => [table.getPreFilteredRowModel(), table.getState().columnFilters, table.getState().globalFilter], (rowModel, columnFilters, globalFilter) => {
|
|
3326
3234
|
if (!rowModel.rows.length || !(columnFilters != null && columnFilters.length) && !globalFilter) {
|
|
3327
3235
|
for (let i = 0; i < rowModel.flatRows.length; i++) {
|
|
3328
3236
|
rowModel.flatRows[i].columnFilters = {};
|
|
@@ -3337,7 +3245,7 @@
|
|
|
3337
3245
|
(columnFilters != null ? columnFilters : []).forEach(d => {
|
|
3338
3246
|
var _filterFn$resolveFilt;
|
|
3339
3247
|
|
|
3340
|
-
const column =
|
|
3248
|
+
const column = table.getColumn(d.id);
|
|
3341
3249
|
|
|
3342
3250
|
if (!column) {
|
|
3343
3251
|
{
|
|
@@ -3362,8 +3270,8 @@
|
|
|
3362
3270
|
});
|
|
3363
3271
|
});
|
|
3364
3272
|
const filterableIds = columnFilters.map(d => d.id);
|
|
3365
|
-
const globalFilterFn =
|
|
3366
|
-
const globallyFilterableColumns =
|
|
3273
|
+
const globalFilterFn = table.getGlobalFilterFn();
|
|
3274
|
+
const globallyFilterableColumns = table.getAllLeafColumns().filter(column => column.getCanGlobalFilter());
|
|
3367
3275
|
|
|
3368
3276
|
if (globalFilter && globalFilterFn && globallyFilterableColumns.length) {
|
|
3369
3277
|
filterableIds.push('__global__');
|
|
@@ -3427,22 +3335,22 @@
|
|
|
3427
3335
|
}; // Filter final rows using all of the active filters
|
|
3428
3336
|
|
|
3429
3337
|
|
|
3430
|
-
return filterRows(rowModel.rows, filterRowsImpl,
|
|
3338
|
+
return filterRows(rowModel.rows, filterRowsImpl, table);
|
|
3431
3339
|
}, {
|
|
3432
3340
|
key: 'getFilteredRowModel',
|
|
3433
3341
|
debug: () => {
|
|
3434
|
-
var
|
|
3342
|
+
var _table$options$debugA;
|
|
3435
3343
|
|
|
3436
|
-
return (
|
|
3344
|
+
return (_table$options$debugA = table.options.debugAll) != null ? _table$options$debugA : table.options.debugTable;
|
|
3437
3345
|
},
|
|
3438
3346
|
onChange: () => {
|
|
3439
|
-
|
|
3347
|
+
table._autoResetPageIndex();
|
|
3440
3348
|
}
|
|
3441
3349
|
});
|
|
3442
3350
|
}
|
|
3443
3351
|
|
|
3444
3352
|
function getFacetedRowModel() {
|
|
3445
|
-
return (
|
|
3353
|
+
return (table, columnId) => memo(() => [table.getPreFilteredRowModel(), table.getState().columnFilters, table.getState().globalFilter, table.getFilteredRowModel()], (preRowModel, columnFilters, globalFilter) => {
|
|
3446
3354
|
if (!preRowModel.rows.length || !(columnFilters != null && columnFilters.length) && !globalFilter) {
|
|
3447
3355
|
return preRowModel;
|
|
3448
3356
|
}
|
|
@@ -3460,20 +3368,20 @@
|
|
|
3460
3368
|
return true;
|
|
3461
3369
|
};
|
|
3462
3370
|
|
|
3463
|
-
return filterRows(preRowModel.rows, filterRowsImpl,
|
|
3371
|
+
return filterRows(preRowModel.rows, filterRowsImpl, table);
|
|
3464
3372
|
}, {
|
|
3465
3373
|
key: 'getFacetedRowModel_' + columnId,
|
|
3466
3374
|
debug: () => {
|
|
3467
|
-
var
|
|
3375
|
+
var _table$options$debugA;
|
|
3468
3376
|
|
|
3469
|
-
return (
|
|
3377
|
+
return (_table$options$debugA = table.options.debugAll) != null ? _table$options$debugA : table.options.debugTable;
|
|
3470
3378
|
},
|
|
3471
3379
|
onChange: () => {}
|
|
3472
3380
|
});
|
|
3473
3381
|
}
|
|
3474
3382
|
|
|
3475
3383
|
function getFacetedUniqueValues() {
|
|
3476
|
-
return (
|
|
3384
|
+
return (table, columnId) => memo(() => [table.getColumn(columnId).getFacetedRowModel()], facetedRowModel => {
|
|
3477
3385
|
let facetedUniqueValues = new Map();
|
|
3478
3386
|
|
|
3479
3387
|
for (let i = 0; i < facetedRowModel.flatRows.length; i++) {
|
|
@@ -3494,16 +3402,16 @@
|
|
|
3494
3402
|
}, {
|
|
3495
3403
|
key: 'getFacetedUniqueValues_' + columnId,
|
|
3496
3404
|
debug: () => {
|
|
3497
|
-
var
|
|
3405
|
+
var _table$options$debugA;
|
|
3498
3406
|
|
|
3499
|
-
return (
|
|
3407
|
+
return (_table$options$debugA = table.options.debugAll) != null ? _table$options$debugA : table.options.debugTable;
|
|
3500
3408
|
},
|
|
3501
3409
|
onChange: () => {}
|
|
3502
3410
|
});
|
|
3503
3411
|
}
|
|
3504
3412
|
|
|
3505
3413
|
function getFacetedMinMaxValues() {
|
|
3506
|
-
return (
|
|
3414
|
+
return (table, columnId) => memo(() => [table.getColumn(columnId).getFacetedRowModel()], facetedRowModel => {
|
|
3507
3415
|
var _facetedRowModel$flat;
|
|
3508
3416
|
|
|
3509
3417
|
const firstValue = (_facetedRowModel$flat = facetedRowModel.flatRows[0]) == null ? void 0 : _facetedRowModel$flat.getValue(columnId);
|
|
@@ -3530,27 +3438,27 @@
|
|
|
3530
3438
|
}, {
|
|
3531
3439
|
key: 'getFacetedMinMaxValues_' + columnId,
|
|
3532
3440
|
debug: () => {
|
|
3533
|
-
var
|
|
3441
|
+
var _table$options$debugA;
|
|
3534
3442
|
|
|
3535
|
-
return (
|
|
3443
|
+
return (_table$options$debugA = table.options.debugAll) != null ? _table$options$debugA : table.options.debugTable;
|
|
3536
3444
|
},
|
|
3537
3445
|
onChange: () => {}
|
|
3538
3446
|
});
|
|
3539
3447
|
}
|
|
3540
3448
|
|
|
3541
3449
|
function getSortedRowModel() {
|
|
3542
|
-
return
|
|
3450
|
+
return table => memo(() => [table.getState().sorting, table.getPreSortedRowModel()], (sorting, rowModel) => {
|
|
3543
3451
|
if (!rowModel.rows.length || !(sorting != null && sorting.length)) {
|
|
3544
3452
|
return rowModel;
|
|
3545
3453
|
}
|
|
3546
3454
|
|
|
3547
|
-
const sortingState =
|
|
3455
|
+
const sortingState = table.getState().sorting;
|
|
3548
3456
|
const sortedFlatRows = []; // Filter out sortings that correspond to non existing columns
|
|
3549
3457
|
|
|
3550
|
-
const availableSorting = sortingState.filter(sort =>
|
|
3458
|
+
const availableSorting = sortingState.filter(sort => table.getColumn(sort.id).getCanSort());
|
|
3551
3459
|
const columnInfoById = {};
|
|
3552
3460
|
availableSorting.forEach(sortEntry => {
|
|
3553
|
-
const column =
|
|
3461
|
+
const column = table.getColumn(sortEntry.id);
|
|
3554
3462
|
columnInfoById[sortEntry.id] = {
|
|
3555
3463
|
sortUndefined: column.columnDef.sortUndefined,
|
|
3556
3464
|
invertSorting: column.columnDef.invertSorting,
|
|
@@ -3620,24 +3528,24 @@
|
|
|
3620
3528
|
}, {
|
|
3621
3529
|
key: 'getSortedRowModel',
|
|
3622
3530
|
debug: () => {
|
|
3623
|
-
var
|
|
3531
|
+
var _table$options$debugA;
|
|
3624
3532
|
|
|
3625
|
-
return (
|
|
3533
|
+
return (_table$options$debugA = table.options.debugAll) != null ? _table$options$debugA : table.options.debugTable;
|
|
3626
3534
|
},
|
|
3627
3535
|
onChange: () => {
|
|
3628
|
-
|
|
3536
|
+
table._autoResetPageIndex();
|
|
3629
3537
|
}
|
|
3630
3538
|
});
|
|
3631
3539
|
}
|
|
3632
3540
|
|
|
3633
3541
|
function getGroupedRowModel() {
|
|
3634
|
-
return
|
|
3542
|
+
return table => memo(() => [table.getState().grouping, table.getPreGroupedRowModel()], (grouping, rowModel) => {
|
|
3635
3543
|
if (!rowModel.rows.length || !grouping.length) {
|
|
3636
3544
|
return rowModel;
|
|
3637
3545
|
} // Filter the grouping list down to columns that exist
|
|
3638
3546
|
|
|
3639
3547
|
|
|
3640
|
-
const existingGrouping = grouping.filter(columnId =>
|
|
3548
|
+
const existingGrouping = grouping.filter(columnId => table.getColumn(columnId));
|
|
3641
3549
|
const groupedFlatRows = [];
|
|
3642
3550
|
const groupedRowsById = {}; // const onlyGroupedFlatRows: Row[] = [];
|
|
3643
3551
|
// const onlyGroupedRowsById: Record<RowId, Row> = {};
|
|
@@ -3667,7 +3575,7 @@
|
|
|
3667
3575
|
const subRows = groupUpRecursively(groupedRows, depth + 1, id); // Flatten the leaf rows of the rows in this group
|
|
3668
3576
|
|
|
3669
3577
|
const leafRows = depth ? flattenBy(groupedRows, row => row.subRows) : groupedRows;
|
|
3670
|
-
const row = createRow(
|
|
3578
|
+
const row = createRow(table, id, undefined, index, depth);
|
|
3671
3579
|
Object.assign(row, {
|
|
3672
3580
|
groupingColumnId: columnId,
|
|
3673
3581
|
groupingValue,
|
|
@@ -3694,7 +3602,7 @@
|
|
|
3694
3602
|
} // Aggregate the values
|
|
3695
3603
|
|
|
3696
3604
|
|
|
3697
|
-
const column =
|
|
3605
|
+
const column = table.getColumn(columnId);
|
|
3698
3606
|
const aggregateFn = column.getAggregationFn();
|
|
3699
3607
|
|
|
3700
3608
|
if (aggregateFn) {
|
|
@@ -3737,15 +3645,15 @@
|
|
|
3737
3645
|
}, {
|
|
3738
3646
|
key: 'getGroupedRowModel',
|
|
3739
3647
|
debug: () => {
|
|
3740
|
-
var
|
|
3648
|
+
var _table$options$debugA;
|
|
3741
3649
|
|
|
3742
|
-
return (
|
|
3650
|
+
return (_table$options$debugA = table.options.debugAll) != null ? _table$options$debugA : table.options.debugTable;
|
|
3743
3651
|
},
|
|
3744
3652
|
onChange: () => {
|
|
3745
|
-
|
|
3746
|
-
|
|
3653
|
+
table._queue(() => {
|
|
3654
|
+
table._autoResetExpanded();
|
|
3747
3655
|
|
|
3748
|
-
|
|
3656
|
+
table._autoResetPageIndex();
|
|
3749
3657
|
});
|
|
3750
3658
|
}
|
|
3751
3659
|
});
|
|
@@ -3768,7 +3676,7 @@
|
|
|
3768
3676
|
}
|
|
3769
3677
|
|
|
3770
3678
|
function getExpandedRowModel() {
|
|
3771
|
-
return
|
|
3679
|
+
return table => memo(() => [table.getState().expanded, table.getPreExpandedRowModel(), table.options.paginateExpandedRows], (expanded, rowModel, paginateExpandedRows) => {
|
|
3772
3680
|
if (!rowModel.rows.length || // Do not expand if rows are not included in pagination
|
|
3773
3681
|
!paginateExpandedRows || expanded !== true && !Object.keys(expanded != null ? expanded : {}).length) {
|
|
3774
3682
|
return rowModel;
|
|
@@ -3778,13 +3686,13 @@
|
|
|
3778
3686
|
}, {
|
|
3779
3687
|
key: 'getExpandedRowModel',
|
|
3780
3688
|
debug: () => {
|
|
3781
|
-
var
|
|
3689
|
+
var _table$options$debugA;
|
|
3782
3690
|
|
|
3783
|
-
return (
|
|
3691
|
+
return (_table$options$debugA = table.options.debugAll) != null ? _table$options$debugA : table.options.debugTable;
|
|
3784
3692
|
}
|
|
3785
3693
|
});
|
|
3786
3694
|
}
|
|
3787
|
-
function expandRows(rowModel,
|
|
3695
|
+
function expandRows(rowModel, table) {
|
|
3788
3696
|
const expandedRows = [];
|
|
3789
3697
|
|
|
3790
3698
|
const handleRow = row => {
|
|
@@ -3806,7 +3714,7 @@
|
|
|
3806
3714
|
}
|
|
3807
3715
|
|
|
3808
3716
|
function getPaginationRowModel(opts) {
|
|
3809
|
-
return
|
|
3717
|
+
return table => memo(() => [table.getState().pagination, table.getPrePaginationRowModel()], (pagination, rowModel) => {
|
|
3810
3718
|
if (!rowModel.rows.length) {
|
|
3811
3719
|
return rowModel;
|
|
3812
3720
|
}
|
|
@@ -3825,7 +3733,7 @@
|
|
|
3825
3733
|
rows = rows.slice(pageStart, pageEnd);
|
|
3826
3734
|
let paginatedRowModel;
|
|
3827
3735
|
|
|
3828
|
-
if (!
|
|
3736
|
+
if (!table.options.paginateExpandedRows) {
|
|
3829
3737
|
paginatedRowModel = expandRows({
|
|
3830
3738
|
rows,
|
|
3831
3739
|
flatRows,
|
|
@@ -3854,9 +3762,9 @@
|
|
|
3854
3762
|
}, {
|
|
3855
3763
|
key: 'getPaginationRowModel',
|
|
3856
3764
|
debug: () => {
|
|
3857
|
-
var
|
|
3765
|
+
var _table$options$debugA;
|
|
3858
3766
|
|
|
3859
|
-
return (
|
|
3767
|
+
return (_table$options$debugA = table.options.debugAll) != null ? _table$options$debugA : table.options.debugTable;
|
|
3860
3768
|
}
|
|
3861
3769
|
});
|
|
3862
3770
|
}
|
|
@@ -3992,7 +3900,7 @@
|
|
|
3992
3900
|
});
|
|
3993
3901
|
}
|
|
3994
3902
|
|
|
3995
|
-
function
|
|
3903
|
+
function flexRender(component, props) {
|
|
3996
3904
|
if (!component) return null;
|
|
3997
3905
|
|
|
3998
3906
|
if (isSvelteComponent(component)) {
|
|
@@ -4011,10 +3919,7 @@
|
|
|
4011
3919
|
|
|
4012
3920
|
return wrapInPlaceholder(component);
|
|
4013
3921
|
}
|
|
4014
|
-
|
|
4015
|
-
render
|
|
4016
|
-
});
|
|
4017
|
-
function createTableInstance(table, options) {
|
|
3922
|
+
function createSvelteTable(options) {
|
|
4018
3923
|
let optionsStore;
|
|
4019
3924
|
|
|
4020
3925
|
if ('subscribe' in options) {
|
|
@@ -4023,25 +3928,24 @@
|
|
|
4023
3928
|
optionsStore = store.readable(options);
|
|
4024
3929
|
}
|
|
4025
3930
|
|
|
4026
|
-
let resolvedOptions = {
|
|
3931
|
+
let resolvedOptions = {
|
|
4027
3932
|
state: {},
|
|
4028
3933
|
// Dummy state
|
|
4029
3934
|
onStateChange: () => {},
|
|
4030
3935
|
// noop
|
|
4031
|
-
render,
|
|
4032
3936
|
renderFallbackValue: null,
|
|
4033
3937
|
...store.get(optionsStore)
|
|
4034
3938
|
};
|
|
4035
|
-
let
|
|
3939
|
+
let table = createTable(resolvedOptions);
|
|
4036
3940
|
let stateStore = store.writable(
|
|
4037
3941
|
/** @type {number} */
|
|
4038
|
-
|
|
3942
|
+
table.initialState); // combine stores
|
|
4039
3943
|
|
|
4040
3944
|
let stateOptionsStore = store.derived([stateStore, optionsStore], s => s);
|
|
4041
|
-
const
|
|
3945
|
+
const tableReadable = store.readable(table, function start(set) {
|
|
4042
3946
|
const unsubscribe = stateOptionsStore.subscribe(_ref => {
|
|
4043
3947
|
let [state, options] = _ref;
|
|
4044
|
-
|
|
3948
|
+
table.setOptions(prev => {
|
|
4045
3949
|
return { ...prev,
|
|
4046
3950
|
...options,
|
|
4047
3951
|
state: { ...state,
|
|
@@ -4059,15 +3963,15 @@
|
|
|
4059
3963
|
resolvedOptions.onStateChange == null ? void 0 : resolvedOptions.onStateChange(updater);
|
|
4060
3964
|
}
|
|
4061
3965
|
};
|
|
4062
|
-
}); // it didn't seem to rerender without setting the
|
|
3966
|
+
}); // it didn't seem to rerender without setting the table
|
|
4063
3967
|
|
|
4064
|
-
set(
|
|
3968
|
+
set(table);
|
|
4065
3969
|
});
|
|
4066
3970
|
return function stop() {
|
|
4067
3971
|
unsubscribe();
|
|
4068
3972
|
};
|
|
4069
3973
|
});
|
|
4070
|
-
return
|
|
3974
|
+
return tableReadable;
|
|
4071
3975
|
}
|
|
4072
3976
|
|
|
4073
3977
|
exports.ColumnSizing = ColumnSizing;
|
|
@@ -4085,13 +3989,13 @@
|
|
|
4085
3989
|
exports.buildHeaderGroups = buildHeaderGroups;
|
|
4086
3990
|
exports.createColumn = createColumn;
|
|
4087
3991
|
exports.createRow = createRow;
|
|
3992
|
+
exports.createSvelteTable = createSvelteTable;
|
|
4088
3993
|
exports.createTable = createTable;
|
|
4089
|
-
exports.createTableFactory = createTableFactory;
|
|
4090
|
-
exports.createTableInstance = createTableInstance;
|
|
4091
3994
|
exports.defaultColumnSizing = defaultColumnSizing;
|
|
4092
3995
|
exports.expandRows = expandRows;
|
|
4093
3996
|
exports.filterFns = filterFns;
|
|
4094
3997
|
exports.flattenBy = flattenBy;
|
|
3998
|
+
exports.flexRender = flexRender;
|
|
4095
3999
|
exports.functionalUpdate = functionalUpdate;
|
|
4096
4000
|
exports.getCoreRowModel = getCoreRowModel;
|
|
4097
4001
|
exports.getExpandedRowModel = getExpandedRowModel;
|
|
@@ -4104,13 +4008,13 @@
|
|
|
4104
4008
|
exports.getSortedRowModel = getSortedRowModel;
|
|
4105
4009
|
exports.isFunction = isFunction;
|
|
4106
4010
|
exports.isRowSelected = isRowSelected;
|
|
4011
|
+
exports.isSubRowSelected = isSubRowSelected;
|
|
4107
4012
|
exports.makeStateUpdater = makeStateUpdater;
|
|
4108
4013
|
exports.memo = memo;
|
|
4109
4014
|
exports.noop = noop;
|
|
4110
4015
|
exports.orderColumns = orderColumns;
|
|
4111
4016
|
exports.passiveEventSupported = passiveEventSupported;
|
|
4112
4017
|
exports.reSplitAlphaNumeric = reSplitAlphaNumeric;
|
|
4113
|
-
exports.render = render;
|
|
4114
4018
|
exports.renderComponent = renderComponent;
|
|
4115
4019
|
exports.selectRowsFn = selectRowsFn;
|
|
4116
4020
|
exports.shouldAutoRemoveFilter = shouldAutoRemoveFilter;
|