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

Animation not working with 1.4.x and ui-router: ng-hide-add and ng-hide-remove classes are not generated #12583

Closed
ndaian opened this issue Aug 13, 2015 · 17 comments

Comments

@ndaian
Copy link

ndaian commented Aug 13, 2015

My issue seems similar with #12267, I left a comment there but since that issue is closed, people might not read it.
@matsko worked on that issue.

ng-hide-add and ng-hide-remove classes are not generated. I am not using Material.

Debugging ngAnimate I noticed that all animations are skipped because:

  • function 'areAnimationsAllowed' always returns false because:
    • rootElementDetected is always false because:
      • $rootElement var points to the element before the actual root element:

The element $rootElement points to is a comment and it is inserted by the ui-view directive which is present on the angular root element.
"ui-view" is a directive belonging to https://github.com/angular-ui/ui-router.

When ngAnimate is initialized $rootElement receives the correct value but probably when ui-router inserts its comment right before the angular root element, $rootElement is not updated. So when the animation happens, $rootElement points to instead of

Because 'areAnimationsAllowed' function does not find the angular root element, it retursn false and all animations are skipped.

@matsko
Copy link
Contributor

matsko commented Aug 14, 2015

Is $rootElement always bound to a comment node when ui-router is used? Does this mean that all animations are broken when it is used? Will the comment node be placed as a sibling always to the element that is originally the rootElement?

@matsko
Copy link
Contributor

matsko commented Aug 14, 2015

Look at this example we have an app where the rootElement is on <html>:

https://angular-ui.github.io/ui-router/sample/#/

  1. Right click somewhere on the page and select inspect element.
  2. Goto console and run this angular.element($0).injector().get('$rootElement')

See how it's the HTML element?

How did your code end up being situated to where the view was created? Could you share your some code to show how your app is configured?

@ndaian
Copy link
Author

ndaian commented Aug 14, 2015

I'll try to create a plunker and share it with you

@ndaian
Copy link
Author

ndaian commented Aug 17, 2015

starting to work on plunker, but until I have it I can answer you question: in our code the ng-app directive is not on the html element but on the div element that has the ui-view directive.

@ndaian
Copy link
Author

ndaian commented Aug 17, 2015

Here you have the plunker: http://plnkr.co/edit/uB94enS5J2AgI0fPiePM?p=preview

Put the following two breakpoints in angular-animate.js:

  • breakpoint B1: on line 1939: var activeAnimationsLookup = new $$HashMap();
  • breakpoint B2: on line 2392: var bodyElementDetected = false; (first line in function areAnimationsAllowed(element, parentElement, event))

Refresh the page

  • breakpoint B1 will be hit and in console you can see that $rootElement is "[<div ng-app=​"myapp" ng-controller=​"MainCtrl" ui-view>​…​</div>​]" = correct

Click on the "Test Animation" button

  • breakpoint B2 will be hit and in console you can see that $rootElement is "[<!-- uiView: -->]" = incorrect
  • F8 in Developer Tools to continue and you will see that the animation "sort of" happens
    • "sort of happens" - because the height doesn't start at zero
  • Disable breakpoints in Developer Tools and keep clicking on the "Test Animation" button. you will see that the animation will not happen anymore

This behavior is a bit different than what I see in our app. I our app the animation doesn't happen even when debugging. I think that here it works when debugging because of the plunker environment.

@ndaian
Copy link
Author

ndaian commented Aug 19, 2015

Moving the ui-view directive from the ng-app element to its own element workarounds the ngAnimate issue. The comment is inserted now in front of the

element and
is not affected. The animation works now.

Using this





Instead of this

@tonis2
Copy link

tonis2 commented Aug 21, 2015

@ndaian wait how does the workaround work, i have exactly the same problem, but didnt get it to work.

@mikehuebner
Copy link

Same problem here on angular 1.4.4, any UI View animations just stopped working, pretty sure this is not an ngAnimate issue but a uiRouter issue. We can probably move this to their issues with the same plunk if @Ndian agrees.

@matsko
Copy link
Contributor

matsko commented Aug 25, 2015

@ndaian would you mind testing against these files to see if things work:
http://www.angular-dev.com/raf-fix/angular.js
http://www.angular-dev.com/raf-fix/angular-animate.js

@ageblade
Copy link

I've just had a similar issue however the problem was with the following row:
bodyElementDetected = isMatchingElement(parentElement, $$body);
It is always false because the ui-view directive was assigned to the element and in the angular-animate code the $$body variable is initialized before ui-router populate the view. so it is never equal.

Just want to put it out here for anyone else who might have this problem.

@matsko
Copy link
Contributor

matsko commented Oct 5, 2015

Is this still an issue? In 1.4.7 there was a fix to the $$body service.

@chance-an
Copy link

I am using the latest AngularJS 1.5.0beta + UIRouter 1.4.7. The issue doesn't repro for me.

@matsko
Copy link
Contributor

matsko commented Oct 6, 2015

@ndaian what about you?

@kevinsuh
Copy link

kevinsuh commented Oct 8, 2015

i started having this issue as well. transitions between states are not adding classes from nganimate. any updates on progress?

@Narretz
Copy link
Contributor

Narretz commented Nov 25, 2015

This bug still repros in this plnkr (#12583 (comment)) with the current snapshot.

@pocesar
Copy link
Contributor

pocesar commented Dec 9, 2015

having the same problem, but on ng-switch-when. using 1.4.8

@Narretz
Copy link
Contributor

Narretz commented Dec 11, 2015

I had a look at this and it seems this happens because ngView / uiView are transclude: element directives, which means they replace the element on which they are with a comment node. But I'm not yet sure how the $rootElement value is actually replaced by the comment node.

@Narretz Narretz self-assigned this Dec 11, 2015
Narretz added a commit to Narretz/angular.js that referenced this issue Feb 8, 2016
- Note that bootstrapping on elements with transclusion directives
is dangerous and not recommended.

- group info on limitations, and add them to the guide

Closes angular#11421
Closes angular#13572
Closes angular#12583
Narretz added a commit to Narretz/angular.js that referenced this issue Feb 8, 2016
- Note that bootstrapping on elements with transclusion directives
is dangerous and not recommended.

- group info on limitations, and add them to the guide

Closes angular#11421
Closes angular#13572
Closes angular#12583
Narretz added a commit to Narretz/angular.js that referenced this issue Feb 9, 2016
- Note that bootstrapping on elements with transclusion directives
is dangerous and not recommended.

- group info on limitations, and add them to the guide

Closes angular#11421
Closes angular#13572
Closes angular#12583
@Narretz Narretz closed this as completed in b04871b Feb 9, 2016
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.