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

@ -1 +1 @@
Subproject commit b21cb789da2f93a36908cdfb0dba6e701102b87d
Subproject commit 557b2fc3f093ee1e2eb4515c2e33c613f083c327

View File

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