Я недавно обновился до Angular 6 и rxjs 6, поскольку после обновления следующий код для динамической установки заголовка страницы больше не работает
ngOnInit(): void {
this.router.events
.filter((event) => event instanceof NavigationEnd)
.map(() => this.activatedRoute)
.map((route) => {
while (route.firstChild) {
route = route.firstChild;
};
return route;
})
.filter((route) => route.outlet === 'primary')
.mergeMap((route) => route.data)
.subscribe((event) => this.titleService.setTitle(event['title']));
};
Это дает мне ошибку
this.router.events.filter is not a function
Я попытался обернуть фильтр в трубу, как
this.router.events
.pipe(filter((event) => event instanceof NavigationEnd))
Но я получаю ошибку
this.router.events.pipe(...).map is not a function
Я импортировал фильтр как
import { filter, mergeMap } from 'rxjs/operators';
Чего мне здесь не хватает?