I have a project that is Ionic Vue 6, and I’m using the composition API.
In this project I have an Ion-Nav component that shows various different views in its hierarchy. I am able to add an event listener to the ion-nav component directly:
However I’d like to be able to listen for these events from within the views themselves. I get a reference to the nav from within these views that allows me to call push() and pop() methods on the nav:
const nav = document.querySelector("#nav");
nav.push(AnotherView, {id:1, text: "hello world});
I can’t seem to be able to add an event listener though. The following doesn’t work.
nav.addEventListener("ionNavDidChange", ()=>{
//Do something here
})
Am I going about this in completely the wrong way?
Almost works @aaronksaunders, but there doesn’t seem to be a way to get the type of the active view from the ion-nav. So I’ve set up tiny-emitter as below:
That’s the source of my issue - there isn’t a lifecycle event that occurs on a component when it is becomes top of the navigation stack, except OnMounted which is called the first time the view is pushed to the stack.
For example, if I navigate between components A, B, C and D as follows, I want to listen for whenever component C is at the top of the stack, not just the first time it is mounted.
A
A > B
A > B > C <---notification
A > B > C > D
A > B > C <---notification
A > B
A > B > C <---notification
You’re a legend. As it turns out your initial suggestion would have worked if I’d had my components named. Implemented now with tiny-emitter and it works like a dream, thanks so much for your (extremely quick) help.