1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 06:43:35 +00:00

[Callout] Added Enforced Policy Options UI (#458)

This commit is contained in:
Vincent Salucci
2021-08-20 10:51:11 -05:00
committed by GitHub
parent fe3a387724
commit aa81f8fb96
3 changed files with 47 additions and 20 deletions

View File

@@ -6,6 +6,8 @@ import {
import { I18nService } from 'jslib-common/abstractions/i18n.service';
import { MasterPasswordPolicyOptions } from 'jslib-common/models/domain/masterPasswordPolicyOptions';
@Component({
selector: 'app-callout',
templateUrl: 'callout.component.html',
@@ -15,6 +17,8 @@ export class CalloutComponent implements OnInit {
@Input() icon: string;
@Input() title: string;
@Input() clickable: boolean;
@Input() enforcedPolicyOptions: MasterPasswordPolicyOptions;
@Input() enforcedPolicyMessage: string;
calloutStyle: string;
@@ -23,6 +27,10 @@ export class CalloutComponent implements OnInit {
ngOnInit() {
this.calloutStyle = this.type;
if (this.enforcedPolicyMessage === undefined) {
this.enforcedPolicyMessage = this.i18nService.t('masterPasswordPolicyInEffect');
}
if (this.type === 'warning' || this.type === 'danger') {
if (this.type === 'danger') {
this.calloutStyle = 'danger';
@@ -51,4 +59,24 @@ export class CalloutComponent implements OnInit {
}
}
}
getPasswordScoreAlertDisplay() {
if (this.enforcedPolicyOptions == null) {
return '';
}
let str: string;
switch (this.enforcedPolicyOptions.minComplexity) {
case 4:
str = this.i18nService.t('strong');
break;
case 3:
str = this.i18nService.t('good');
break;
default:
str = this.i18nService.t('weak');
break;
}
return str + ' (' + this.enforcedPolicyOptions.minComplexity + ')';
}
}