Se should add a
private ngUnsubscribe: Subject = new Subject();
field to all components that have .subscribe()
calls to Observable
s within their class code.
We then call
this.ngUnsubscribe.next();
this.ngUnsubscribe.complete();
in our ngOnDestroy()
methods.