forked from 6pac/SlickGrid
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathslick.dataview.js
1574 lines (1376 loc) · 48 KB
/
slick.dataview.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
var $ = require("./slick.jquery");
var Slick = require("./slick.core");
/***
* A sample Model implementation.
* Provides a filtered view of the underlying data.
*
* Relies on the data item having an "id" property uniquely identifying it.
*/
function DataView(options) {
var self = this;
var defaults = {
groupItemMetadataProvider: null,
inlineFilters: false
};
// private
var idProperty = "id"; // property holding a unique row id
var items = []; // data by index
var rows = []; // data by row
var idxById = new Slick.Map(); // indexes by id
var rowsById = null; // rows by id; lazy-calculated
var filter = null; // filter function
var updated = null; // updated item ids
var suspend = false; // suspends the recalculation
var isBulkSuspend = false; // delays various operations like the
// index update and delete to efficient
// versions at endUpdate
var bulkDeleteIds = new Slick.Map();
var sortAsc = true;
var fastSortField;
var sortComparer;
var refreshHints = {};
var prevRefreshHints = {};
var filterArgs;
var filteredItems = [];
var compiledFilter;
var compiledFilterWithCaching;
var filterCache = [];
var _grid = null;
// grouping
var groupingInfoDefaults = {
getter: null,
formatter: null,
comparer: function (a, b) {
return (a.value === b.value ? 0 :
(a.value > b.value ? 1 : -1)
);
},
predefinedValues: [],
aggregators: [],
aggregateEmpty: false,
aggregateCollapsed: false,
aggregateChildGroups: false,
collapsed: false,
displayTotalsRow: true,
lazyTotalsCalculation: false
};
var groupingInfos = [];
var groups = [];
var toggledGroupsByLevel = [];
var groupingDelimiter = ':|:';
var selectedRowIds = null;
var pagesize = 0;
var pagenum = 0;
var totalRows = 0;
// events
var onSetItemsCalled = new Slick.Event();
var onRowCountChanged = new Slick.Event();
var onRowsChanged = new Slick.Event();
var onRowsOrCountChanged = new Slick.Event();
var onBeforePagingInfoChanged = new Slick.Event();
var onPagingInfoChanged = new Slick.Event();
var onGroupExpanded = new Slick.Event();
var onGroupCollapsed = new Slick.Event();
options = $.extend(true, {}, defaults, options);
/***
* Begins a bached update of the items in the data view.
* @param bulkUpdate {Boolean} if set to true, most data view modifications
* including deletes and the related events are postponed to the endUpdate call.
* As certain operations are postponed during this update, some methods might not
* deliver fully consistent information.
*/
function beginUpdate(bulkUpdate) {
suspend = true;
isBulkSuspend = bulkUpdate === true;
}
function endUpdate() {
var wasBulkSuspend = isBulkSuspend;
isBulkSuspend = false;
suspend = false;
if (wasBulkSuspend) {
processBulkDelete();
ensureIdUniqueness();
}
refresh();
}
function destroy() {
items = [];
idxById = null;
rowsById = null;
filter = null;
updated = null;
sortComparer = null;
filterCache = [];
filteredItems = [];
compiledFilter = null;
compiledFilterWithCaching = null;
if (_grid && _grid.onSelectedRowsChanged && _grid.onCellCssStylesChanged) {
_grid.onSelectedRowsChanged.unsubscribe();
_grid.onCellCssStylesChanged.unsubscribe();
}
if (self.onRowsOrCountChanged) {
self.onRowsOrCountChanged.unsubscribe();
}
}
function setRefreshHints(hints) {
refreshHints = hints;
}
function setFilterArgs(args) {
filterArgs = args;
}
/***
* Processes all delete requests placed during bulk update
* by recomputing the items and idxById members.
*/
function processBulkDelete() {
// the bulk update is processed by
// recomputing the whole items array and the index lookup in one go.
// this is done by placing the not-deleted items
// from left to right into the array and shrink the array the the new
// size afterwards.
// see https://github.com/6pac/SlickGrid/issues/571 for further details.
var id, item, newIdx = 0;
for (var i = 0, l = items.length; i < l; i++) {
item = items[i];
id = item[idProperty];
if (id === undefined) {
throw new Error("[SlickGrid DataView] Each data element must implement a unique 'id' property");
}
// if items have been marked as deleted we skip them for the new final items array
// and we remove them from the lookup table.
if(bulkDeleteIds.has(id)) {
idxById.delete(id);
} else {
// for items which are not deleted, we add them to the
// next free position in the array and register the index in the lookup.
items[newIdx] = item;
idxById.set(id, newIdx);
++newIdx;
}
}
// here we shrink down the full item array to the ones actually
// inserted in the cleanup loop above.
items.length = newIdx;
// and finally cleanup the deleted ids to start cleanly on the next update.
bulkDeleteIds = new Slick.Map();
}
function updateIdxById(startingIndex) {
if (isBulkSuspend) { // during bulk update we do not reorganize
return;
}
startingIndex = startingIndex || 0;
var id;
for (var i = startingIndex, l = items.length; i < l; i++) {
id = items[i][idProperty];
if (id === undefined) {
throw new Error("[SlickGrid DataView] Each data element must implement a unique 'id' property");
}
idxById.set(id, i);
}
}
function ensureIdUniqueness() {
if (isBulkSuspend) { // during bulk update we do not reorganize
return;
}
var id;
for (var i = 0, l = items.length; i < l; i++) {
id = items[i][idProperty];
if (id === undefined || idxById.get(id) !== i) {
throw new Error("[SlickGrid DataView] Each data element must implement a unique 'id' property");
}
}
}
function getItems() {
return items;
}
function getIdPropertyName() {
return idProperty;
}
function setItems(data, objectIdProperty) {
if (objectIdProperty !== undefined) {
idProperty = objectIdProperty;
}
items = filteredItems = data;
onSetItemsCalled.notify({ idProperty: objectIdProperty, itemCount: items.length }, null, self);
idxById = new Slick.Map();
updateIdxById();
ensureIdUniqueness();
refresh();
}
function setPagingOptions(args) {
if (onBeforePagingInfoChanged.notify(getPagingInfo(), null, self) !== false) {
if (args.pageSize != undefined) {
pagesize = args.pageSize;
pagenum = pagesize ? Math.min(pagenum, Math.max(0, Math.ceil(totalRows / pagesize) - 1)) : 0;
}
if (args.pageNum != undefined) {
pagenum = Math.min(args.pageNum, Math.max(0, Math.ceil(totalRows / pagesize) - 1));
}
onPagingInfoChanged.notify(getPagingInfo(), null, self);
refresh();
}
}
function getPagingInfo() {
var totalPages = pagesize ? Math.max(1, Math.ceil(totalRows / pagesize)) : 1;
return { pageSize: pagesize, pageNum: pagenum, totalRows: totalRows, totalPages: totalPages, dataView: self };
}
function sort(comparer, ascending) {
sortAsc = ascending;
sortComparer = comparer;
fastSortField = null;
if (ascending === false) {
items.reverse();
}
items.sort(comparer);
if (ascending === false) {
items.reverse();
}
idxById = new Slick.Map();
updateIdxById();
refresh();
}
/***
* Provides a workaround for the extremely slow sorting in IE.
* Does a [lexicographic] sort on a give column by temporarily overriding Object.prototype.toString
* to return the value of that field and then doing a native Array.sort().
*/
function fastSort(field, ascending) {
sortAsc = ascending;
fastSortField = field;
sortComparer = null;
var oldToString = Object.prototype.toString;
Object.prototype.toString = (typeof field == "function") ? field : function () {
return this[field];
};
// an extra reversal for descending sort keeps the sort stable
// (assuming a stable native sort implementation, which isn't true in some cases)
if (ascending === false) {
items.reverse();
}
items.sort();
Object.prototype.toString = oldToString;
if (ascending === false) {
items.reverse();
}
idxById = new Slick.Map();
updateIdxById();
refresh();
}
function reSort() {
if (sortComparer) {
sort(sortComparer, sortAsc);
} else if (fastSortField) {
fastSort(fastSortField, sortAsc);
}
}
function getFilteredItems() {
return filteredItems;
}
function getFilteredItemCount() {
return filteredItems.length;
}
function getFilter() {
return filter;
}
function setFilter(filterFn) {
filter = filterFn;
if (options.inlineFilters) {
compiledFilter = compileFilter();
compiledFilterWithCaching = compileFilterWithCaching();
}
refresh();
}
function getGrouping() {
return groupingInfos;
}
function setGrouping(groupingInfo) {
if (!options.groupItemMetadataProvider) {
options.groupItemMetadataProvider = new Slick.Data.GroupItemMetadataProvider();
}
groups = [];
toggledGroupsByLevel = [];
groupingInfo = groupingInfo || [];
groupingInfos = (groupingInfo instanceof Array) ? groupingInfo : [groupingInfo];
for (var i = 0; i < groupingInfos.length; i++) {
var gi = groupingInfos[i] = $.extend(true, {}, groupingInfoDefaults, groupingInfos[i]);
gi.getterIsAFn = typeof gi.getter === "function";
// pre-compile accumulator loops
gi.compiledAccumulators = [];
var idx = gi.aggregators.length;
while (idx--) {
gi.compiledAccumulators[idx] = compileAccumulatorLoop(gi.aggregators[idx]);
}
toggledGroupsByLevel[i] = {};
}
refresh();
}
/**
* @deprecated Please use {@link setGrouping}.
*/
function groupBy(valueGetter, valueFormatter, sortComparer) {
if (valueGetter == null) {
setGrouping([]);
return;
}
setGrouping({
getter: valueGetter,
formatter: valueFormatter,
comparer: sortComparer
});
}
/**
* @deprecated Please use {@link setGrouping}.
*/
function setAggregators(groupAggregators, includeCollapsed) {
if (!groupingInfos.length) {
throw new Error("[SlickGrid DataView] At least one grouping must be specified before calling setAggregators().");
}
groupingInfos[0].aggregators = groupAggregators;
groupingInfos[0].aggregateCollapsed = includeCollapsed;
setGrouping(groupingInfos);
}
function getItemByIdx(i) {
return items[i];
}
function getIdxById(id) {
return idxById.get(id);
}
function ensureRowsByIdCache() {
if (!rowsById) {
rowsById = {};
for (var i = 0, l = rows.length; i < l; i++) {
rowsById[rows[i][idProperty]] = i;
}
}
}
function getRowByItem(item) {
ensureRowsByIdCache();
return rowsById[item[idProperty]];
}
function getRowById(id) {
ensureRowsByIdCache();
return rowsById[id];
}
function getItemById(id) {
return items[idxById.get(id)];
}
function mapItemsToRows(itemArray) {
var rows = [];
ensureRowsByIdCache();
for (var i = 0, l = itemArray.length; i < l; i++) {
var row = rowsById[itemArray[i][idProperty]];
if (row != null) {
rows[rows.length] = row;
}
}
return rows;
}
function mapIdsToRows(idArray) {
var rows = [];
ensureRowsByIdCache();
for (var i = 0, l = idArray.length; i < l; i++) {
var row = rowsById[idArray[i]];
if (row != null) {
rows[rows.length] = row;
}
}
return rows;
}
function mapRowsToIds(rowArray) {
var ids = [];
for (var i = 0, l = rowArray.length; i < l; i++) {
if (rowArray[i] < rows.length) {
ids[ids.length] = rows[rowArray[i]][idProperty];
}
}
return ids;
}
/***
* Performs the update operations of a single item by id without
* triggering any events or refresh operations.
* @param id The new id of the item.
* @param item The item which should be the new value for the given id.
*/
function updateSingleItem(id, item) {
// see also https://github.com/mleibman/SlickGrid/issues/1082
if (!idxById.has(id)) {
throw new Error("[SlickGrid DataView] Invalid id");
}
// What if the specified item also has an updated idProperty?
// Then we'll have to update the index as well, and possibly the `updated` cache too.
if (id !== item[idProperty]) {
// make sure the new id is unique:
var newId = item[idProperty];
if (newId == null) {
throw new Error("[SlickGrid DataView] Cannot update item to associate with a null id");
}
if (idxById.has(newId)) {
throw new Error("[SlickGrid DataView] Cannot update item to associate with a non-unique id");
}
idxById.set(newId, idxById.get(id));
idxById.delete(id);
// Also update the `updated` hashtable/markercache? Yes, `recalc()` inside `refresh()` needs that one!
if (updated && updated[id]) {
delete updated[id];
}
// Also update the row indexes? no need since the `refresh()`, further down, blows away the `rowsById[]` cache!
id = newId;
}
items[idxById.get(id)] = item;
// Also update the rows? no need since the `refresh()`, further down, blows away the `rows[]` cache and recalculates it via `recalc()`!
if (!updated) {
updated = {};
}
updated[id] = true;
}
/***
* Updates a single item in the data view given the id and new value.
* @param id The new id of the item.
* @param item The item which should be the new value for the given id.
*/
function updateItem(id, item) {
updateSingleItem(id, item);
refresh();
}
/***
* Updates multiple items in the data view given the new ids and new values.
* @param id {Array} The array of new ids which is in the same order as the items.
* @param newItems {Array} The new items that should be set in the data view for the given ids.
*/
function updateItems(ids, newItems) {
if(ids.length !== newItems.length) {
throw new Error("[SlickGrid DataView] Mismatch on the length of ids and items provided to update");
}
for (var i = 0, l = newItems.length; i < l; i++) {
updateSingleItem(ids[i], newItems[i]);
}
refresh();
}
/***
* Inserts a single item into the data view at the given position.
* @param insertBefore {Number} The 0-based index before which the item should be inserted.
* @param item The item to insert.
*/
function insertItem(insertBefore, item) {
items.splice(insertBefore, 0, item);
updateIdxById(insertBefore);
refresh();
}
/***
* Inserts multiple items into the data view at the given position.
* @param insertBefore {Number} The 0-based index before which the items should be inserted.
* @param newItems {Array} The items to insert.
*/
function insertItems(insertBefore, newItems) {
Array.prototype.splice.apply(items, [insertBefore, 0].concat(newItems));
updateIdxById(insertBefore);
refresh();
}
/***
* Adds a single item at the end of the data view.
* @param item The item to add at the end.
*/
function addItem(item) {
items.push(item);
updateIdxById(items.length - 1);
refresh();
}
/***
* Adds multiple items at the end of the data view.
* @param newItems {Array} The items to add at the end.
*/
function addItems(newItems) {
items = items.concat(newItems);
updateIdxById(items.length - newItems.length);
refresh();
}
/***
* Deletes a single item identified by the given id from the data view.
* @param id The id identifying the object to delete.
*/
function deleteItem(id) {
if (isBulkSuspend) {
bulkDeleteIds.set(id, true);
} else {
var idx = idxById.get(id);
if (idx === undefined) {
throw new Error("[SlickGrid DataView] Invalid id");
}
idxById.delete(id);
items.splice(idx, 1);
updateIdxById(idx);
refresh();
}
}
/***
* Deletes multiple item identified by the given ids from the data view.
* @param ids {Array} The ids of the items to delete.
*/
function deleteItems(ids) {
if (ids.length === 0) {
return;
}
if (isBulkSuspend) {
for (var i = 0, l = ids.length; i < l; i++) {
var id = ids[i];
var idx = idxById.get(id);
if (idx === undefined) {
throw new Error("[SlickGrid DataView] Invalid id");
}
bulkDeleteIds.set(id, true);
}
} else {
// collect all indexes
var indexesToDelete = [];
for (var i = 0, l = ids.length; i < l; i++) {
var id = ids[i];
var idx = idxById.get(id);
if (idx === undefined) {
throw new Error("[SlickGrid DataView] Invalid id");
}
idxById.delete(id);
indexesToDelete.push(idx);
}
// Remove from back to front
indexesToDelete.sort();
for (var i = indexesToDelete.length - 1; i >= 0; --i) {
items.splice(indexesToDelete[i], 1);
}
// update lookup from front to back
updateIdxById(indexesToDelete[0]);
refresh();
}
}
function sortedAddItem(item) {
if (!sortComparer) {
throw new Error("[SlickGrid DataView] sortedAddItem() requires a sort comparer, use sort()");
}
insertItem(sortedIndex(item), item);
}
function sortedUpdateItem(id, item) {
if (!idxById.has(id) || id !== item[idProperty]) {
throw new Error("[SlickGrid DataView] Invalid or non-matching id " + idxById.get(id));
}
if (!sortComparer) {
throw new Error("[SlickGrid DataView] sortedUpdateItem() requires a sort comparer, use sort()");
}
var oldItem = getItemById(id);
if (sortComparer(oldItem, item) !== 0) {
// item affects sorting -> must use sorted add
deleteItem(id);
sortedAddItem(item);
}
else { // update does not affect sorting -> regular update works fine
updateItem(id, item);
}
}
function sortedIndex(searchItem) {
var low = 0, high = items.length;
while (low < high) {
var mid = low + high >>> 1;
if (sortComparer(items[mid], searchItem) === -1) {
low = mid + 1;
}
else {
high = mid;
}
}
return low;
}
function getItemCount() {
return items.length;
}
function getLength() {
return rows.length;
}
function getItem(i) {
var item = rows[i];
// if this is a group row, make sure totals are calculated and update the title
if (item && item.__group && item.totals && !item.totals.initialized) {
var gi = groupingInfos[item.level];
if (!gi.displayTotalsRow) {
calculateTotals(item.totals);
item.title = gi.formatter ? gi.formatter(item) : item.value;
}
}
// if this is a totals row, make sure it's calculated
else if (item && item.__groupTotals && !item.initialized) {
calculateTotals(item);
}
return item;
}
function getItemMetadata(i) {
var item = rows[i];
if (item === undefined) {
return null;
}
// overrides for grouping rows
if (item.__group) {
return options.groupItemMetadataProvider.getGroupRowMetadata(item);
}
// overrides for totals rows
if (item.__groupTotals) {
return options.groupItemMetadataProvider.getTotalsRowMetadata(item);
}
return null;
}
function expandCollapseAllGroups(level, collapse) {
if (level == null) {
for (var i = 0; i < groupingInfos.length; i++) {
toggledGroupsByLevel[i] = {};
groupingInfos[i].collapsed = collapse;
if (collapse === true) {
onGroupCollapsed.notify({ level: i, groupingKey: null });
} else {
onGroupExpanded.notify({ level: i, groupingKey: null });
}
}
} else {
toggledGroupsByLevel[level] = {};
groupingInfos[level].collapsed = collapse;
if (collapse === true) {
onGroupCollapsed.notify({ level: level, groupingKey: null });
} else {
onGroupExpanded.notify({ level: level, groupingKey: null });
}
}
refresh();
}
/**
* @param level {Number} Optional level to collapse. If not specified, applies to all levels.
*/
function collapseAllGroups(level) {
expandCollapseAllGroups(level, true);
}
/**
* @param level {Number} Optional level to expand. If not specified, applies to all levels.
*/
function expandAllGroups(level) {
expandCollapseAllGroups(level, false);
}
function expandCollapseGroup(level, groupingKey, collapse) {
toggledGroupsByLevel[level][groupingKey] = groupingInfos[level].collapsed ^ collapse;
refresh();
}
/**
* @param varArgs Either a Slick.Group's "groupingKey" property, or a
* variable argument list of grouping values denoting a unique path to the row. For
* example, calling collapseGroup('high', '10%') will collapse the '10%' subgroup of
* the 'high' group.
*/
function collapseGroup(varArgs) {
var args = Array.prototype.slice.call(arguments);
var arg0 = args[0];
var groupingKey;
var level;
if (args.length === 1 && arg0.indexOf(groupingDelimiter) !== -1) {
groupingKey = arg0;
level = arg0.split(groupingDelimiter).length - 1;
} else {
groupingKey = args.join(groupingDelimiter);
level = args.length - 1;
}
expandCollapseGroup(level, groupingKey, true);
onGroupCollapsed.notify({ level: level, groupingKey: groupingKey });
}
/**
* @param varArgs Either a Slick.Group's "groupingKey" property, or a
* variable argument list of grouping values denoting a unique path to the row. For
* example, calling expandGroup('high', '10%') will expand the '10%' subgroup of
* the 'high' group.
*/
function expandGroup(varArgs) {
var args = Array.prototype.slice.call(arguments);
var arg0 = args[0];
var groupingKey;
var level;
if (args.length === 1 && arg0.indexOf(groupingDelimiter) !== -1) {
level = arg0.split(groupingDelimiter).length - 1;
groupingKey = arg0;
} else {
level = args.length - 1;
groupingKey = args.join(groupingDelimiter);
}
expandCollapseGroup(level, groupingKey, false);
onGroupExpanded.notify({ level: level, groupingKey: groupingKey });
}
function getGroups() {
return groups;
}
function extractGroups(rows, parentGroup) {
var group;
var val;
var groups = [];
var groupsByVal = {};
var r;
var level = parentGroup ? parentGroup.level + 1 : 0;
var gi = groupingInfos[level];
for (var i = 0, l = gi.predefinedValues.length; i < l; i++) {
val = gi.predefinedValues[i];
group = groupsByVal[val];
if (!group) {
group = new Slick.Group();
group.value = val;
group.level = level;
group.groupingKey = (parentGroup ? parentGroup.groupingKey + groupingDelimiter : '') + val;
groups[groups.length] = group;
groupsByVal[val] = group;
}
}
for (var i = 0, l = rows.length; i < l; i++) {
r = rows[i];
val = gi.getterIsAFn ? gi.getter(r) : r[gi.getter];
group = groupsByVal[val];
if (!group) {
group = new Slick.Group();
group.value = val;
group.level = level;
group.groupingKey = (parentGroup ? parentGroup.groupingKey + groupingDelimiter : '') + val;
groups[groups.length] = group;
groupsByVal[val] = group;
}
group.rows[group.count++] = r;
}
if (level < groupingInfos.length - 1) {
for (var i = 0; i < groups.length; i++) {
group = groups[i];
group.groups = extractGroups(group.rows, group);
}
}
if(groups.length) {
addTotals(groups, level);
}
groups.sort(groupingInfos[level].comparer);
return groups;
}
function calculateTotals(totals) {
var group = totals.group;
var gi = groupingInfos[group.level];
var isLeafLevel = (group.level == groupingInfos.length);
var agg, idx = gi.aggregators.length;
if (!isLeafLevel && gi.aggregateChildGroups) {
// make sure all the subgroups are calculated
var i = group.groups.length;
while (i--) {
if (!group.groups[i].totals.initialized) {
calculateTotals(group.groups[i].totals);
}
}
}
while (idx--) {
agg = gi.aggregators[idx];
agg.init();
if (!isLeafLevel && gi.aggregateChildGroups) {
gi.compiledAccumulators[idx].call(agg, group.groups);
} else {
gi.compiledAccumulators[idx].call(agg, group.rows);
}
agg.storeResult(totals);
}
totals.initialized = true;
}
function addGroupTotals(group) {
var gi = groupingInfos[group.level];
var totals = new Slick.GroupTotals();
totals.group = group;
group.totals = totals;
if (!gi.lazyTotalsCalculation) {
calculateTotals(totals);
}
}
function addTotals(groups, level) {
level = level || 0;
var gi = groupingInfos[level];
var groupCollapsed = gi.collapsed;
var toggledGroups = toggledGroupsByLevel[level];
var idx = groups.length, g;
while (idx--) {
g = groups[idx];
if (g.collapsed && !gi.aggregateCollapsed) {
continue;
}
// Do a depth-first aggregation so that parent group aggregators can access subgroup totals.
if (g.groups) {
addTotals(g.groups, level + 1);
}
if (gi.aggregators.length && (
gi.aggregateEmpty || g.rows.length || (g.groups && g.groups.length))) {
addGroupTotals(g);
}
g.collapsed = groupCollapsed ^ toggledGroups[g.groupingKey];
g.title = gi.formatter ? gi.formatter(g) : g.value;
}
}
function flattenGroupedRows(groups, level) {
level = level || 0;
var gi = groupingInfos[level];
var groupedRows = [], rows, gl = 0, g;
for (var i = 0, l = groups.length; i < l; i++) {
g = groups[i];
groupedRows[gl++] = g;
if (!g.collapsed) {
rows = g.groups ? flattenGroupedRows(g.groups, level + 1) : g.rows;
for (var j = 0, jj = rows.length; j < jj; j++) {
groupedRows[gl++] = rows[j];
}
}
if (g.totals && gi.displayTotalsRow && (!g.collapsed || gi.aggregateCollapsed)) {
groupedRows[gl++] = g.totals;
}
}
return groupedRows;
}
function getFunctionInfo(fn) {
var fnStr = fn.toString();
var usingEs5 = fnStr.indexOf('function') >= 0; // with ES6, the word function is not present
var fnRegex = usingEs5 ? /^function[^(]*\(([^)]*)\)\s*{([\s\S]*)}$/ : /^[^(]*\(([^)]*)\)\s*{([\s\S]*)}$/;
var matches = fn.toString().match(fnRegex);
return {
params: matches[1].split(","),
body: matches[2]
};
}
function compileAccumulatorLoop(aggregator) {
if (aggregator.accumulate) {
var accumulatorInfo = getFunctionInfo(aggregator.accumulate);
var fn = new Function(
"_items",
"for (var " + accumulatorInfo.params[0] + ", _i=0, _il=_items.length; _i<_il; _i++) {" +
accumulatorInfo.params[0] + " = _items[_i]; " +
accumulatorInfo.body +
"}"
);
var fnName = "compiledAccumulatorLoop";
fn.displayName = fnName;
fn.name = setFunctionName(fn, fnName);
return fn;
} else {
return function noAccumulator() {
}
}
}
function compileFilter() {
var filterInfo = getFunctionInfo(filter);
var filterPath1 = "{ continue _coreloop; }$1";
var filterPath2 = "{ _retval[_idx++] = $item$; continue _coreloop; }$1";
// make some allowances for minification - there's only so far we can go with RegEx
var filterBody = filterInfo.body
.replace(/return false\s*([;}]|\}|$)/gi, filterPath1)
.replace(/return!1([;}]|\}|$)/gi, filterPath1)
.replace(/return true\s*([;}]|\}|$)/gi, filterPath2)
.replace(/return!0([;}]|\}|$)/gi, filterPath2)
.replace(/return ([^;}]+?)\s*([;}]|$)/gi,
"{ if ($1) { _retval[_idx++] = $item$; }; continue _coreloop; }$2");
// This preserves the function template code after JS compression,
// so that replace() commands still work as expected.
var tpl = [
//"function(_items, _args) { ",
"var _retval = [], _idx = 0; ",
"var $item$, $args$ = _args; ",
"_coreloop: ",
"for (var _i = 0, _il = _items.length; _i < _il; _i++) { ",
"$item$ = _items[_i]; ",
"$filter$; ",
"} ",
"return _retval; "
//"}"