bitwarden-estensione-browser/libs/angular/src/components/password-history.component.ts

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

40 lines
1.3 KiB
TypeScript
Raw Normal View History

import { Directive, OnInit } from "@angular/core";
2018-07-30 16:04:20 +02:00
2022-06-14 17:10:53 +02:00
import { CipherService } from "@bitwarden/common/abstractions/cipher.service";
import { I18nService } from "@bitwarden/common/abstractions/i18n.service";
import { PlatformUtilsService } from "@bitwarden/common/abstractions/platformUtils.service";
import { PasswordHistoryView } from "@bitwarden/common/models/view/passwordHistoryView";
2018-07-30 16:04:20 +02:00
@Directive()
2018-07-30 16:04:20 +02:00
export class PasswordHistoryComponent implements OnInit {
cipherId: string;
history: PasswordHistoryView[] = [];
constructor(
protected cipherService: CipherService,
protected platformUtilsService: PlatformUtilsService,
protected i18nService: I18nService,
private win: Window
) {}
2018-07-30 16:04:20 +02:00
async ngOnInit() {
2019-03-06 20:31:32 +01:00
await this.init();
2018-07-30 16:04:20 +02:00
}
copy(password: string) {
2018-08-17 18:24:56 +02:00
const copyOptions = this.win != null ? { window: this.win } : null;
2018-07-30 16:04:20 +02:00
this.platformUtilsService.copyToClipboard(password, copyOptions);
2018-10-03 05:09:19 +02:00
this.platformUtilsService.showToast(
"info",
null,
this.i18nService.t("valueCopied", this.i18nService.t("password"))
);
2018-07-30 16:04:20 +02:00
}
2019-03-06 20:31:32 +01:00
protected async init() {
const cipher = await this.cipherService.get(this.cipherId);
const decCipher = await cipher.decrypt();
this.history = decCipher.passwordHistory == null ? [] : decCipher.passwordHistory;
}
2018-07-30 16:04:20 +02:00
}