-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: introduce module-loader for lazy loading extension modules depe…
…nding on feature toggles (#215)
- Loading branch information
Showing
8 changed files
with
103 additions
and
30 deletions.
There are no files selected for viewing
15 changes: 8 additions & 7 deletions
15
...rc/extension/files/__name@dasherize__/exports/__name@dasherize__-exports.module.__tsext__
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
import { Compiler, Injectable, InjectionToken, Injector, NgModuleFactory } from '@angular/core'; | ||
import { Store, select } from '@ngrx/store'; | ||
|
||
import { getFeatures } from 'ish-core/store/configuration'; | ||
import { FeatureToggleService } from 'ish-core/utils/feature-toggle/feature-toggle.service'; | ||
import { whenTruthy } from 'ish-core/utils/operators'; | ||
|
||
declare interface LazyModuleType { | ||
feature: string; | ||
// tslint:disable-next-line: no-any | ||
location: any; | ||
} | ||
|
||
export const LAZY_FEATURE_MODULE = new InjectionToken<LazyModuleType>('lazyModule'); | ||
|
||
@Injectable({ providedIn: 'root' }) | ||
export class ModuleLoaderService { | ||
private loadedModules: string[] = []; | ||
|
||
constructor( | ||
private compiler: Compiler, | ||
private injector: Injector, | ||
private featureToggleService: FeatureToggleService, | ||
private store: Store<{}> | ||
) {} | ||
|
||
init() { | ||
this.store | ||
.pipe( | ||
select(getFeatures), | ||
whenTruthy() | ||
) | ||
.subscribe(() => { | ||
const lazyModules = this.injector.get<LazyModuleType[]>(LAZY_FEATURE_MODULE, []); | ||
lazyModules | ||
.filter(mod => !this.loadedModules.includes(mod.feature)) | ||
.filter(mod => this.featureToggleService.enabled(mod.feature)) | ||
.forEach(async mod => { | ||
await this.loadModule(mod.location); | ||
this.loadedModules.push(mod.feature); | ||
}); | ||
}); | ||
} | ||
|
||
private async loadModule(loc) { | ||
const loaded = await loc; | ||
Object.keys(loaded) | ||
.filter(key => key.endsWith('Module')) | ||
.forEach(async key => { | ||
const moduleFactory = await this.loadModuleFactory(loaded[key]); | ||
moduleFactory.create(this.injector); | ||
}); | ||
} | ||
|
||
private async loadModuleFactory(t) { | ||
if (t instanceof NgModuleFactory) { | ||
return t; | ||
} else { | ||
return await this.compiler.compileModuleAsync(t); | ||
} | ||
} | ||
} |