jiti-meet/react/features/analytics/handlers/AmplitudeHandler.ts

107 lines
2.9 KiB
TypeScript
Raw Normal View History

2022-09-06 12:51:50 +00:00
/* eslint-disable lines-around-comment */
import logger from '../logger';
2022-09-06 12:51:50 +00:00
import AbstractHandler, { IEvent } from './AbstractHandler';
// @ts-ignore
import { fixDeviceID } from './amplitude/fixDeviceID';
2022-09-06 12:51:50 +00:00
// @ts-ignore
import amplitude from './amplitude/lib';
2019-01-03 13:54:02 +00:00
/**
* Analytics handler for Amplitude.
*/
export default class AmplitudeHandler extends AbstractHandler {
2022-09-06 12:51:50 +00:00
_deviceId: string;
_userId: Object;
2019-01-03 13:54:02 +00:00
/**
* Creates new instance of the Amplitude analytics handler.
*
* @param {Object} options -
* @param {string} options.amplitudeAPPKey - The Amplitude app key required
* by the Amplitude API.
*/
2022-09-06 12:51:50 +00:00
constructor(options: any) {
super(options);
2019-01-03 13:54:02 +00:00
const { amplitudeAPPKey, user } = options;
2019-01-03 13:54:02 +00:00
this._enabled = true;
2022-09-06 12:51:50 +00:00
const onError = (e: Error) => {
logger.error('Error initializing Amplitude', e);
this._enabled = false;
};
if (navigator.product === 'ReactNative') {
amplitude.getInstance().init(amplitudeAPPKey);
fixDeviceID(amplitude.getInstance()).then(() => {
amplitude.getInstance().getDeviceId()
2022-09-06 12:51:50 +00:00
.then((deviceId: string) => {
this._deviceId = deviceId;
});
});
} else {
const amplitudeOptions = {
includeReferrer: true,
onError
};
amplitude.getInstance().init(amplitudeAPPKey, undefined, amplitudeOptions);
fixDeviceID(amplitude.getInstance());
}
2019-05-29 15:24:50 +00:00
if (user) {
this._userId = user;
amplitude.getInstance().setUserId(user);
2019-05-29 15:24:50 +00:00
}
2019-01-03 13:54:02 +00:00
}
/**
* Sets the Amplitude user properties.
*
* @param {Object} userProps - The user portperties.
2019-01-03 13:54:02 +00:00
* @returns {void}
*/
2022-09-06 12:51:50 +00:00
setUserProperties(userProps: Object) {
2019-01-03 13:54:02 +00:00
if (this._enabled) {
amplitude.getInstance().setUserProperties(userProps);
2019-01-03 13:54:02 +00:00
}
}
/**
* Sends an event to Amplitude. The format of the event is described
* in AnalyticsAdapter in lib-jitsi-meet.
*
* @param {Object} event - The event in the format specified by
* lib-jitsi-meet.
* @returns {void}
*/
2022-09-06 12:51:50 +00:00
sendEvent(event: IEvent) {
2019-01-03 13:54:02 +00:00
if (this._shouldIgnore(event)) {
return;
}
amplitude.getInstance().logEvent(this._extractName(event), event);
2019-01-03 13:54:02 +00:00
}
/**
* Return amplitude identity information.
*
* @returns {Object}
*/
getIdentityProps() {
if (navigator.product === 'ReactNative') {
return {
deviceId: this._deviceId,
userId: this._userId
};
}
return {
sessionId: amplitude.getInstance().getSessionId(),
deviceId: amplitude.getInstance().options.deviceId,
userId: amplitude.getInstance().options.userId
};
}
2019-01-03 13:54:02 +00:00
}