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

revert: fix($animateCss): remove animation end event listeners on close #13504

Closed

Conversation

IgorMinar
Copy link
Contributor

This reverts commit c98e08f.

This commit was identified as incompatible with ng-material at Google
and is causing broken builds there. Proper fix to be investigated once
the immediate regression is addressed.

Narretz and others added 3 commits December 10, 2015 15:20
Previously, the animate queue would only detect pinned elements when
they were the same element as the to-be-animated element.

Related angular#12617
Closes angular#13466
This reverts commit c98e08f.

This commit was identified as incompatible with ng-material at Google
and is causing broken builds there. Proper fix to be investigated once
the immediate regression is addressed.
@IgorMinar IgorMinar changed the title revert: fix($animateCss): remove animation end event listeners on close DO NOT MERGE: revert: fix($animateCss): remove animation end event listeners on close Dec 11, 2015
@IgorMinar
Copy link
Contributor Author

do not merge anything into 1.4.x branch including this PR.

@IgorMinar
Copy link
Contributor Author

I'll merge this in when we are ready.

@petebacondarwin, @Narretz, @gkalpak please cherry pick the test fix to master and verify why the lint check didn't catch ddescribe during CI.

@gkalpak
Copy link
Member

gkalpak commented Dec 11, 2015

Looking into the ddescribe issue.
There's no ddecribe in master, btw.

@gkalpak
Copy link
Member

gkalpak commented Dec 11, 2015

(Indeed, it was merged without ddecribe in master (6858caf), but with ddescribe in v1.4.x (85e392f)).

For some reason, I can't seem to find any travis jobs for the commits between 20604e7 and 8f0b482 (on master) and between 33cc75e and 1329e0f (on v1.4.x). If I am not missing something, this means that there was no "CI" for the following commits:

master: 6858caf, bc41ad8, 6428ed5
v1.4.x: 7caf913, 0c1b54f, 85e392f, c98e08f (these include the commit that introduced the ddescribe)

The 2 builds on v1.4.x after the missed/skipped commits should have caught the ddescribe error, but they didn't get to run the ci-checks task, because they errored one step before that (on the test:unit task) because of timing-out issues.

Maybe it is related to this Travis issue: https://www.traviscistatus.com/incidents/b3xhcrr7g46d
Note, that there were disconnections due to timeouts (causing test:unit to fail) on both Saucelabs and BrowserStack, which indicate it might indeed be a Travis issue (or so I say 😛).

@gkalpak
Copy link
Member

gkalpak commented Dec 11, 2015

@IgorMinar, by "please cherry pick the test fix to master" I assume you only meant the ddescribe test fix, not the reverted $animateCss tests. If you meant something else, just lmk 😉

@@ -749,11 +747,6 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) {
options.onDone();
}

// Remove the transitionend / animationend listener(s)
if (events) {
element.off(events.join(' '), onAnimationProgress);
Copy link
Member

Choose a reason for hiding this comment

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

Not sure if it is related to the "breakage", but this line can cause trouble if events is an empty array. This is because of how jqLiteOn and jqLiteOff work (I didn't look into jQuery's implementation).

With an empty events array, we will be calling element.on('', onAnimationProgress) and element.off('', onAnimationProgress). Due to how .on() and .off() are implemented, these two calls will result in:

  1. .on(...): Register a listener for the '' (empty string) event (won't ever fire - but that's fine).
  2. .off(...): Deregister all listeners, because: .off('', ...) <==> .off().
    jqLiteOff only check if the event is truthy (and '' isn't) and if not, it thinks it is a no-argument call and deregisters all listeners from the element.

Copy link
Member

Choose a reason for hiding this comment

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

If that is indeed the issue, I think it makes more sense to fix jqLiteOff instead of fixing it here.
BTW, prior to v1.3.0-beta.19, jqLiteOff did the right thing (using isUndefined(type) instead of !type), until someone "optimized" it ™ 😛

Copy link
Member

Choose a reason for hiding this comment

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

DISCLAIMER: I haven't investigated if events can be empty (or if it will always have atleast one entry), but there's a good chance it can, since someone already noticed it: #13502.

@petebacondarwin
Copy link
Contributor

Good work @gkalpak .

@Narretz
Copy link
Contributor

Narretz commented Dec 11, 2015

Thanks @gkalpak. If jquery also removes all events when argument is '' then there's no use in fixing it in jqlite. I'll check.

@gkalpak
Copy link
Member

gkalpak commented Dec 11, 2015

Yes, we needs to verify what jQuery does (but I would be very surprised if they did the same as jqLiteOff).

@Narretz
Copy link
Contributor

Narretz commented Dec 11, 2015

The results are in ... jquery doesn't remove any events if .off is called with empty string. So we need to fix jqlite, I'm gonna do that now. We can of course also make the code in animateCss more explicit. Wdyt?

@petebacondarwin
Copy link
Contributor

@Narretz thanks

@Narretz
Copy link
Contributor

Narretz commented Dec 11, 2015

Scratch that, actually, jQuery also removes all events when called with '', so the fix must go directly into animateCss

@IgorMinar
Copy link
Contributor Author

ok. this is good to be merged now, but there are some commits in the v1.4.x branch that might need to be reverted before we land this PR. commits to revert (in this order): 194ade2, 1329e0f.

I talked to @petebacondarwin about this and either him or I will do this cleanup next week. We are not under time pressure to do this as long as v1.4.x remains frozen.

@Narretz
Copy link
Contributor

Narretz commented Dec 11, 2015

@IgorMinar I have a fix for the animation issue, so it doesn't necessarily have to be reverted. Or is there another reason why we can't just fix it?

@gkalpak
Copy link
Member

gkalpak commented Dec 11, 2015

@IgorMinar, are you sure 194ade2 is the one that needs to be reverted ?

@IgorMinar
Copy link
Contributor Author

yes - the two commits listed are in v1.4.x branch but not in google3. g3
now contains an emergency rollback (revert) of the animation commit in this
PR.

Do not touch v1.4.x - pete or me will do the cleanup next week.

On Fri, Dec 11, 2015 at 10:45 AM Georgios Kalpakas notifications@github.com
wrote:

@IgorMinar https://github.com/IgorMinar, are you sure 194ade2
194ade2
is the one that needs to be reverted ?


Reply to this email directly or view it on GitHub
#13504 (comment).

@IgorMinar IgorMinar changed the title DO NOT MERGE: revert: fix($animateCss): remove animation end event listeners on close revert: fix($animateCss): remove animation end event listeners on close Dec 14, 2015
@IgorMinar
Copy link
Contributor Author

landed as 194ade2...bab3069 (I had to force push to get g3 and github in sync)

@googlebot
Copy link

We found a Contributor License Agreement for you (the sender of this pull request) and all commit authors, but as best as we can tell these commits were authored by someone else. If that's the case, please add them to this pull request and have them confirm that they're okay with these commits being contributed to Google. If we're mistaken and you did author these commits, just reply here to confirm.

@gkalpak
Copy link
Member

gkalpak commented Dec 14, 2015

@IgorMinar, @petebacondarwin, is v1.4.x still "frozen" ?

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants