insomnia/app/analytics/index.js
2017-04-24 15:43:42 -07:00

33 lines
741 B
JavaScript

import * as google from './google';
import {ipcRenderer} from 'electron';
import {getAppVersion, getAppPlatform} from '../common/constants';
let initialized = false;
export async function init (accountId) {
if (initialized) {
return;
}
await google.init(accountId, getAppPlatform(), getAppVersion());
initialized = true;
ipcRenderer.on('analytics-track-event', (_, args) => {
trackEvent(...args);
});
}
export function trackEvent (...args) {
// Do on next tick in case it fails or blocks
process.nextTick(() => {
google.sendEvent(...args);
});
}
export function setAccountId (accountId) {
// Do on next tick in case it fails or blocks
process.nextTick(() => {
google.setUserId(accountId);
});
}