mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
45 lines
1015 B
JavaScript
45 lines
1015 B
JavaScript
import { getUniqueId } from 'react-native-device-info';
|
|
import Bugsnag from '@bugsnag/react-native';
|
|
const BlueApp = require('../BlueApp');
|
|
|
|
let userHasOptedOut = false;
|
|
|
|
if (process.env.NODE_ENV !== 'development') {
|
|
Bugsnag.start({
|
|
collectUserIp: false,
|
|
user: {
|
|
id: getUniqueId(),
|
|
},
|
|
onError: function (event) {
|
|
return !userHasOptedOut;
|
|
},
|
|
});
|
|
}
|
|
|
|
BlueApp.isDoNotTrackEnabled().then(value => {
|
|
if (value) userHasOptedOut = true;
|
|
});
|
|
|
|
const A = async event => {};
|
|
|
|
A.ENUM = {
|
|
INIT: 'INIT',
|
|
GOT_NONZERO_BALANCE: 'GOT_NONZERO_BALANCE',
|
|
GOT_ZERO_BALANCE: 'GOT_ZERO_BALANCE',
|
|
CREATED_WALLET: 'CREATED_WALLET',
|
|
CREATED_LIGHTNING_WALLET: 'CREATED_LIGHTNING_WALLET',
|
|
APP_UNSUSPENDED: 'APP_UNSUSPENDED',
|
|
NAVIGATED_TO_WALLETS_HODLHODL: 'NAVIGATED_TO_WALLETS_HODLHODL',
|
|
};
|
|
|
|
A.setOptOut = value => {
|
|
if (value) userHasOptedOut = true;
|
|
};
|
|
|
|
A.logError = errorString => {
|
|
console.error(errorString);
|
|
Bugsnag.notify(new Error(String(errorString)));
|
|
};
|
|
|
|
module.exports = A;
|