mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-22 16:29:09 +01:00
[PM-14468] - add feature flag for critical apps (#11871)
* rename acess intelligence to risk insights * keep branch name * replace all instances of AccessIntelligence. strip raw data + members to just the table * revert change to feature flag name * add feature flag for critical apps * change flag name * Update libs/common/src/enums/feature-flag.enum.ts Co-authored-by: Daniel James Smith <2670567+djsmith85@users.noreply.github.com> --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com> Co-authored-by: Daniel James Smith <2670567+djsmith85@users.noreply.github.com>
This commit is contained in:
parent
b4428160ca
commit
d69642e7a0
@ -57,6 +57,7 @@
|
|||||||
type="button"
|
type="button"
|
||||||
buttonType="secondary"
|
buttonType="secondary"
|
||||||
bitButton
|
bitButton
|
||||||
|
*ngIf="isCritialAppsFeatureEnabled"
|
||||||
[disabled]="!selectedIds.size"
|
[disabled]="!selectedIds.size"
|
||||||
[loading]="markingAsCritical"
|
[loading]="markingAsCritical"
|
||||||
(click)="markAppsAsCritical()"
|
(click)="markAppsAsCritical()"
|
||||||
@ -68,7 +69,7 @@
|
|||||||
<bit-table [dataSource]="dataSource">
|
<bit-table [dataSource]="dataSource">
|
||||||
<ng-container header>
|
<ng-container header>
|
||||||
<tr>
|
<tr>
|
||||||
<th></th>
|
<th *ngIf="isCritialAppsFeatureEnabled"></th>
|
||||||
<th bitSortable="name" bitCell>{{ "application" | i18n }}</th>
|
<th bitSortable="name" bitCell>{{ "application" | i18n }}</th>
|
||||||
<th bitSortable="atRiskPasswords" bitCell>{{ "atRiskPasswords" | i18n }}</th>
|
<th bitSortable="atRiskPasswords" bitCell>{{ "atRiskPasswords" | i18n }}</th>
|
||||||
<th bitSortable="totalPasswords" bitCell>{{ "totalPasswords" | i18n }}</th>
|
<th bitSortable="totalPasswords" bitCell>{{ "totalPasswords" | i18n }}</th>
|
||||||
@ -78,7 +79,7 @@
|
|||||||
</ng-container>
|
</ng-container>
|
||||||
<ng-template body let-rows$>
|
<ng-template body let-rows$>
|
||||||
<tr bitRow *ngFor="let r of rows$ | async; trackBy: trackByFunction">
|
<tr bitRow *ngFor="let r of rows$ | async; trackBy: trackByFunction">
|
||||||
<td>
|
<td *ngIf="isCritialAppsFeatureEnabled">
|
||||||
<input
|
<input
|
||||||
bitCheckbox
|
bitCheckbox
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
|
@ -7,6 +7,8 @@ import { debounceTime, firstValueFrom, map } from "rxjs";
|
|||||||
import { AuditService } from "@bitwarden/common/abstractions/audit.service";
|
import { AuditService } from "@bitwarden/common/abstractions/audit.service";
|
||||||
import { OrganizationService } from "@bitwarden/common/admin-console/abstractions/organization/organization.service.abstraction";
|
import { OrganizationService } from "@bitwarden/common/admin-console/abstractions/organization/organization.service.abstraction";
|
||||||
import { Organization } from "@bitwarden/common/admin-console/models/domain/organization";
|
import { Organization } from "@bitwarden/common/admin-console/models/domain/organization";
|
||||||
|
import { FeatureFlag } from "@bitwarden/common/enums/feature-flag.enum";
|
||||||
|
import { ConfigService } from "@bitwarden/common/platform/abstractions/config/config.service";
|
||||||
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
|
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
|
||||||
import { PasswordStrengthServiceAbstraction } from "@bitwarden/common/tools/password-strength";
|
import { PasswordStrengthServiceAbstraction } from "@bitwarden/common/tools/password-strength";
|
||||||
import { CipherService } from "@bitwarden/common/vault/abstractions/cipher.service";
|
import { CipherService } from "@bitwarden/common/vault/abstractions/cipher.service";
|
||||||
@ -41,6 +43,7 @@ export class AllApplicationsComponent implements OnInit {
|
|||||||
protected organization: Organization;
|
protected organization: Organization;
|
||||||
noItemsIcon = Icons.Security;
|
noItemsIcon = Icons.Security;
|
||||||
protected markingAsCritical = false;
|
protected markingAsCritical = false;
|
||||||
|
isCritialAppsFeatureEnabled = false;
|
||||||
|
|
||||||
// MOCK DATA
|
// MOCK DATA
|
||||||
protected mockData = applicationTableMockData;
|
protected mockData = applicationTableMockData;
|
||||||
@ -49,7 +52,7 @@ export class AllApplicationsComponent implements OnInit {
|
|||||||
protected mockTotalMembersCount = 0;
|
protected mockTotalMembersCount = 0;
|
||||||
protected mockTotalAppsCount = 0;
|
protected mockTotalAppsCount = 0;
|
||||||
|
|
||||||
ngOnInit() {
|
async ngOnInit() {
|
||||||
this.activatedRoute.paramMap
|
this.activatedRoute.paramMap
|
||||||
.pipe(
|
.pipe(
|
||||||
takeUntilDestroyed(this.destroyRef),
|
takeUntilDestroyed(this.destroyRef),
|
||||||
@ -60,6 +63,10 @@ export class AllApplicationsComponent implements OnInit {
|
|||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
.subscribe();
|
.subscribe();
|
||||||
|
|
||||||
|
this.isCritialAppsFeatureEnabled = await this.configService.getFeatureFlag(
|
||||||
|
FeatureFlag.CriticalApps,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
@ -70,6 +77,7 @@ export class AllApplicationsComponent implements OnInit {
|
|||||||
protected activatedRoute: ActivatedRoute,
|
protected activatedRoute: ActivatedRoute,
|
||||||
protected toastService: ToastService,
|
protected toastService: ToastService,
|
||||||
protected organizationService: OrganizationService,
|
protected organizationService: OrganizationService,
|
||||||
|
protected configService: ConfigService,
|
||||||
) {
|
) {
|
||||||
this.dataSource.data = applicationTableMockData;
|
this.dataSource.data = applicationTableMockData;
|
||||||
this.searchControl.valueChanges
|
this.searchControl.valueChanges
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<bit-tab label="{{ 'allApplicationsWithCount' | i18n: apps.length }}">
|
<bit-tab label="{{ 'allApplicationsWithCount' | i18n: apps.length }}">
|
||||||
<tools-all-applications></tools-all-applications>
|
<tools-all-applications></tools-all-applications>
|
||||||
</bit-tab>
|
</bit-tab>
|
||||||
<bit-tab>
|
<bit-tab *ngIf="isCritialAppsFeatureEnabled">
|
||||||
<ng-template bitTabLabel>
|
<ng-template bitTabLabel>
|
||||||
<i class="bwi bwi-star"></i>
|
<i class="bwi bwi-star"></i>
|
||||||
{{ "criticalApplicationsWithCount" | i18n: criticalApps.length }}
|
{{ "criticalApplicationsWithCount" | i18n: criticalApps.length }}
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
import { CommonModule } from "@angular/common";
|
import { CommonModule } from "@angular/common";
|
||||||
import { Component } from "@angular/core";
|
import { Component, OnInit } from "@angular/core";
|
||||||
import { takeUntilDestroyed } from "@angular/core/rxjs-interop";
|
import { takeUntilDestroyed } from "@angular/core/rxjs-interop";
|
||||||
import { ActivatedRoute, Router } from "@angular/router";
|
import { ActivatedRoute, Router } from "@angular/router";
|
||||||
|
|
||||||
import { JslibModule } from "@bitwarden/angular/jslib.module";
|
import { JslibModule } from "@bitwarden/angular/jslib.module";
|
||||||
|
import { FeatureFlag } from "@bitwarden/common/enums/feature-flag.enum";
|
||||||
|
import { ConfigService } from "@bitwarden/common/platform/abstractions/config/config.service";
|
||||||
import { AsyncActionsModule, ButtonModule, TabsModule } from "@bitwarden/components";
|
import { AsyncActionsModule, ButtonModule, TabsModule } from "@bitwarden/components";
|
||||||
|
|
||||||
import { HeaderModule } from "../../layouts/header/header.module";
|
import { HeaderModule } from "../../layouts/header/header.module";
|
||||||
@ -39,9 +41,10 @@ export enum RiskInsightsTabType {
|
|||||||
TabsModule,
|
TabsModule,
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
export class RiskInsightsComponent {
|
export class RiskInsightsComponent implements OnInit {
|
||||||
tabIndex: RiskInsightsTabType;
|
tabIndex: RiskInsightsTabType;
|
||||||
dataLastUpdated = new Date();
|
dataLastUpdated = new Date();
|
||||||
|
isCritialAppsFeatureEnabled = false;
|
||||||
|
|
||||||
apps: any[] = [];
|
apps: any[] = [];
|
||||||
criticalApps: any[] = [];
|
criticalApps: any[] = [];
|
||||||
@ -65,9 +68,16 @@ export class RiskInsightsComponent {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
async ngOnInit() {
|
||||||
|
this.isCritialAppsFeatureEnabled = await this.configService.getFeatureFlag(
|
||||||
|
FeatureFlag.CriticalApps,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
protected route: ActivatedRoute,
|
protected route: ActivatedRoute,
|
||||||
private router: Router,
|
private router: Router,
|
||||||
|
private configService: ConfigService,
|
||||||
) {
|
) {
|
||||||
route.queryParams.pipe(takeUntilDestroyed()).subscribe(({ tabIndex }) => {
|
route.queryParams.pipe(takeUntilDestroyed()).subscribe(({ tabIndex }) => {
|
||||||
this.tabIndex = !isNaN(tabIndex) ? tabIndex : RiskInsightsTabType.AllApps;
|
this.tabIndex = !isNaN(tabIndex) ? tabIndex : RiskInsightsTabType.AllApps;
|
||||||
|
@ -35,6 +35,7 @@ export enum FeatureFlag {
|
|||||||
AccessIntelligence = "pm-13227-access-intelligence",
|
AccessIntelligence = "pm-13227-access-intelligence",
|
||||||
Pm13322AddPolicyDefinitions = "pm-13322-add-policy-definitions",
|
Pm13322AddPolicyDefinitions = "pm-13322-add-policy-definitions",
|
||||||
LimitCollectionCreationDeletionSplit = "pm-10863-limit-collection-creation-deletion-split",
|
LimitCollectionCreationDeletionSplit = "pm-10863-limit-collection-creation-deletion-split",
|
||||||
|
CriticalApps = "pm-14466-risk-insights-critical-application",
|
||||||
}
|
}
|
||||||
|
|
||||||
export type AllowedFeatureFlagTypes = boolean | number | string;
|
export type AllowedFeatureFlagTypes = boolean | number | string;
|
||||||
@ -80,6 +81,7 @@ export const DefaultFeatureFlagValue = {
|
|||||||
[FeatureFlag.AccessIntelligence]: FALSE,
|
[FeatureFlag.AccessIntelligence]: FALSE,
|
||||||
[FeatureFlag.Pm13322AddPolicyDefinitions]: FALSE,
|
[FeatureFlag.Pm13322AddPolicyDefinitions]: FALSE,
|
||||||
[FeatureFlag.LimitCollectionCreationDeletionSplit]: FALSE,
|
[FeatureFlag.LimitCollectionCreationDeletionSplit]: FALSE,
|
||||||
|
[FeatureFlag.CriticalApps]: FALSE,
|
||||||
} satisfies Record<FeatureFlag, AllowedFeatureFlagTypes>;
|
} satisfies Record<FeatureFlag, AllowedFeatureFlagTypes>;
|
||||||
|
|
||||||
export type DefaultFeatureFlagValueType = typeof DefaultFeatureFlagValue;
|
export type DefaultFeatureFlagValueType = typeof DefaultFeatureFlagValue;
|
||||||
|
Loading…
Reference in New Issue
Block a user