Hi I am using Angular 2 final with router 3.0. I want to filter the events that are emitted from this.router.events
What I want to do :
There are several possible fixes for this scenario.
Pipeable operators are meant to be a better approach for pulling in just the operators you need than the "patch" operators found in rxjs/add/operator/*
import { filter } from 'rxjs/operators';
// ..
this.router.events.pipe(
filter((event:Event) => event instanceof NavigationEnd)
).subscribe(x => console.log(x))
Change the import statement to import 'rxjs/add/operator/filter'
. This will modify Observable.prototype
and add filter
method to an every instance of the Observable class.
There are two consequences:
filter()
method will magically appear under Observable
while using the library)The statement import 'rxjs/operator/filter'
is perfectly valid. It will import just the operator. This approach will not mess with the Observable.prototype
. On downside it will make it more difficult to chain several operators.
import 'rxjs/operator/filter'; // This is valid import statement.
// It will import the operator without
// modifying Observable prototype
// ..
// Change how the operator is called
filter.call(
this.router.events,
(event:Event) => event instanceof NavigationEnd
).subscribe(x => console.log(x));
More details: Pipeable Operators