1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00

password history component

This commit is contained in:
Kyle Spearrin
2018-07-30 10:04:20 -04:00
parent 0b29dc10bf
commit c0f6fa2db1
2 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
import { ToasterService } from 'angular2-toaster';
import { Angulartics2 } from 'angulartics2';
import { OnInit } from '@angular/core';
import { CipherService } from '../../abstractions/cipher.service';
import { I18nService } from '../../abstractions/i18n.service';
import { PlatformUtilsService } from '../../abstractions/platformUtils.service';
import { PasswordHistoryView } from '../../models/view/passwordHistoryView';
export class PasswordHistoryComponent implements OnInit {
cipherId: string;
history: PasswordHistoryView[] = [];
constructor(protected cipherService: CipherService, protected analytics: Angulartics2,
protected platformUtilsService: PlatformUtilsService, protected i18nService: I18nService,
protected toasterService: ToasterService, private win: Window) { }
async ngOnInit() {
const cipher = await this.cipherService.get(this.cipherId);
const decCipher = await cipher.decrypt();
this.history = decCipher.passwordHistory == null ? [] : decCipher.passwordHistory;
}
copy(password: string) {
this.analytics.eventTrack.next({ action: 'Copied Password History' });
const copyOptions = this.win != null ? { doc: this.win.document } : null;
this.platformUtilsService.copyToClipboard(password, copyOptions);
this.toasterService.popAsync('info', null, this.i18nService.t('valueCopied', this.i18nService.t('password')));
}
}