ng-rxjs-take-until-destroy
v3.0.1
Published
A decorator that automatically unsubscribes decorated values on component's 'ngOnDestroy' method's call.
Downloads
84
Readme
TakeUntilDestroy is a decorator for Angular that handles unsubscriptions on component destroy. If you have subscriptions that exist till the component destroy, just define a function or property that returns or is an observable and use this decorator. No triggers, no subscriptions, no 'ngOnDestroy' with just unsubscription purpose.
ng-rxjs-take-until-destroy
A decorator that automatically unsubscribes observables returned by decorated values on Angular component's 'ngOnDestroy' call.
Installation
npm i ng-rxjs-take-until-destroy
Usage
class SomeClass implements OnInit {
@TakeUntilDestroy obs$: BehaviorSubject<number> = new BehaviorSubject(5);
constructor(private serviceA: ServiceA,
private serviceB: ServiceB) {
}
ngOnInit() {
this.getStreamA().subscribe();
this.getStreamB().subscribe();
}
@TakeUntilDestroy
private getStreamA(): Observable<StreamAType> {
return this.serviceA.getStreamA();
}
@TakeUntilDestroy
private getStreamB(): Observable<StreamBType> {
return this.serviceB.getStreamB();
}
}
What's going on under the hood?
The decorator...
- Adds once a trigger which is a Subject.
- Modified decorated function or property calling rxjs' 'takeUntil' function on returned value.
- Adds 'ngOnDestroy' function to the component or extends already existing.
- Performs 'next' and 'complete' on earlier added trigger on 'ngOnDestroy' call.
in fact the above component without 'TakeUntilDestroy' decorator would be looking like
class SomeClass implements OnInit, OnDestroy {
obs$: BehaviorSubject<number> = new BehaviorSubject(5);
private trigger: Subject<any> = new Subject();
constructor(private serviceA: ServiceA,
private serviceB: ServiceB) {
}
ngOnInit() {
this.obs$
.takeUntil(this.trigger)
.subscribe();
this.getStreamA()
.takeUntil(this.trigger)
.subscribe();
this.getStreamB()
.takeUntil(this.trigger)
.subscribe();
}
ngOnDestroy() {
this.trigger.next();
this.trigger.complete();
}
}
Important
Using Angular CLI with AOT compilation, the ngOnDestroy method has to be implemented directly to component (even if it means to make an empty method). Otherwise TakeUntilDestroy
decorator won't be able to create it and modify itself.
class SomeClass implements OnInit {
constructor(private serviceA: ServiceA,
private serviceB: ServiceB) {
}
ngOnInit() {
this.getStreamA().subscribe();
this.getStreamB().subscribe();
}
ngOnDestroy() {}
@TakeUntilDestroy
private getStreamA(): Observable<StreamAType> {
return this.serviceA.getStreamA();
}
}