Open lincolnthree opened 10 months ago
Thanks for the report. Does using ionViewDidLeave
work for your use case? Your use case describes needing to roll back an action that happens on ionViewWillLeave
. However, if you perform that action in ionViewDidLeave
you remove the need to ever roll the action back because the user confirmed their navigation away from the page.
Hey @liamdebeasi, unfortunately as stated in the description, this is not possible. It technically works but creates a situation for us where the user can momentarily see & interact with elements that need to be gone by the time the animation is started, but need to be restored when he gesture is aborted. We use Angular content portals to project content dynamically and it needs to be in the right place at the right time.
Do you have an example of the elements that you need removed in your application?
Huh, weird timing! I was also just experiencing trouble with the lack of published events for this scenario. Below is my use case:
<video>
element that I portal around the application so that playback is not interrupted. I use react-reverse-portal to accomplish this.ionViewWillEnter
event to "pull" the <video>
element into the correct place.willEnter
/didEnter
/willLeave
/didLeave
do not get called. I don't know if this is a bug (perhaps willEnter
and didEnter
should be re-called if you don't complete the swipe back?), or as per OP, perhaps new ionViewDidNotEnter
and ionViewDidNotLeave
events should be published. Either of these solutions would work for my case.If it helps, I would be happy to create a reproduction. But essentially, there are no Ionic events published to detect the situation where a swipe back does not fully complete.
https://github.com/ionic-team/ionic-framework/assets/2166114/a5c5c27d-c194-4c2d-931f-64e6cd29652f
@aeharding Yes! This is almost exactly our scenario. Thanks for posting! Love the timing :D
Would an IntersectionObserver work for the video use case? Unless the video sticks to the top of the screen as you scroll, I imagine you would want to pause the video when the video scrolls out of the viewport as well. Using IntersectionObserver would let you cover both cases.
Would an IntersectionObserver work for the video use case? Unless the video sticks to the top of the screen as you scroll, I imagine you would want to pause the video when the video scrolls out of the viewport as well. Using IntersectionObserver would let you cover both cases.
I already use Intersection Observer for your mentioned case of play/pause while scrolling feed, but it is not well suited for detecting page navigations in my testing.
There's a few other DevEx reasons (there is a lot of extra code, and I need to use 2x the intersection observers due to reverse portals), but they're not blockers like the above.
Side note, on https://ionicframework.com/docs/angular/lifecycle it says,
ionViewWillLeave
- Can be used for cleanup, like unsubscribing from observables.
But, I don't think this is a good advice due to the original issue. If you were to cleanup observables on ionViewWillLeave
but then you don't actually complete the swipe back, your application on that page would be in a broken state, right?
Furthermore using an Intersection Observer for that introduces other unavoidable edge cases, due to the fact that you cannot discern the difference between page navigation intersections and feed scroll intersections. For example say trigger point = 50% or whatever. If you change pages while the video on the page you're navigating to is 40% scrolled off the feed, it does not fire. Unless you set the intersection observer to fire when 0.00001% of the element is visible, which has the same problem as this original issue (won't fire if you start swiping back, then don't fully swipe back.)
Do you have an example of this issue that I can look at?
Native iOS doesn't have a standard way of detecting when a swipe gesture is cancelled, so it's possible there's another approach here that would solve the problem.
Do you have an example of this issue that I can look at?
I can get you a repro example if it would help, but it may take a bit to set up. :)
Native iOS doesn't have a standard way of detecting when a swipe gesture is cancelled, so it's possible there's another approach here that would solve the problem.
This is interesting that you mentioned, so I decided to look and see what native iOS does. It turns out that native iOS re-triggers lifecycle events when you do not complete a swipe back. Please see the following Youtube video (linking to around 9:30):
https://youtu.be/wLS26PfQeAs?si=ZBBQ_irI444i24gm&t=562
As you can see, when he lifts his finger (and swipe back does not complete), the following lifecycle events in yellow are triggered. This is different than Ionic, which does not trigger any lifecycle events when you cancel the swipe back.
Ah that's interesting. If the will/did events fired when cancelling the swipe gesture would that make it easier to implement the pattern you described above?
Ah that's interesting. If the will/did events fired when cancelling the swipe gesture would that make it easier to implement the pattern you described above?
I can't speak for @lincolnthree, but firing those extra will/did events would fully address my edge case!
Ah that's interesting. If the will/did events fired when cancelling the swipe gesture would that make it easier to implement the pattern you described above?
Yes 100%. Though it would be a potentially breaking change for many apps rather than a new feature. You'd have to review all of your existing event handlers and make sure nothing bad happens if they are called multiple times. That's why I opted to suggest the introduction of a new API rather than overload the existing one, but I can see it going both ways if you want to keep things minimal. It just means apps will break.
Additionally, while it would solve this specific case, there is some nuance to using separate events. E.g. the nature of the event is unknown if you call the same event handlers. You could do some complex state checking I guess, to determine what situation the DidEnter
handler is being called in (e.g.: first time means page loaded, second+ time means page leave started and aborted, but only if WillLeave
was called first).
Thanks! There's some research we need to do as to what the best way of implementing this is. At the very least, the uses cases described here should be achievable within Ionic Framework so we should try and find a resolution.
Thanks! There's some research we need to do as to what the best way of implementing this is. At the very least, the uses cases described here should be achievable within Ionic Framework so we should try and find a resolution.
Awesome! Glad we could help, and looking forward to doing even more fancy things with Ionic :D Do you know of any "secret" hooks / hacks we could tie into in the mean time? Anything we could overload or override?
We do have a private swipeHandler
API that we use in our routing integrations. This lets us know when to call router.back()
or not: https://github.com/ionic-team/ionic-framework/blob/ba4ba6161c1a6c67f7804b07f49c64ac9ad2b14c/core/src/components/router-outlet/router-outlet.tsx#L56
Your mileage may vary here, but that might be a possible workaround for now.
Wondering if any decisions have been made on this? We're still trying to figure out if we should wait, or try to hack in a workaround. Thanks!
Same here. Would be really helpful to have ionViewDidLeave and ionViewDidEnter triggered for the corresponding pages, when the swipe action is aborted, to have a consistent state in the end.
const swipeHandler = (this._navController as any).topOutlet.nativeEl.swipeHandler;
(this._navController as any).topOutlet.nativeEl.swipeHandler = {
canStart: () => {
console.log('canStart');
return swipeHandler.canStart();
},
onStart: () => {
console.log('onStart');
return swipeHandler.onStart();
},
onEnd: (shouldContinue) => {
console.log('onEnd');
return swipeHandler.onEnd(shouldContinue);
},
};
For now we can solve our issues with the help of the swipeHandler. Thank you for the hint @liamdebeasi
Prerequisites
Describe the Feature Request
Currently we have four primary `ionView[Did/Will][Enter/Leave] events to observe during navigation & animation. However, there are scenarios where these events may be fired, but the user cancels the action and stays on the current screen. There does not seem to be a way to detect this scenario, unless I am missing something.
Existing events: https://ionicframework.com/docs/angular/lifecycle
I would like to be able to observe
ionViewDidNotEnter
andionViewDidNotLeave
events (or something to that effect), so that we can understand when users started to leave the page, but did not.Describe the Use Case
On iOS, as an example, a user swipes right to go back to the previous page, then decides to stay on the page they're looking at. However,
ionViewWillLeave
has been called, and the current page has taken some action that needs to be rolled back when the animation finishes. For the sake of this use case, it is not possible to use theionViewDidLeave
event for what the page needs to do.Unless I've missed a feature or event to observe, we need supplemental events to know when this situation occurs.
Describe Preferred Solution
Publish
ionViewDidNotEnter
andionViewDidNotLeave
events to supplement the existing ones we already have.Describe Alternatives
Not sure.
Related Code
No response
Additional Information
No response