All Projects → 2muchcoffeecom → ng2-router-helper

2muchcoffeecom / ng2-router-helper

Licence: other
Angular 2 router helper. Allows to get current state name.

Programming Languages

typescript
32286 projects

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].