mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-11 18:30:30 +00:00
84 lines
2.1 KiB
TypeScript
84 lines
2.1 KiB
TypeScript
import { Inject, Service } from 'typedi';
|
|
import { EventSubscriber } from '@/lib/EventPublisher/EventPublisher';
|
|
import {
|
|
IPaymentReceivedCreatedPayload,
|
|
IPaymentReceivedEditedPayload,
|
|
IPaymentReceivedDeletedPayload,
|
|
} from '@/interfaces';
|
|
import { PosthogService } from '../PostHog';
|
|
import events from '@/subscribers/events';
|
|
import {
|
|
PAYMENT_RECEIVED_CREATED,
|
|
PAYMENT_RECEIVED_EDITED,
|
|
PAYMENT_RECEIVED_DELETED,
|
|
PAYMENT_RECEIVED_PDF_VIEWED,
|
|
} from '@/constants/event-tracker';
|
|
|
|
@Service()
|
|
export class PaymentReceivedEventsTracker extends EventSubscriber {
|
|
@Inject()
|
|
private posthog: PosthogService;
|
|
|
|
/**
|
|
* Constructor method.
|
|
*/
|
|
public attach(bus) {
|
|
bus.subscribe(
|
|
events.paymentReceive.onCreated,
|
|
this.handleTrackPaymentReceivedCreatedEvent
|
|
);
|
|
bus.subscribe(
|
|
events.paymentReceive.onEdited,
|
|
this.handleTrackEditedPaymentReceivedEvent
|
|
);
|
|
bus.subscribe(
|
|
events.paymentReceive.onDeleted,
|
|
this.handleTrackDeletedPaymentReceivedEvent
|
|
);
|
|
bus.subscribe(
|
|
events.paymentReceive.onPdfViewed,
|
|
this.handleTrackPdfViewedPaymentReceivedEvent
|
|
);
|
|
}
|
|
|
|
private handleTrackPaymentReceivedCreatedEvent = ({
|
|
tenantId,
|
|
}: IPaymentReceivedCreatedPayload) => {
|
|
this.posthog.trackEvent({
|
|
distinctId: `tenant-${tenantId}`,
|
|
event: PAYMENT_RECEIVED_CREATED,
|
|
properties: {},
|
|
});
|
|
};
|
|
|
|
private handleTrackEditedPaymentReceivedEvent = ({
|
|
tenantId,
|
|
}: IPaymentReceivedEditedPayload) => {
|
|
this.posthog.trackEvent({
|
|
distinctId: `tenant-${tenantId}`,
|
|
event: PAYMENT_RECEIVED_EDITED,
|
|
properties: {},
|
|
});
|
|
};
|
|
|
|
private handleTrackDeletedPaymentReceivedEvent = ({
|
|
tenantId,
|
|
}: IPaymentReceivedDeletedPayload) => {
|
|
this.posthog.trackEvent({
|
|
distinctId: `tenant-${tenantId}`,
|
|
event: PAYMENT_RECEIVED_DELETED,
|
|
properties: {},
|
|
});
|
|
};
|
|
|
|
private handleTrackPdfViewedPaymentReceivedEvent = ({
|
|
tenantId,
|
|
}: IPaymentReceivedDeletedPayload) => {
|
|
this.posthog.trackEvent({
|
|
distinctId: `tenant-${tenantId}`,
|
|
event: PAYMENT_RECEIVED_PDF_VIEWED,
|
|
properties: {},
|
|
});
|
|
};
|
|
}
|