add events to view page

This commit is contained in:
Kyle Spearrin 2019-07-09 10:51:53 -04:00
parent aee0ad53dc
commit ff9c7bfa6a
1 changed files with 22 additions and 1 deletions

View File

@ -9,11 +9,13 @@ import {
} from '@angular/core'; } from '@angular/core';
import { CipherType } from '../../enums/cipherType'; import { CipherType } from '../../enums/cipherType';
import { EventType } from '../../enums/eventType';
import { FieldType } from '../../enums/fieldType'; import { FieldType } from '../../enums/fieldType';
import { AuditService } from '../../abstractions/audit.service'; import { AuditService } from '../../abstractions/audit.service';
import { CipherService } from '../../abstractions/cipher.service'; import { CipherService } from '../../abstractions/cipher.service';
import { CryptoService } from '../../abstractions/crypto.service'; import { CryptoService } from '../../abstractions/crypto.service';
import { EventService } from '../../abstractions/event.service';
import { I18nService } from '../../abstractions/i18n.service'; import { I18nService } from '../../abstractions/i18n.service';
import { PlatformUtilsService } from '../../abstractions/platformUtils.service'; import { PlatformUtilsService } from '../../abstractions/platformUtils.service';
import { TokenService } from '../../abstractions/token.service'; import { TokenService } from '../../abstractions/token.service';
@ -51,9 +53,11 @@ export class ViewComponent implements OnDestroy, OnInit {
protected cryptoService: CryptoService, protected platformUtilsService: PlatformUtilsService, protected cryptoService: CryptoService, protected platformUtilsService: PlatformUtilsService,
protected auditService: AuditService, protected win: Window, protected auditService: AuditService, protected win: Window,
protected broadcasterService: BroadcasterService, protected ngZone: NgZone, protected broadcasterService: BroadcasterService, protected ngZone: NgZone,
protected changeDetectorRef: ChangeDetectorRef, protected userService: UserService) { } protected changeDetectorRef: ChangeDetectorRef, protected userService: UserService,
protected eventService: EventService) { }
ngOnInit() { ngOnInit() {
this.eventService.collect(EventType.Cipher_ClientViewed);
this.broadcasterService.subscribe(BroadcasterSubscriptionId, (message: any) => { this.broadcasterService.subscribe(BroadcasterSubscriptionId, (message: any) => {
this.ngZone.run(async () => { this.ngZone.run(async () => {
switch (message.command) { switch (message.command) {
@ -99,11 +103,17 @@ export class ViewComponent implements OnDestroy, OnInit {
togglePassword() { togglePassword() {
this.platformUtilsService.eventTrack('Toggled Password'); this.platformUtilsService.eventTrack('Toggled Password');
this.showPassword = !this.showPassword; this.showPassword = !this.showPassword;
if (this.showPassword) {
this.eventService.collect(EventType.Cipher_ClientToggledPasswordVisible);
}
} }
toggleCardCode() { toggleCardCode() {
this.platformUtilsService.eventTrack('Toggled Card Code'); this.platformUtilsService.eventTrack('Toggled Card Code');
this.showCardCode = !this.showCardCode; this.showCardCode = !this.showCardCode;
if (this.showCardCode) {
this.eventService.collect(EventType.Cipher_ClientToggledCardCodeVisible);
}
} }
async checkPassword() { async checkPassword() {
@ -126,6 +136,9 @@ export class ViewComponent implements OnDestroy, OnInit {
toggleFieldValue(field: FieldView) { toggleFieldValue(field: FieldView) {
const f = (field as any); const f = (field as any);
f.showValue = !f.showValue; f.showValue = !f.showValue;
if (f.showValue) {
this.eventService.collect(EventType.Cipher_ClientToggledHiddenFieldVisible);
}
} }
launch(uri: LoginUriView) { launch(uri: LoginUriView) {
@ -147,6 +160,14 @@ export class ViewComponent implements OnDestroy, OnInit {
this.platformUtilsService.copyToClipboard(value, copyOptions); this.platformUtilsService.copyToClipboard(value, copyOptions);
this.platformUtilsService.showToast('info', null, this.platformUtilsService.showToast('info', null,
this.i18nService.t('valueCopied', this.i18nService.t(typeI18nKey))); this.i18nService.t('valueCopied', this.i18nService.t(typeI18nKey)));
if (typeI18nKey === 'password') {
this.eventService.collect(EventType.Cipher_ClientToggledHiddenFieldVisible);
} else if (typeI18nKey === 'securityCode') {
this.eventService.collect(EventType.Cipher_ClientCopiedCardCode);
} else if (aType === 'H_Field') {
this.eventService.collect(EventType.Cipher_ClientCopiedHiddenField);
}
} }
async downloadAttachment(attachment: AttachmentView) { async downloadAttachment(attachment: AttachmentView) {