lbry-desktop/src/ui/analytics.js

135 lines
3.4 KiB
JavaScript
Raw Normal View History

2018-02-16 09:47:52 +01:00
// @flow
2018-09-24 05:44:42 +02:00
import { Lbryio } from 'lbryinc';
2019-04-01 16:30:19 +02:00
import ReactGA from 'react-ga';
2019-04-09 23:21:00 +02:00
import { history } from './store';
2019-05-14 22:35:49 +02:00
// @if TARGET='app'
import ElectronCookies from '@exponent/electron-cookies';
// @endif
2018-02-16 09:47:52 +01:00
2019-06-20 02:57:51 +02:00
const isProduction = process.env.NODE_ENV === 'production';
2018-02-16 09:47:52 +01:00
type Analytics = {
2019-04-01 16:30:19 +02:00
pageView: string => void,
2018-02-24 01:24:00 +01:00
setUser: Object => void,
toggle: (boolean, ?boolean) => void,
2019-01-19 19:54:06 +01:00
apiLogView: (string, string, string, ?number, ?() => void) => void,
2019-03-18 06:09:50 +01:00
apiLogPublish: () => void,
2019-07-22 01:35:59 +02:00
tagFollowEvent: (string, boolean, string) => void,
2018-02-24 01:24:00 +01:00
};
2018-02-16 09:47:52 +01:00
2019-04-01 16:30:19 +02:00
let analyticsEnabled: boolean = true;
2018-02-16 09:47:52 +01:00
const analytics: Analytics = {
2019-04-01 16:30:19 +02:00
pageView: path => {
2018-02-24 01:24:00 +01:00
if (analyticsEnabled) {
2019-05-14 22:35:49 +02:00
ReactGA.pageview(path);
2018-02-16 09:47:52 +01:00
}
},
2019-07-22 04:28:49 +02:00
setUser: userId => {
if (analyticsEnabled && userId) {
ReactGA.event({
category: 'User',
action: 'userId',
value: userId,
});
}
},
2019-04-01 16:30:19 +02:00
toggle: (enabled: boolean): void => {
2019-04-14 07:48:11 +02:00
// Always collect analytics on lbry.tv
// @if TARGET='app'
analyticsEnabled = enabled;
2019-04-14 07:48:11 +02:00
// @endif
2018-02-24 01:24:00 +01:00
},
2019-08-14 05:04:08 +02:00
apiLogView: (uri, outpoint, claimId, timeToStart) => {
2019-08-14 05:56:11 +02:00
if (analyticsEnabled && isProduction) {
2018-10-19 22:38:07 +02:00
const params: {
uri: string,
outpoint: string,
claim_id: string,
time_to_start?: number,
} = {
uri,
2018-03-08 06:07:42 +01:00
outpoint,
claim_id: claimId,
};
2019-08-14 05:04:08 +02:00
// lbry.tv streams from AWS so we don't care about the time to start
if (timeToStart && !IS_WEB) {
params.time_to_start = timeToStart;
}
2019-08-14 05:04:08 +02:00
Lbryio.call('file', 'view', params);
}
2018-03-08 06:07:42 +01:00
},
2019-02-05 19:36:40 +01:00
apiLogSearch: () => {
2019-06-20 02:57:51 +02:00
if (analyticsEnabled && isProduction) {
2019-02-05 19:36:40 +01:00
Lbryio.call('event', 'search');
}
},
apiLogPublish: () => {
2019-06-20 02:57:51 +02:00
if (analyticsEnabled && isProduction) {
2019-02-05 19:36:40 +01:00
Lbryio.call('event', 'publish');
}
},
apiSearchFeedback: (query, vote) => {
2019-06-20 02:57:51 +02:00
if (isProduction) {
// We don't need to worry about analytics enabled here because users manually click on the button to provide feedback
Lbryio.call('feedback', 'search', { query, vote });
}
},
2019-07-22 01:35:59 +02:00
tagFollowEvent: (tag, following, location) => {
if (analyticsEnabled) {
ReactGA.event({
category: following ? 'Tag-Follow' : 'Tag-Unfollow',
action: tag,
2019-07-22 01:35:59 +02:00
});
}
},
channelBlockEvent: (uri, blocked, location) => {
if (analyticsEnabled) {
ReactGA.event({
category: blocked ? 'Channel-Hidden' : 'Channel-Unhidden',
action: uri,
});
}
},
2018-02-24 01:24:00 +01:00
};
2018-02-16 09:47:52 +01:00
2019-04-01 16:30:19 +02:00
// Initialize google analytics
// Set `debug: true` for debug info
2019-04-11 20:22:47 +02:00
// Will change once we have separate ids for desktop/web
2019-05-14 21:24:59 +02:00
const UA_ID = IS_WEB ? 'UA-60403362-12' : 'UA-60403362-13';
2019-04-11 20:22:47 +02:00
2019-05-14 22:35:49 +02:00
// @if TARGET='app'
ElectronCookies.enable({
origin: 'https://lbry.tv',
});
// @endif
2019-04-11 20:22:47 +02:00
ReactGA.initialize(UA_ID, {
2019-04-09 23:21:00 +02:00
testMode: process.env.NODE_ENV !== 'production',
2019-05-14 22:35:49 +02:00
cookieDomain: 'auto',
2019-04-09 23:21:00 +02:00
});
2019-04-01 16:30:19 +02:00
// Manually call the first page view
2019-04-09 23:21:00 +02:00
// React Router doesn't include this on `history.listen`
2019-07-09 18:18:06 +02:00
// @if TARGET='web'
2019-04-09 23:21:00 +02:00
analytics.pageView(window.location.pathname + window.location.search);
2019-07-09 18:18:06 +02:00
// @endif
2019-04-01 16:30:19 +02:00
2019-05-14 22:35:49 +02:00
// @if TARGET='app'
ReactGA.set({ checkProtocolTask: null });
ReactGA.set({ location: 'https://lbry.tv' });
analytics.pageView(window.location.pathname.split('.html')[1] + window.location.search || '/');
// @endif;
2019-04-01 16:30:19 +02:00
// Listen for url changes and report
2019-04-09 23:21:00 +02:00
// This will include search queries
history.listen(location => {
2019-04-15 05:49:50 +02:00
const { pathname, search } = location;
2019-04-14 07:48:11 +02:00
2019-04-15 05:49:50 +02:00
const page = `${pathname}${search}`;
analytics.pageView(page);
2019-04-09 23:21:00 +02:00
});
2019-04-01 16:30:19 +02:00
2018-02-16 09:47:52 +01:00
export default analytics;