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

ngAnimate enhancements #5749

Closed
wants to merge 7 commits into from
Closed

ngAnimate enhancements #5749

wants to merge 7 commits into from

Conversation

matsko
Copy link
Contributor

@matsko matsko commented Jan 12, 2014

Fixes to Transitions / Keyframe Animations

NgAnimate and natural CSS transitions are not 1-1 in terms of behaviour (yet), but this fix brings 1.2 to work alongside natural CSS transitions much better. With 1.3 the API will be changed so things are more fluid, but this fix should handle a good amount of the class-based bugs that are appearing in ngAnimate.

Long story short, if you remove ngAnimate from your application it should perform the exact same for CSS-based transitions and keyframe animations triggered by $animate.addClass and/or ngClass.

Closes #5588
Closes #5191

Here's an example of what should happen:

Natural CSS animations without ngAnimate
http://jsfiddle.net/7vk7p/3/

And this is how it is expected to be with ngAnimate
https://s3.amazonaws.com/angularjs-dev/ng-animate-race-condition-fix/example/animate.html

This is how it currently is:
http://jsfiddle.net/7vk7p/2/

Cleanup

Remove a useless test from ngAnimate

Fixes to Staggering animations

Broken with 1.2.5+ due to closing timeout feature.

Fixes to performance

Use requestAnimationFrame instead of $timeout to issue a forced reflow.

Animation callbacks

Added a new feature to tap into callbacks before and after animations DOM events are called.

@@ -1174,6 +1174,48 @@ describe("ngAnimate", function() {
expect(element.hasClass('some-class-add-active')).toBe(false);
}));

it("apply a closing timeout with respect to a staggering animation",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"should apply..."

@IgorMinar
Copy link
Contributor

otherwise lgtm

@IgorMinar
Copy link
Contributor

lgtm.

do we need the last feature for anything? in general we should not be adding new apis or features unless necessary for fixing an issue.

@IgorMinar
Copy link
Contributor

the tests are passing google CI so they should be easy to get merged

…ing class addition and removal

When a CSS class containing transition code is added to an element then an animation should kick off.
ngAnimate doesn't do this. It only respects transition styles that are already present on the element
or on the setup class (but not the addClass animation).
@matsko matsko closed this Jan 15, 2014
@matsko
Copy link
Contributor Author

matsko commented Jan 15, 2014

Topped off as dde1b29

@petebacondarwin
Copy link
Contributor

There was an issue with angular-mocks requiring ngAnimate module - a quick fix was put in place here: 1413328

@matsko matsko deleted the stagger_fix branch January 24, 2014 18:33
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
3 participants