-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
auditTime(0, animationFrameScheduler) stops emiting unexpectedly. #7096
Comments
Same problem here |
We also have the same problem. In my case it leads to the Angular CDK virtual scroll viewport to not render the necessary elements which would be visible within the current viewport, as scroll events are not processed any longer. |
Yes, I noticed this bug too after seeing cdk virtual scroll (and our other component relying on animationFrameScheduler) being messed up after updating past 7.4 |
I've expanded the example @fdeslandes-wk and included the Have a look here: https://stackblitz.com/edit/angular-zdbuly?file=src%2Fmain.ts |
Hi, I've got the same problem here... |
Same here with 7.8.1 Is there a workaround? |
Describe the bug
Since version 7.5.0, there is a weird interaction between different observables using animationFrameScheduler, especially auditTime(0, animationFrameScheduler), which stops emitting when other observables using the animationFrameScheduler started concludes after the first event is sent to the audit.
This causes problems with Angular CDK virtual scroll viewport which stops working when other things in the application use the animationFrameScheduler on observables which concludes.
It seems related to the same changes which caused #7017.
Expected behavior
Other observables should not have side effects on the animationFrameScheduler Action from auditTime(0, animationFrameScheduler) and auditTime should keep emitting regardless of the recycling of animationFrameScheduler actions.
Reproduction code
Reproduction URL
https://rxjs-afsbug-s5ubbu.stackblitz.io
https://stackblitz.com/edit/rxjs-afsbug-s5ubbu?file=index.ts
Version
7.5.0 - 7.5.7
Environment
Reproduced in Chrome and Firefox. If you cannot reproduce, try throttling CPU in the Chrome DevTools.
Additional context
No response
The text was updated successfully, but these errors were encountered: