Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Repeater leave fix #8994

Merged
merged 4 commits into from
Sep 9, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ng/directive/ngRepeat.js
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ var ngRepeatDirective = ['$parse', '$animate', function($parse, $animate) {
block = lastBlockMap[blockKey];
elementsToRemove = getBlockNodes(block.clone);
$animate.leave(elementsToRemove);
if (elementsToRemove[0].parent) {
if (elementsToRemove[0].parentNode) {
// if the element was not removed yet because of pending animation, mark it as deleted
// so that we can ignore it later
for (index = 0, length = elementsToRemove.length; index < length; index++) {
Expand Down
9 changes: 6 additions & 3 deletions test/helpers/testabilityPatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -323,14 +323,17 @@ function provideLog($provide) {
}

function pending() {
dump('PENDING');
window.dump('PENDING');
}

function trace(name) {
dump(new Error(name).stack);
window.dump(new Error(name).stack);
}

var karmaDump = dump;
var karmaDump = window.dump || function() {
window.console.log.apply(window.console, arguments);
};

window.dump = function () {
karmaDump.apply(undefined, map(arguments, function(arg) {
return angular.mock.dump(arg);
Expand Down
83 changes: 60 additions & 23 deletions test/ng/directive/ngRepeatSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1332,6 +1332,28 @@ describe('ngRepeat and transcludes', function() {
dealoc(element);
});
});


it('should work with svg elements when the svg container is transcluded', function() {
module(function($compileProvider) {
$compileProvider.directive('svgContainer', function() {
return {
template: '<svg ng-transclude></svg>',
replace: true,
transclude: true
};
});
});
inject(function($compile, $rootScope) {
var element = $compile('<svg-container><circle ng-repeat="r in rows"></circle></svg-container>')($rootScope);
$rootScope.rows = [1];
$rootScope.$apply();

var circle = element.find('circle');
expect(circle[0].toString()).toMatch(/SVG/);
dealoc(element);
});
});
});

describe('ngRepeat animations', function() {
Expand All @@ -1343,6 +1365,7 @@ describe('ngRepeat animations', function() {
return element;
}

beforeEach(module('ngAnimate'));
beforeEach(module('ngAnimateMock'));

beforeEach(module(function() {
Expand All @@ -1355,8 +1378,7 @@ describe('ngRepeat animations', function() {
}));

afterEach(function(){
dealoc(body);
dealoc(element);
body.empty();
});

it('should fire off the enter animation',
Expand Down Expand Up @@ -1424,6 +1446,42 @@ describe('ngRepeat animations', function() {
expect(item.element.text()).toBe('2');
}));

it('should not change the position of the block that is being animated away via a leave animation',
inject(function($compile, $rootScope, $animate, $document, $window, $sniffer, $timeout) {
if (!$sniffer.transitions) return;

var item;
var ss = createMockStyleSheet($document, $window);

try {

$animate.enabled(true);

ss.addRule('.animate-me div',
'-webkit-transition:1s linear all; transition:1s linear all;');

element = $compile(html('<div class="animate-me">' +
'<div ng-repeat="item in items">{{ item }}</div>' +
'</div>'))($rootScope);

$rootScope.items = ['1','2','3'];
$rootScope.$digest();
expect(element.text()).toBe('123');

$rootScope.items = ['1','3'];
$rootScope.$digest();

expect(element.text()).toBe('123'); // the original order should be preserved
$animate.triggerReflow();
$timeout.flush(1500); // 1s * 1.5 closing buffer
expect(element.text()).toBe('13');

} finally {
ss.destroy();
}
})
);

it('should fire off the move animation',
inject(function($compile, $rootScope, $animate) {

Expand Down Expand Up @@ -1464,25 +1522,4 @@ describe('ngRepeat animations', function() {
expect(item.element.text()).toBe('3');
})
);

it('should work with svg elements when the svg container is transcluded', function() {
module(function($compileProvider) {
$compileProvider.directive('svgContainer', function() {
return {
template: '<svg ng-transclude></svg>',
replace: true,
transclude: true
};
});
});
inject(function($compile, $rootScope) {
element = $compile('<svg-container><circle ng-repeat="r in rows"></circle></svg-container>')($rootScope);
$rootScope.rows = [1];
$rootScope.$apply();

var circle = element.find('circle');
expect(circle[0].toString()).toMatch(/SVG/);
});
});

});
Loading