import { Component } from "@angular/core"; import { ActivatedRoute, Router } from "@angular/router"; import { SetPasswordComponent as BaseSetPasswordComponent } from "@bitwarden/angular/components/set-password.component"; import { ApiService } from "@bitwarden/common/abstractions/api.service"; import { CryptoService } from "@bitwarden/common/abstractions/crypto.service"; import { I18nService } from "@bitwarden/common/abstractions/i18n.service"; import { MessagingService } from "@bitwarden/common/abstractions/messaging.service"; import { PasswordGenerationService } from "@bitwarden/common/abstractions/passwordGeneration.service"; import { PlatformUtilsService } from "@bitwarden/common/abstractions/platformUtils.service"; import { PolicyService } from "@bitwarden/common/abstractions/policy.service"; import { StateService } from "@bitwarden/common/abstractions/state.service"; import { SyncService } from "@bitwarden/common/abstractions/sync.service"; @Component({ selector: "app-set-password", templateUrl: "set-password.component.html", }) export class SetPasswordComponent extends BaseSetPasswordComponent { constructor( apiService: ApiService, i18nService: I18nService, cryptoService: CryptoService, messagingService: MessagingService, stateService: StateService, passwordGenerationService: PasswordGenerationService, platformUtilsService: PlatformUtilsService, policyService: PolicyService, router: Router, syncService: SyncService, route: ActivatedRoute ) { super( i18nService, cryptoService, messagingService, passwordGenerationService, platformUtilsService, policyService, router, apiService, syncService, route, stateService ); } 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; } } }