-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathui-grid.move-columns.js
582 lines (534 loc) · 24.4 KB
/
ui-grid.move-columns.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
/*!
* ui-grid - v4.12.7 - 2024-04-12
* http://ui-grid.info/
* Copyright (c) 2024 ; License: MIT
*/
(function () {
'use strict';
/**
* @ngdoc overview
* @name ui.grid.moveColumns
* @description
*
* # ui.grid.moveColumns
*
* <div class="alert alert-warning" role="alert"><strong>Alpha</strong> This feature is in development. There will almost certainly be breaking api changes, or there are major outstanding bugs.</div>
*
* This module provides column moving capability to ui.grid. It enables to change the position of columns.
* <div doc-module-components="ui.grid.moveColumns"></div>
*/
var module = angular.module('ui.grid.moveColumns', ['ui.grid']);
/**
* @ngdoc service
* @name ui.grid.moveColumns.service:uiGridMoveColumnService
* @description Service for column moving feature.
*/
module.service('uiGridMoveColumnService', ['$q', '$rootScope', '$log', 'ScrollEvent', 'uiGridConstants', 'gridUtil', function ($q, $rootScope, $log, ScrollEvent, uiGridConstants, gridUtil) {
var service = {
initializeGrid: function (grid) {
var self = this;
this.registerPublicApi(grid);
this.defaultGridOptions(grid.options);
grid.moveColumns = {orderCache: []}; // Used to cache the order before columns are rebuilt
grid.registerColumnBuilder(self.movableColumnBuilder);
grid.registerDataChangeCallback(self.verifyColumnOrder, [uiGridConstants.dataChange.COLUMN]);
},
registerPublicApi: function (grid) {
var self = this;
/**
* @ngdoc object
* @name ui.grid.moveColumns.api:PublicApi
* @description Public Api for column moving feature.
*/
var publicApi = {
events: {
/**
* @ngdoc event
* @name columnPositionChanged
* @eventOf ui.grid.moveColumns.api:PublicApi
* @description raised when column is moved
* <pre>
* gridApi.colMovable.on.columnPositionChanged(scope,function(colDef, originalPosition, newPosition) {})
* </pre>
* @param {object} colDef the column that was moved
* @param {integer} originalPosition of the column
* @param {integer} finalPosition of the column
*/
colMovable: {
columnPositionChanged: function (colDef, originalPosition, newPosition) {
}
}
},
methods: {
/**
* @ngdoc method
* @name moveColumn
* @methodOf ui.grid.moveColumns.api:PublicApi
* @description Method can be used to change column position.
* <pre>
* gridApi.colMovable.moveColumn(oldPosition, newPosition)
* </pre>
* @param {integer} originalPosition of the column
* @param {integer} finalPosition of the column
*/
colMovable: {
moveColumn: function (originalPosition, finalPosition) {
var columns = grid.columns;
if (!angular.isNumber(originalPosition) || !angular.isNumber(finalPosition)) {
gridUtil.logError('MoveColumn: Please provide valid values for originalPosition and finalPosition');
return;
}
var nonMovableColumns = 0;
for (var i = 0; i < columns.length; i++) {
if ((angular.isDefined(columns[i].colDef.visible) && columns[i].colDef.visible === false) || columns[i].isRowHeader === true) {
nonMovableColumns++;
}
}
if (originalPosition >= (columns.length - nonMovableColumns) || finalPosition >= (columns.length - nonMovableColumns)) {
gridUtil.logError('MoveColumn: Invalid values for originalPosition, finalPosition');
return;
}
var findPositionForRenderIndex = function (index) {
var position = index;
for (var i = 0; i <= position; i++) {
if (angular.isDefined(columns[i]) && ((angular.isDefined(columns[i].colDef.visible) && columns[i].colDef.visible === false) || columns[i].isRowHeader === true)) {
position++;
}
}
return position;
};
self.redrawColumnAtPosition(grid, findPositionForRenderIndex(originalPosition), findPositionForRenderIndex(finalPosition));
}
}
}
};
grid.api.registerEventsFromObject(publicApi.events);
grid.api.registerMethodsFromObject(publicApi.methods);
},
defaultGridOptions: function (gridOptions) {
/**
* @ngdoc object
* @name ui.grid.moveColumns.api:GridOptions
*
* @description Options for configuring the move column feature, these are available to be
* set using the ui-grid {@link ui.grid.class:GridOptions gridOptions}
*/
/**
* @ngdoc object
* @name enableColumnMoving
* @propertyOf ui.grid.moveColumns.api:GridOptions
* @description If defined, sets the default value for the colMovable flag on each individual colDefs
* if their individual enableColumnMoving configuration is not defined. Defaults to true.
*/
gridOptions.enableColumnMoving = gridOptions.enableColumnMoving !== false;
},
movableColumnBuilder: function (colDef, col, gridOptions) {
var promises = [];
/**
* @ngdoc object
* @name ui.grid.moveColumns.api:ColumnDef
*
* @description Column Definition for move column feature, these are available to be
* set using the ui-grid {@link ui.grid.class:GridOptions.columnDef gridOptions.columnDefs}
*/
/**
* @ngdoc object
* @name enableColumnMoving
* @propertyOf ui.grid.moveColumns.api:ColumnDef
* @description Enable column moving for the column.
*/
colDef.enableColumnMoving = colDef.enableColumnMoving === undefined ? gridOptions.enableColumnMoving
: colDef.enableColumnMoving;
return $q.all(promises);
},
/**
* @ngdoc method
* @name updateColumnCache
* @methodOf ui.grid.moveColumns
* @description Cache the current order of columns, so we can restore them after new columnDefs are defined
*/
updateColumnCache: function(grid) {
grid.moveColumns.orderCache = grid.getOnlyDataColumns();
},
/**
* @ngdoc method
* @name verifyColumnOrder
* @methodOf ui.grid.moveColumns
* @description dataChangeCallback which uses the cached column order to restore the column order
* when it is reset by altering the columnDefs array.
*/
verifyColumnOrder: function(grid) {
var headerRowOffset = grid.rowHeaderColumns.length;
var newIndex;
angular.forEach(grid.moveColumns.orderCache, function(cacheCol, cacheIndex) {
newIndex = grid.columns.indexOf(cacheCol);
if ( newIndex !== -1 && newIndex - headerRowOffset !== cacheIndex ) {
var column = grid.columns.splice(newIndex, 1)[0];
grid.columns.splice(cacheIndex + headerRowOffset, 0, column);
}
});
},
redrawColumnAtPosition: function (grid, originalPosition, newPosition) {
var columns = grid.columns;
if (originalPosition === newPosition) {
return;
}
// check columns in between move-range to make sure they are visible columns
var pos = (originalPosition < newPosition) ? originalPosition + 1 : originalPosition - 1;
var i0 = Math.min(pos, newPosition);
for (i0; i0 <= Math.max(pos, newPosition); i0++) {
if (columns[i0].visible) {
break;
}
}
if (i0 > Math.max(pos, newPosition)) {
// no visible column found, column did not visibly move
return;
}
var originalColumn = columns[originalPosition];
if (originalColumn.colDef.enableColumnMoving) {
if (originalPosition > newPosition) {
for (var i1 = originalPosition; i1 > newPosition; i1--) {
columns[i1] = columns[i1 - 1];
}
}
else if (newPosition > originalPosition) {
for (var i2 = originalPosition; i2 < newPosition; i2++) {
columns[i2] = columns[i2 + 1];
}
}
columns[newPosition] = originalColumn;
service.updateColumnCache(grid);
grid.queueGridRefresh();
$rootScope.$applyAsync(function () {
grid.api.core.notifyDataChange( uiGridConstants.dataChange.COLUMN );
grid.api.colMovable.raise.columnPositionChanged(originalColumn.colDef, originalPosition, newPosition);
});
}
}
};
return service;
}]);
/**
* @ngdoc directive
* @name ui.grid.moveColumns.directive:uiGridMoveColumns
* @element div
* @restrict A
* @description Adds column moving features to the ui-grid directive.
* @example
<example module="app">
<file name="app.js">
var app = angular.module('app', ['ui.grid', 'ui.grid.moveColumns']);
app.controller('MainCtrl', ['$scope', function ($scope) {
$scope.data = [
{ name: 'Bob', title: 'CEO', age: 45 },
{ name: 'Frank', title: 'Lowly Developer', age: 25 },
{ name: 'Jenny', title: 'Highly Developer', age: 35 }
];
$scope.columnDefs = [
{name: 'name'},
{name: 'title'},
{name: 'age'}
];
}]);
</file>
<file name="main.css">
.grid {
width: 100%;
height: 150px;
}
</file>
<file name="index.html">
<div ng-controller="MainCtrl">
<div class="grid" ui-grid="{ data: data, columnDefs: columnDefs }" ui-grid-move-columns></div>
</div>
</file>
</example>
*/
module.directive('uiGridMoveColumns', ['uiGridMoveColumnService', function (uiGridMoveColumnService) {
return {
replace: true,
priority: 0,
require: '^uiGrid',
scope: false,
compile: function () {
return {
pre: function ($scope, $elm, $attrs, uiGridCtrl) {
uiGridMoveColumnService.initializeGrid(uiGridCtrl.grid);
},
post: function ($scope, $elm, $attrs, uiGridCtrl) {
}
};
}
};
}]);
/**
* @ngdoc directive
* @name ui.grid.moveColumns.directive:uiGridHeaderCell
* @element div
* @restrict A
*
* @description Stacks on top of ui.grid.uiGridHeaderCell to provide capability to be able to move it to reposition column.
*
* On receiving mouseDown event headerCell is cloned, now as the mouse moves the cloned header cell also moved in the grid.
* In case the moving cloned header cell reaches the left or right extreme of grid, grid scrolling is triggered (if horizontal scroll exists).
* On mouseUp event column is repositioned at position where mouse is released and cloned header cell is removed.
*
* Events that invoke cloning of header cell:
* - mousedown
*
* Events that invoke movement of cloned header cell:
* - mousemove
*
* Events that invoke repositioning of column:
* - mouseup
*/
module.directive('uiGridHeaderCell', ['$q', 'gridUtil', 'uiGridMoveColumnService', '$document', '$log', 'uiGridConstants', 'ScrollEvent',
function ($q, gridUtil, uiGridMoveColumnService, $document, $log, uiGridConstants, ScrollEvent) {
return {
priority: -10,
require: '^uiGrid',
compile: function () {
return {
post: function ($scope, $elm, $attrs, uiGridCtrl) {
if ($scope.col.colDef.enableColumnMoving) {
/*
* Our general approach to column move is that we listen to a touchstart or mousedown
* event over the column header. When we hear one, then we wait for a move of the same type
* - if we are a touchstart then we listen for a touchmove, if we are a mousedown we listen for
* a mousemove (i.e. a drag) before we decide that there's a move underway. If there's never a move,
* and we instead get a mouseup or a touchend, then we just drop out again and do nothing.
*
*/
var $contentsElm = angular.element( $elm[0].querySelectorAll('.ui-grid-cell-contents') );
var gridLeft;
var previousMouseX;
var totalMouseMovement;
var rightMoveLimit;
var elmCloned = false;
var movingElm;
var reducedWidth;
var moveOccurred = false;
var downFn = function( event ) {
// Setting some variables required for calculations.
gridLeft = $scope.grid.element[0].getBoundingClientRect().left;
if ( $scope.grid.hasLeftContainer() ) {
gridLeft += $scope.grid.renderContainers.left.header[0].getBoundingClientRect().width;
}
previousMouseX = event.pageX || (event.originalEvent ? event.originalEvent.pageX : 0);
totalMouseMovement = 0;
rightMoveLimit = gridLeft + $scope.grid.getViewportWidth();
if ( event.type === 'mousedown' ) {
$document.on('mousemove', moveFn);
$document.on('mouseup', upFn);
}
else if ( event.type === 'touchstart' ) {
$document.on('touchmove', moveFn);
$document.on('touchend', upFn);
}
};
var moveFn = function( event ) {
var pageX = event.pageX || (event.originalEvent ? event.originalEvent.pageX : 0);
var changeValue = pageX - previousMouseX;
if ( changeValue === 0 ) { return; }
// Disable text selection in Chrome during column move
document.onselectstart = function() { return false; };
moveOccurred = true;
if (!elmCloned) {
cloneElement();
}
else if (elmCloned) {
moveElement(changeValue);
previousMouseX = pageX;
}
};
var upFn = function( event ) {
// Re-enable text selection after column move
document.onselectstart = null;
// Remove the cloned element on mouse up.
if (movingElm) {
movingElm.remove();
elmCloned = false;
}
offAllEvents();
onDownEvents();
if (!moveOccurred) {
return;
}
var columns = $scope.grid.columns;
var columnIndex = 0;
for (var i = 0; i < columns.length; i++) {
if (columns[i].colDef.name !== $scope.col.colDef.name) {
columnIndex++;
}
else {
break;
}
}
var targetIndex;
// Case where column should be moved to a position on its left
if (totalMouseMovement < 0) {
var totalColumnsLeftWidth = 0;
var il;
if ( $scope.grid.isRTL() ) {
for (il = columnIndex + 1; il < columns.length; il++) {
if (angular.isUndefined(columns[il].colDef.visible) || columns[il].colDef.visible === true) {
totalColumnsLeftWidth += columns[il].drawnWidth || columns[il].width || columns[il].colDef.width;
if (totalColumnsLeftWidth > Math.abs(totalMouseMovement)) {
uiGridMoveColumnService.redrawColumnAtPosition
($scope.grid, columnIndex, il - 1);
break;
}
}
}
}
else {
for (il = columnIndex - 1; il >= 0; il--) {
if (angular.isUndefined(columns[il].colDef.visible) || columns[il].colDef.visible === true) {
totalColumnsLeftWidth += columns[il].drawnWidth || columns[il].width || columns[il].colDef.width;
if (totalColumnsLeftWidth > Math.abs(totalMouseMovement)) {
uiGridMoveColumnService.redrawColumnAtPosition
($scope.grid, columnIndex, il + 1);
break;
}
}
}
}
// Case where column should be moved to beginning (or end in RTL) of the grid.
if (totalColumnsLeftWidth < Math.abs(totalMouseMovement)) {
targetIndex = 0;
if ( $scope.grid.isRTL() ) {
targetIndex = columns.length - 1;
}
uiGridMoveColumnService.redrawColumnAtPosition
($scope.grid, columnIndex, targetIndex);
}
}
// Case where column should be moved to a position on its right
else if (totalMouseMovement > 0) {
var totalColumnsRightWidth = 0;
var ir;
if ( $scope.grid.isRTL() ) {
for (ir = columnIndex - 1; ir > 0; ir--) {
if (angular.isUndefined(columns[ir].colDef.visible) || columns[ir].colDef.visible === true) {
totalColumnsRightWidth += columns[ir].drawnWidth || columns[ir].width || columns[ir].colDef.width;
if (totalColumnsRightWidth > totalMouseMovement) {
uiGridMoveColumnService.redrawColumnAtPosition
($scope.grid, columnIndex, ir);
break;
}
}
}
}
else {
for (ir = columnIndex + 1; ir < columns.length; ir++) {
if (angular.isUndefined(columns[ir].colDef.visible) || columns[ir].colDef.visible === true) {
totalColumnsRightWidth += columns[ir].drawnWidth || columns[ir].width || columns[ir].colDef.width;
if (totalColumnsRightWidth > totalMouseMovement) {
uiGridMoveColumnService.redrawColumnAtPosition
($scope.grid, columnIndex, ir - 1);
break;
}
}
}
}
// Case where column should be moved to end (or beginning in RTL) of the grid.
if (totalColumnsRightWidth < totalMouseMovement) {
targetIndex = columns.length - 1;
if ( $scope.grid.isRTL() ) {
targetIndex = 0;
}
uiGridMoveColumnService.redrawColumnAtPosition
($scope.grid, columnIndex, targetIndex);
}
}
};
var onDownEvents = function() {
$contentsElm.on('touchstart', downFn);
$contentsElm.on('mousedown', downFn);
};
var offAllEvents = function() {
$contentsElm.off('touchstart', downFn);
$contentsElm.off('mousedown', downFn);
$document.off('mousemove', moveFn);
$document.off('touchmove', moveFn);
$document.off('mouseup', upFn);
$document.off('touchend', upFn);
};
onDownEvents();
var cloneElement = function () {
elmCloned = true;
// Cloning header cell and appending to current header cell.
movingElm = $elm.clone();
$elm.parent().append(movingElm);
// Left of cloned element should be aligned to original header cell.
movingElm.addClass('movingColumn');
var movingElementStyles = {};
movingElementStyles.left = $elm[0].offsetLeft + 'px';
var gridRight = $scope.grid.element[0].getBoundingClientRect().right;
var elmRight = $elm[0].getBoundingClientRect().right;
if (elmRight > gridRight) {
reducedWidth = $scope.col.drawnWidth + (gridRight - elmRight);
movingElementStyles.width = reducedWidth + 'px';
}
movingElm.css(movingElementStyles);
};
var moveElement = function (changeValue) {
// Calculate total column width
var columns = $scope.grid.columns;
var totalColumnWidth = 0;
for (var i = 0; i < columns.length; i++) {
if (angular.isUndefined(columns[i].colDef.visible) || columns[i].colDef.visible === true) {
totalColumnWidth += columns[i].drawnWidth || columns[i].width || columns[i].colDef.width;
}
}
// Calculate new position of left of column
var currentElmLeft = movingElm[0].getBoundingClientRect().left - 1;
var currentElmRight = movingElm[0].getBoundingClientRect().right;
var newElementLeft;
newElementLeft = currentElmLeft - gridLeft + changeValue;
newElementLeft = newElementLeft < rightMoveLimit ? newElementLeft : rightMoveLimit;
// Update css of moving column to adjust to new left value or fire scroll in case column has reached edge of grid
if ((currentElmLeft >= gridLeft || changeValue > 0) && (currentElmRight <= rightMoveLimit || changeValue < 0)) {
movingElm.css({visibility: 'visible', 'left': (movingElm[0].offsetLeft +
(newElementLeft < rightMoveLimit ? changeValue : (rightMoveLimit - currentElmLeft))) + 'px'});
}
else if (totalColumnWidth > Math.ceil(uiGridCtrl.grid.gridWidth)) {
changeValue *= 8;
var scrollEvent = new ScrollEvent($scope.col.grid, null, null, 'uiGridHeaderCell.moveElement');
scrollEvent.x = {pixels: changeValue};
scrollEvent.grid.scrollContainers('',scrollEvent);
}
// Calculate total width of columns on the left of the moving column and the mouse movement
var totalColumnsLeftWidth = 0;
for (var il = 0; il < columns.length; il++) {
if (angular.isUndefined(columns[il].colDef.visible) || columns[il].colDef.visible === true) {
if (columns[il].colDef.name !== $scope.col.colDef.name) {
totalColumnsLeftWidth += columns[il].drawnWidth || columns[il].width || columns[il].colDef.width;
}
else {
break;
}
}
}
if ($scope.newScrollLeft === undefined) {
totalMouseMovement += changeValue;
}
else {
totalMouseMovement = $scope.newScrollLeft + newElementLeft - totalColumnsLeftWidth;
}
// Increase width of moving column, in case the rightmost column was moved and its width was
// decreased because of overflow
if (reducedWidth < $scope.col.drawnWidth) {
reducedWidth += Math.abs(changeValue);
movingElm.css({'width': reducedWidth + 'px'});
}
};
$scope.$on('$destroy', offAllEvents);
}
}
};
}
};
}]);
})();