1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 23:03:32 +00:00

viewHistory event moved to desktop

This commit is contained in:
Kyle Spearrin
2018-07-30 11:00:06 -04:00
parent 1fc1768d58
commit cbf66d16b8
2 changed files with 12 additions and 1 deletions

2
jslib

Submodule jslib updated: b21cb789da...557b2fc3f0

View File

@@ -1,6 +1,8 @@
import { import {
Component, Component,
EventEmitter,
OnChanges, OnChanges,
Output,
} from '@angular/core'; } from '@angular/core';
import { ToasterService } from 'angular2-toaster'; import { ToasterService } from 'angular2-toaster';
@@ -16,11 +18,15 @@ import { TotpService } from 'jslib/abstractions/totp.service';
import { ViewComponent as BaseViewComponent } from 'jslib/angular/components/view.component'; import { ViewComponent as BaseViewComponent } from 'jslib/angular/components/view.component';
import { CipherView } from 'jslib/models/view/cipherView';
@Component({ @Component({
selector: 'app-vault-view', selector: 'app-vault-view',
templateUrl: 'view.component.html', templateUrl: 'view.component.html',
}) })
export class ViewComponent extends BaseViewComponent implements OnChanges { export class ViewComponent extends BaseViewComponent implements OnChanges {
@Output() onViewCipherPasswordHistory = new EventEmitter<CipherView>();
constructor(cipherService: CipherService, totpService: TotpService, constructor(cipherService: CipherService, totpService: TotpService,
tokenService: TokenService, toasterService: ToasterService, tokenService: TokenService, toasterService: ToasterService,
cryptoService: CryptoService, platformUtilsService: PlatformUtilsService, cryptoService: CryptoService, platformUtilsService: PlatformUtilsService,
@@ -33,4 +39,9 @@ export class ViewComponent extends BaseViewComponent implements OnChanges {
async ngOnChanges() { async ngOnChanges() {
await super.load(); await super.load();
} }
viewHistory() {
this.analytics.eventTrack.next({ action: 'View Password History' });
this.onViewCipherPasswordHistory.emit(this.cipher);
}
} }