mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
82 lines
3.3 KiB
TypeScript
82 lines
3.3 KiB
TypeScript
import { Component, NgZone } from "@angular/core";
|
|
import { ActivatedRoute, Router } from "@angular/router";
|
|
|
|
import { LockComponent as BaseLockComponent } from "@bitwarden/angular/auth/components/lock.component";
|
|
import { DialogServiceAbstraction } from "@bitwarden/angular/services/dialog";
|
|
import { ApiService } from "@bitwarden/common/abstractions/api.service";
|
|
import { VaultTimeoutService } from "@bitwarden/common/abstractions/vaultTimeout/vaultTimeout.service";
|
|
import { VaultTimeoutSettingsService } from "@bitwarden/common/abstractions/vaultTimeout/vaultTimeoutSettings.service";
|
|
import { PolicyApiServiceAbstraction } from "@bitwarden/common/admin-console/abstractions/policy/policy-api.service.abstraction";
|
|
import { InternalPolicyService } from "@bitwarden/common/admin-console/abstractions/policy/policy.service.abstraction";
|
|
import { KeyConnectorService } from "@bitwarden/common/auth/abstractions/key-connector.service";
|
|
import { CryptoService } from "@bitwarden/common/platform/abstractions/crypto.service";
|
|
import { EnvironmentService } from "@bitwarden/common/platform/abstractions/environment.service";
|
|
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
|
|
import { LogService } from "@bitwarden/common/platform/abstractions/log.service";
|
|
import { MessagingService } from "@bitwarden/common/platform/abstractions/messaging.service";
|
|
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
|
|
import { StateService } from "@bitwarden/common/platform/abstractions/state.service";
|
|
import { PasswordStrengthServiceAbstraction } from "@bitwarden/common/tools/password-strength";
|
|
|
|
import { RouterService } from "../core";
|
|
|
|
@Component({
|
|
selector: "app-lock",
|
|
templateUrl: "lock.component.html",
|
|
})
|
|
export class LockComponent extends BaseLockComponent {
|
|
constructor(
|
|
router: Router,
|
|
i18nService: I18nService,
|
|
platformUtilsService: PlatformUtilsService,
|
|
messagingService: MessagingService,
|
|
cryptoService: CryptoService,
|
|
vaultTimeoutService: VaultTimeoutService,
|
|
vaultTimeoutSettingsService: VaultTimeoutSettingsService,
|
|
environmentService: EnvironmentService,
|
|
private routerService: RouterService,
|
|
stateService: StateService,
|
|
apiService: ApiService,
|
|
logService: LogService,
|
|
keyConnectorService: KeyConnectorService,
|
|
ngZone: NgZone,
|
|
policyApiService: PolicyApiServiceAbstraction,
|
|
policyService: InternalPolicyService,
|
|
passwordStrengthService: PasswordStrengthServiceAbstraction,
|
|
dialogService: DialogServiceAbstraction,
|
|
route: ActivatedRoute
|
|
) {
|
|
super(
|
|
router,
|
|
i18nService,
|
|
platformUtilsService,
|
|
messagingService,
|
|
cryptoService,
|
|
vaultTimeoutService,
|
|
vaultTimeoutSettingsService,
|
|
environmentService,
|
|
stateService,
|
|
apiService,
|
|
logService,
|
|
keyConnectorService,
|
|
ngZone,
|
|
policyApiService,
|
|
policyService,
|
|
passwordStrengthService,
|
|
dialogService,
|
|
route
|
|
);
|
|
}
|
|
|
|
async ngOnInit() {
|
|
await super.ngOnInit();
|
|
this.onSuccessfulSubmit = async () => {
|
|
const previousUrl = this.routerService.getPreviousUrl();
|
|
if (previousUrl && previousUrl !== "/" && previousUrl.indexOf("lock") === -1) {
|
|
this.successRoute = previousUrl;
|
|
}
|
|
this.router.navigateByUrl(this.successRoute);
|
|
};
|
|
}
|
|
}
|