2muchcoffeecom / ng2-router-helper

Angular 2 router helper. Allows to get current state name.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Installation

Install it from npm:

npm install ng2-router-helper

Usage

Including

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 URL
  • includes(routePath):Observable<boolean> - Checking if the needed part of the URL matches the

See also

About

Angular 2 router helper. Allows to get current state name.


Languages

Language:TypeScript 100.0%