Skip to content

A collection of directives and services to facilitate the dynamic loading of Angular components.

Notifications You must be signed in to change notification settings

jamesbrobb/ngx-dynamic-component-loader

Repository files navigation

Ngx Dynamic Component Loader

A collection of directives and services to facilitate the dynamic loading of Angular components.


To use the component loader directive do the following:

  1. Provide a value for the ComponentLoaderMapService injection token
  2. Provide the ComponentLoaderService in the root of your application
  3. Add either the componentLoader or componentLoaderIO directive

export type ComponentLoaderMap = {
  [selectorOrName: string]: ComponentImportFunc | ComponentLoaderConfig
}

export type ComponentImportFunc = () => Promise<any>

export type ComponentLoaderConfig = {
  componentName?: string
  ngModuleName?: string
  import: ComponentImportFunc
}

The default values for each ComponentLoaderConfig are as follows:

const map: ComponentLoaderMap = {
  'my-component': {
    componentName: `${selectorOrName}Component`,
    ngModuleName: `${selectorOrName}ModuleComponent`
  }
}

Steps:

  1. The supplied import function is called
  2. If successful a Module namespace object is loaded
  3. The value of componentName is used to retrieve the component type from the Module namespace object
  4. The value of ngModuleName is used to retrieve the ngModule type from the Module namespace object

1.

Provide a value for the ComponentLoaderMapService injection token

Define a ContentLoaderMap for the ComponentLoaderMapService provider.

The map defines a key value pair for each component with a value of type ComponentLoaderConfig.

[{
  provide: ComponentLoaderMapService,
  useValue: {
    /*  
        Loads either:
          - A component of class MyStandaloneComponent
        Or
          - A SCAM pattern with ngModule class MyStandaloneComponentModule and component of class MyStandaloneComponent
     */
    'my-standalone': import('./path/to/my-standalone.component'),
    /*
        If a different key name to the component class name is required, the component name can be explicitly defined.
     */
    'some-other-component': {
      import:() => import('./path/to/my-actual.component'),
      componentName: 'MyActualComponent'
    },
    /*
        For non standalone components that do not follow the SCAM pattern
        an explicit module name can be defined.
     */
    'non-scam-non-standalone-component': {
      import:() => import('./path/to/non-scam-non-standalone.component'),
      ngModuleName: 'SomeOtherModule'
    },
    /*
      If the component is a default export
     */
    'component-is-default-export': {
      import:() => import('./path/to/component'),
      componentName: 'default'
    },
    /*
      If the ngModule is the default export
     */
    'ng-module-is-default-export': {
      import:() => import('./path/to/none-standalone-component'),
      ngModuleName: 'default'
    },
  },
  multi: true
}]

2.

Provide the ComponentLoaderService in the root of your application

[{
  provide: ComponentLoaderService,
    useFactory: (inj: Injector, map: ComponentLoaderMap) => {
    return new ComponentLoaderService(inj, map);
  },
    deps: [
    Injector,
    ComponentLoaderMapService
  ]
}]

3.

Add either the componentLoader or componentLoaderIO directive on an ng-container within your markup and add the directive to your imports metadata

To use the standard component loader directive:

<ng-container componentLoader="{{componentKeyToLoad}}"></ng-container>

or the component loader IO directive:

<ng-container componentLoaderIO="{{componentKeyToLoad}}" [inputs]="inputsObject"></ng-container>

Where inputsObject is an object containing key value pairs where the key matches the name of the input and the value equals the input value type.

About

A collection of directives and services to facilitate the dynamic loading of Angular components.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published