Install it from npm:
npm install ng2-router-helper
Including RouterHelper Service
import {RouterHelper} from "ng2-router-helper";
@Component({
template: `{{ routerHelper.is('routerName') | async }}`
providers:[RouterHelper]
})
export class TestComponent {
constructor(
private routerHelper: RouterHelper
) {}
this.isPartOfRoute$ = this.routerHelper.is('routerName2')
this.isPartOfRoute$.subscribe(res=>{
console.log(res)
})
}
is(routePath):Observable<boolean>
- Checking if the is the last part of the current URLincludes(routePath):Observable<boolean>
- Checking if the needed part of the URL matches the