BlueWallet/blue_modules/analytics.js

40 lines
901 B
JavaScript
Raw Normal View History

2021-08-20 18:26:46 +02:00
import { getUniqueId } from 'react-native-device-info';
import Bugsnag from '@bugsnag/react-native';
const BlueApp = require('../BlueApp');
2021-08-20 18:26:46 +02:00
let userHasOptedOut = false;
2021-05-18 13:54:18 +02:00
if (process.env.NODE_ENV !== 'development') {
2021-08-20 18:26:46 +02:00
Bugsnag.start({
collectUserIp: false,
user: {
id: getUniqueId(),
},
onError: function (event) {
return !userHasOptedOut;
},
});
2021-05-18 13:54:18 +02:00
}
BlueApp.isDoNotTrackEnabled().then(value => {
2021-08-20 18:26:46 +02:00
if (value) userHasOptedOut = true;
});
const A = async event => {};
A.ENUM = {
INIT: 'INIT',
GOT_NONZERO_BALANCE: 'GOT_NONZERO_BALANCE',
2019-11-29 00:16:04 +01:00
GOT_ZERO_BALANCE: 'GOT_ZERO_BALANCE',
CREATED_WALLET: 'CREATED_WALLET',
CREATED_LIGHTNING_WALLET: 'CREATED_LIGHTNING_WALLET',
2019-11-29 00:16:04 +01:00
APP_UNSUSPENDED: 'APP_UNSUSPENDED',
NAVIGATED_TO_WALLETS_HODLHODL: 'NAVIGATED_TO_WALLETS_HODLHODL',
};
A.setOptOut = value => {
2021-08-20 18:26:46 +02:00
if (value) userHasOptedOut = true;
};
module.exports = A;