@jdrks/ngx-deep-linking
TypeScript icon, indicating that this package has built-in type declarations

1.0.8 • Public • Published

🚀 ngx-deep-linking

A library for automatic synchronization of angular component fields with url path and query params.

Commitizen friendly

Why?

  • Easily synchronize your component fields with the url by simple route configuration
  • Type safe configuration
  • Supports synchronizing fields of type number, string and even complex types as json
  • Supports lazy loading for Angular modules
  • Supports hash routing strategy

Demo

Demo booklist

Or view live demo on github pages

Demo form

How to use

  1. Install
  • with npm npm i @jdrks/ngx-deep-linking
  • with yarn yarn add @jdrks/ngx-deep-linking
  1. Import NgxDeepLinkingModule into your module

    import {NgxDeepLinkingModule} from '@jdrks/ngx-deep-linking';
    
    @NgModule({
       declarations: [AppComponent, BookListComponent, BookContentComponent],
       imports: [
         ...
         NgxDeepLinkingModule,
         RouterModule.forRoot(routes),
         ...
       ],
       bootstrap: [AppComponent],
    })
    export class AppModule {
    }
  2. And add configuration to your routes (You can use the provided interface DeepLinkingRoute)

  • Add the DeepLinkingWrapperComponent in the component field

  • Add the component that should be rendered in the wrappedComponent field

  • Add the names of all component fields that should be synced with the url in the deepLinking.params or deepLinking.queryParams fields. (In this example the selectedBookId will be synced with the corresponding path parameter. The searchString will be added as url search parameter of the same name once it has a value)

  • You can provide string(type: 'string') fields, number fields(type: 'number') and also fields that contain complex objects (type: 'json').

    import {
      DeepLinkingRoute,
      DeepLinkingWrapperComponent,
    } from '@jdrks/ngx-deep-linking';
    
    const routes: DeepLinkingRoute[] = [
      {
        path: 'books/:selectedBookId',
        component: DeepLinkingWrapperComponent,
        wrappedComponent: BookListComponent,
        deepLinking: {
          params: [{ name: 'selectedBookId', type: 'number' }],
          queryParams: [{ name: 'searchString', type: 'string' }],
        },
      },
    ];
  1. Your component
  • needs to have Input() field declarations with the same name as the provided param/queryParam that should be automatically adjusted on url changes

  • may have Output() declarations to adjust the url on changes inside the component (The output field name follows the naming convention for Angular's two way data binding and appends 'Change' to the outputs)

    export class BookListComponent {
      @Input()
      private selectedBookId: number;
    
      @Output()
      private selectedBookIdChange: EventEmitter<number> = new EventEmitter<number>();
    
      @Input()
      private searchString: string;
    
      @Output()
      private searchStringChange: EventEmitter<string> = new EventEmitter<string>();
    }

Package Sidebar

Install

npm i @jdrks/ngx-deep-linking

Weekly Downloads

226

Version

1.0.8

License

MIT

Unpacked Size

99.5 kB

Total Files

18

Last publish

Collaborators

  • jdrks