bitwarden-estensione-browser/apps/browser/src/popup/vault/password-history.component.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.3 KiB
TypeScript
Raw Normal View History

2018-07-30 16:54:38 +02:00
import { Location } from "@angular/common";
import { Component } from "@angular/core";
import { ActivatedRoute } from "@angular/router";
import { first } from "rxjs/operators";
2022-06-14 17:10:53 +02:00
import { PasswordHistoryComponent as BasePasswordHistoryComponent } from "@bitwarden/angular/components/password-history.component";
import { CipherService } from "@bitwarden/common/abstractions/cipher.service";
import { I18nService } from "@bitwarden/common/abstractions/i18n.service";
import { PlatformUtilsService } from "@bitwarden/common/abstractions/platformUtils.service";
2018-07-30 16:54:38 +02:00
@Component({
selector: "app-password-history",
templateUrl: "password-history.component.html",
})
export class PasswordHistoryComponent extends BasePasswordHistoryComponent {
constructor(
cipherService: CipherService,
platformUtilsService: PlatformUtilsService,
i18nService: I18nService,
private location: Location,
private route: ActivatedRoute
) {
super(cipherService, platformUtilsService, i18nService, window);
2018-07-30 16:54:38 +02:00
}
async ngOnInit() {
this.route.queryParams.pipe(first()).subscribe(async (params) => {
2018-07-30 16:54:38 +02:00
if (params.cipherId) {
this.cipherId = params.cipherId;
} else {
this.close();
}
2019-03-06 20:31:50 +01:00
await this.init();
2018-07-30 16:54:38 +02:00
});
}
close() {
this.location.back();
}
}