Skip to content
This repository was archived by the owner on Sep 8, 2020. It is now read-only.

Commit 127cf26

Browse files
committed
Merge pull request #461 from angular-ui/sortableObjectOnHelper
feat(sortable): access sortable object inside helper
2 parents f5b9ce5 + e7a1263 commit 127cf26

File tree

4 files changed

+82
-7
lines changed

4 files changed

+82
-7
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-ui-sortable",
3-
"version": "0.14.0",
3+
"version": "0.14.1",
44
"description": "This directive allows you to jQueryUI Sortable.",
55
"author": "https://github.com/angular-ui/ui-sortable/graphs/contributors",
66
"license": "MIT",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-ui-sortable",
3-
"version": "0.14.0",
3+
"version": "0.14.1",
44
"description": "This directive allows you to jQueryUI Sortable.",
55
"author": "https://github.com/angular-ui/ui-sortable/graphs/contributors",
66
"license": "MIT",

src/sortable.js

+22-5
Original file line numberDiff line numberDiff line change
@@ -209,10 +209,10 @@ angular.module('ui.sortable', [])
209209
// return the index of ui.item among the items
210210
// we can't just do ui.item.index() because there it might have siblings
211211
// which are not items
212-
function getItemIndex(ui) {
213-
return ui.item.parent()
212+
function getItemIndex(item) {
213+
return item.parent()
214214
.find(opts['ui-model-items'])
215-
.index(ui.item);
215+
.index(item);
216216
}
217217

218218
var opts = {};
@@ -266,7 +266,7 @@ angular.module('ui.sortable', [])
266266
}
267267

268268
// Save the starting position of dragged item
269-
var index = getItemIndex(ui);
269+
var index = getItemIndex(ui.item);
270270
ui.item.sortable = {
271271
model: ngModel.$modelValue[index],
272272
index: index,
@@ -322,7 +322,7 @@ angular.module('ui.sortable', [])
322322
// update that happens when moving between lists because then
323323
// the value will be overwritten with the old value
324324
if(!ui.item.sortable.received) {
325-
ui.item.sortable.dropindex = getItemIndex(ui);
325+
ui.item.sortable.dropindex = getItemIndex(ui.item);
326326
var droptarget = ui.item.parent();
327327
ui.item.sortable.droptarget = droptarget;
328328

@@ -431,7 +431,24 @@ angular.module('ui.sortable', [])
431431
wrappers.helper = function (inner) {
432432
if (inner && typeof inner === 'function') {
433433
return function (e, item) {
434+
var oldItemSortable = item.sortable;
435+
var index = getItemIndex(item);
436+
item.sortable = {
437+
model: ngModel.$modelValue[index],
438+
index: index,
439+
source: item.parent(),
440+
sourceModel: ngModel.$modelValue,
441+
_restore: function () {
442+
angular.forEach(item.sortable, function(value, key) {
443+
item.sortable[key] = undefined;
444+
});
445+
446+
item.sortable = oldItemSortable;
447+
}
448+
};
449+
434450
var innerResult = inner.apply(this, arguments);
451+
item.sortable._restore();
435452
item.sortable._isCustomHelperUsed = item !== innerResult;
436453
return innerResult;
437454
};

test/sortable.e2e.callbacks.spec.js

+58
Original file line numberDiff line numberDiff line change
@@ -457,6 +457,64 @@ describe('uiSortable', function() {
457457
});
458458
});
459459

460+
it('should provide the item.sortable properties on helper callback', function() {
461+
inject(function($compile, $rootScope) {
462+
var element, helperItem, itemSortable_Restore, sortableAfterRestore, helperCallbackExpectations;
463+
element = $compile(''.concat(
464+
'<ul ui-sortable="opts" ng-model="items">',
465+
beforeLiElement,
466+
'<li ng-repeat="item in items" id="s-{{$index}}">{{ item }}</li>',
467+
afterLiElement +
468+
'</ul>'))($rootScope);
469+
$rootScope.$apply(function() {
470+
$rootScope.opts = {
471+
helper: function(e, item) {
472+
helperItem = item;
473+
474+
var oldRestore = item.sortable._restore;
475+
item.sortable._restore = function () {
476+
oldRestore.apply(this, arguments);
477+
// hold the value of the sortable object
478+
// right after the _restore method completes
479+
sortableAfterRestore = item.sortable;
480+
};
481+
482+
spyOn(item.sortable, '_restore').and.callThrough();
483+
itemSortable_Restore = item.sortable._restore;
484+
helperCallbackExpectations(item.sortable);
485+
return item.clone();
486+
}
487+
};
488+
$rootScope.items = ['One', 'Two', 'Three'];
489+
});
490+
491+
host.append(element);
492+
493+
$rootScope.$apply(function() {
494+
});
495+
496+
var li = element.find('[ng-repeat]:eq(0)');
497+
var dy = (2 + EXTRA_DY_PERCENTAGE) * li.outerHeight();
498+
helperCallbackExpectations = function(helperItemSortable) {
499+
expect(helperItemSortable.model).toEqual('One');
500+
expect(helperItemSortable.index).toEqual(0);
501+
expect(helperItemSortable.source.length).toEqual(1);
502+
expect(helperItemSortable.source[0]).toBe(host.children()[0]);
503+
expect(helperItemSortable.sourceModel).toBe($rootScope.items);
504+
};
505+
li.simulate('drag', { dy: dy });
506+
expect($rootScope.items).toEqual(['Two', 'Three', 'One']);
507+
expect($rootScope.items).toEqual(listContent(element));
508+
expect(itemSortable_Restore).toHaveBeenCalled();
509+
expect(hasUndefinedProperties(helperItem.sortable)).toBe(true);
510+
// this happens after the update callback, so everything is udnefined
511+
expect(typeof sortableAfterRestore).toBe('function');
512+
helperItem = itemSortable_Restore = sortableAfterRestore = helperCallbackExpectations = undefined;
513+
514+
$(element).remove();
515+
});
516+
});
517+
460518
it('should properly reset a deleted callback option', function() {
461519
inject(function($compile, $rootScope) {
462520
var element, logsElement;

0 commit comments

Comments
 (0)