i'm trying to create a reusable Modal component. in a ModalService i have a Subject, and a method that that calls next() on the subject. The ModalComponent subscribes to that subject, but whenever the method in the service is being called, the next function of the observer gets triggers twice. Anyone know what causes this?
export class ModalService {
openModal = new Subject();
constructor() { }
open(cmp) {
this.openModal.next(cmp);
}
}
Modal Component:
export class ModalComponent implements OnInit {
component: ComponentRef<any>;
@ViewChild('entry', { read: ViewContainerRef }) entry: ViewContainerRef;
constructor(
private resolver: ComponentFactoryResolver,
private modalService: ModalService
) {}
ngOnInit() {
this.modalService.openModal.subscribe(cmp => {
// CALLD TWICE EVRY TIME THE SERVICE CALLS .next()
console.log(cmp);
});
}
It is not clear in your question where and how
open()
method is called. Is it theopen()
called twice orsubscribe()
triggered twice?But if you want to share the last value with the subscribers you could use
shareReplay()
inpipe()
like this:UPDATE
And in your modal component, you need to
unsubscribe
from the observable when navigating from it. You can do it two ways.First Way:
Second Way:
I prefer the second way mostly. This way, you can unsubscribe more than one observable at once.