In the past when working with modals, I've come across a pattern that returns a ModalRef object that has a promise on it that is resolved or rejected when the modal is closed or dismissed.
Looking at the documentation for the BsModalRef in Ngx-Bootstrap, there does not appear to be any way to track whether that modal reference has been closed or dismissed.
Instead they seem to recommend subscribing to an onHidden()
event on the BsModalService. Unfortunately this doesn't work for me, as it will fire the event when any modal is hidden. I only want to react to a specific modal instance being hidden.
Is there any way for me to do this?
I've considered using Rxjs' take()
operator to only take the first event fired after subscribing to the onHidden
Observable, but this feels a bit hacky.
const modalRef = modalService.show(RedirectToHomeModalComponent);
const returnHome = () => console.log('Returning home');
this.bsModalService.onHidden.pipe(take(1), returnHome);
Maybe you can subscribe any Eventmitter from content of your modal.
on modal.component.ts
on parent.component.ts