Integration of Incognitus into your Angular application is done in 2 setps.
A section named featureFlag
must be added to your enviroment.ts
file.
featureFlag: {
tenantId: 'abc1234',
applicationId: 'foobar'
}
Key | Description |
---|---|
tenantId | Your tenant id |
applicationId | The id of the application |
Import the DarkLumosFeatureFlagsModule
and provide the FeatureFlagConfig
imports: [
...
DarkLumosFeatureFlagModule
],
providers: [
...
{ provide: FeatureFlagConfig, useValue: <FeaturFlagConfig>environment.featureFlag }
]
Feature flags can be used to section off a chuck of template. To do this just add the *ngFeatureFlag
attribute, with the value of your feature flag name in single quotes, to the element you would like to feature flag. You can also set the feature flag to hide an element when the feature flag is on by adding ; Hidden: true
to the attribute's value.
Below are a few examples.
<div *ngFeatureFlag="'Fizzbuzz'">
<span>Fizzbuzz shown when enabled</span>
</div>
<div *ngFeatureFlag="'Foobar'; Hidden: true">
<span>Foobar hidden if enabled</span>
</div>
Currently all known feature flags are cached when the app initializes. New features that are not found in the cache are retrieved on-demand. The cache stays in place until the app is reloaded.
- Save verified cache to local storage
- Provide hard cache refresh (wipe cache if fails)
- Provide soft cache refresh (keep cache if fails)
- Customizable cache refresh times
- Option to disable cache