69 lines
2.7 KiB
TypeScript
69 lines
2.7 KiB
TypeScript
|
import { Component } from '@angular/core';
|
||
|
|
||
|
import {
|
||
|
ActivatedRoute,
|
||
|
Router,
|
||
|
} from '@angular/router';
|
||
|
|
||
|
import { ApiService } from 'jslib/abstractions/api.service';
|
||
|
import { CipherService } from 'jslib/abstractions/cipher.service';
|
||
|
import { CryptoService } from 'jslib/abstractions/crypto.service';
|
||
|
import { FolderService } from 'jslib/abstractions/folder.service';
|
||
|
import { I18nService } from 'jslib/abstractions/i18n.service';
|
||
|
import { MessagingService } from 'jslib/abstractions/messaging.service';
|
||
|
import { PasswordGenerationService } from 'jslib/abstractions/passwordGeneration.service';
|
||
|
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
||
|
import { PolicyService } from 'jslib/abstractions/policy.service';
|
||
|
import { SyncService } from 'jslib/abstractions/sync.service';
|
||
|
import { UserService } from 'jslib/abstractions/user.service';
|
||
|
|
||
|
import {
|
||
|
SetPasswordComponent as BaseSetPasswordComponent,
|
||
|
} from 'jslib/angular/components/set-password.component';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-set-password',
|
||
|
templateUrl: 'set-password.component.html',
|
||
|
})
|
||
|
export class SetPasswordComponent extends BaseSetPasswordComponent {
|
||
|
constructor(apiService: ApiService, i18nService: I18nService,
|
||
|
cryptoService: CryptoService, messagingService: MessagingService,
|
||
|
userService: UserService, passwordGenerationService: PasswordGenerationService,
|
||
|
platformUtilsService: PlatformUtilsService, folderService: FolderService,
|
||
|
cipherService: CipherService, syncService: SyncService,
|
||
|
policyService: PolicyService, router: Router, route: ActivatedRoute) {
|
||
|
super(apiService, i18nService, cryptoService, messagingService, userService, passwordGenerationService,
|
||
|
platformUtilsService, folderService, cipherService, syncService, policyService, router, route);
|
||
|
}
|
||
|
|
||
|
get masterPasswordScoreWidth() {
|
||
|
return this.masterPasswordScore == null ? 0 : (this.masterPasswordScore + 1) * 20;
|
||
|
}
|
||
|
|
||
|
get masterPasswordScoreColor() {
|
||
|
switch (this.masterPasswordScore) {
|
||
|
case 4:
|
||
|
return 'success';
|
||
|
case 3:
|
||
|
return 'primary';
|
||
|
case 2:
|
||
|
return 'warning';
|
||
|
default:
|
||
|
return 'danger';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
get masterPasswordScoreText() {
|
||
|
switch (this.masterPasswordScore) {
|
||
|
case 4:
|
||
|
return this.i18nService.t('strong');
|
||
|
case 3:
|
||
|
return this.i18nService.t('good');
|
||
|
case 2:
|
||
|
return this.i18nService.t('weak');
|
||
|
default:
|
||
|
return this.masterPasswordScore != null ? this.i18nService.t('weak') : null;
|
||
|
}
|
||
|
}
|
||
|
}
|