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

Fix md-menu animation timeout issues #3899

Closed
wants to merge 1 commit into from
Closed

Fix md-menu animation timeout issues #3899

wants to merge 1 commit into from

Conversation

clshortfuse
Copy link
Contributor

Fixes #3892

@ThomasBurleson
Copy link
Contributor

@clshortfuse - The issue with the animation timeout is a conflict between ngAnimate and ngMaterial's animation solution. We are preparing a complete solution for all ngMaterial animation.

@ThomasBurleson ThomasBurleson added resolution: won't fix There are no resources to fix this issue, the priority is too low, or it doesn't align w/ MD spec. resolution: invalid and removed resolution: won't fix There are no resources to fix this issue, the priority is too low, or it doesn't align w/ MD spec. labels Jul 26, 2015
@clshortfuse
Copy link
Contributor Author

Are you sure this won't fix? I understand you're restructuring the animation system, but right now now md-menu does not work at all on devices that take longer than 370ms to animate (pretty much all mobile devices).

I don't understand how this doesn't fix the issue.

When the timeout expires, it doesn't run the next piece of code because what equates to a single typo. It should call .finally instead of .then as it does with md-select.

Edit: Here's md-select's nearly identical implementation

https://github.com/angular/material/blob/master/src/components/select/select.js#L836

Edit2: Sorry if I'm being a bit pushy, but I was hoping I could have this committed, at least in the interim, so I don't have to keep using a forked version.

@stevenmiles
Copy link

@clshortfuse Interestingly enough, I has been suffering blocking with md-select in 0.10.1-rc2 until it was fixed in 0.10.rc3 171b7ed in the same way as you suggest for md-menu. Now I'm here as md-menu is broken.

@ThomasBurleson Seems you fixed the md-select locking, thank you. I'm guessing the animation solution won't be released in between a release candidate and a release. This would a good short term fix until the animation solution appears, as was the case for the md-select locking issue.

@KReden
Copy link

KReden commented Jul 27, 2015

@ThomasBurleson Is there a time frame for this animation solution? If it is a ways off it might make sense to push a hotfix for this in the meantime, otherwise md-menu is pretty much broken on mobile and slower machines.

@ThomasBurleson ThomasBurleson added this to the 0.10.1-rc4 milestone Jul 28, 2015
@ThomasBurleson ThomasBurleson self-assigned this Jul 28, 2015
@ThomasBurleson ThomasBurleson added pr: merge ready This PR is ready for a caretaker to review needs: review This PR is waiting on review from the team priority: critical and removed resolution: invalid labels Jul 28, 2015
@ThomasBurleson
Copy link
Contributor

@clshortfuse, @KReden, @stevenmiles - here is an interim fix to transitionEnd event timeouts [due to ngAnimate 1.4.x conflicts ]: ce46a9a

Btw, In our code base, using finally() is not a great solution for two (2) reasons:

  • The finally() handler function is not passed the result or error from the promise reject/resolve.
  • The finally() will not allow you to modify the value propagating. So rejections will continue to propagate.

@clshortfuse
Copy link
Contributor Author

Thanks for the other fix! It makes much more sense to never reject. I was aware of the fact finally would have its issues only after, when I learned about the then(successCallback, errorCallback) option.

@ThomasBurleson
Copy link
Contributor

@clshortfuse - 👍 , finally() is a tricky one.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
needs: review This PR is waiting on review from the team pr: merge ready This PR is ready for a caretaker to review
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants