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';
|
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,
|
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-04-09 23:32:53 +02:00
|
|
|
ReactGA.pageview(path, IS_WEB ? ['web'] : ['desktop']);
|
2018-02-16 09:47:52 +01:00
|
|
|
}
|
|
|
|
},
|
2019-01-19 19:54:06 +01:00
|
|
|
setUser: user => {
|
2019-04-01 16:30:19 +02:00
|
|
|
// Commented out because currently there is some delay before we know the user
|
|
|
|
// We should retrieve this server side so we have it immediately
|
|
|
|
// if (analyticsEnabled && user.id) {
|
|
|
|
// ReactGA.set('userId', user.id);
|
|
|
|
// }
|
2018-02-16 10:16:50 +01:00
|
|
|
},
|
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'
|
2018-02-16 10:16:50 +01:00
|
|
|
analyticsEnabled = enabled;
|
2019-04-14 07:48:11 +02:00
|
|
|
// @endif
|
2018-02-24 01:24:00 +01:00
|
|
|
},
|
2019-01-19 19:54:06 +01:00
|
|
|
apiLogView: (uri, outpoint, claimId, timeToStart, onSuccessCb) => {
|
2018-03-08 06:07:42 +01:00
|
|
|
if (analyticsEnabled) {
|
2018-10-19 22:38:07 +02:00
|
|
|
const params: {
|
|
|
|
uri: string,
|
|
|
|
outpoint: string,
|
|
|
|
claim_id: string,
|
|
|
|
time_to_start?: number,
|
|
|
|
} = {
|
2018-03-08 04:56:58 +01:00
|
|
|
uri,
|
2018-03-08 06:07:42 +01:00
|
|
|
outpoint,
|
|
|
|
claim_id: claimId,
|
2018-08-03 17:54:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
if (timeToStart) {
|
|
|
|
params.time_to_start = timeToStart;
|
|
|
|
}
|
|
|
|
|
2018-08-28 22:46:50 +02:00
|
|
|
Lbryio.call('file', 'view', params)
|
|
|
|
.then(() => {
|
|
|
|
if (onSuccessCb) {
|
|
|
|
onSuccessCb();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(() => {});
|
2018-03-08 04:56:58 +01:00
|
|
|
}
|
2018-03-08 06:07:42 +01:00
|
|
|
},
|
2019-02-05 19:36:40 +01:00
|
|
|
apiLogSearch: () => {
|
|
|
|
if (analyticsEnabled) {
|
|
|
|
Lbryio.call('event', 'search');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
apiLogPublish: () => {
|
|
|
|
if (analyticsEnabled) {
|
|
|
|
Lbryio.call('event', 'publish');
|
|
|
|
}
|
|
|
|
},
|
2019-02-21 23:45:17 +01:00
|
|
|
apiSearchFeedback: (query, vote) => {
|
|
|
|
// 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 });
|
|
|
|
},
|
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
|
|
|
|
|
|
|
ReactGA.initialize(UA_ID, {
|
2019-04-09 23:21:00 +02:00
|
|
|
gaOptions: { name: IS_WEB ? 'web' : 'desktop' },
|
|
|
|
testMode: process.env.NODE_ENV !== 'production',
|
2019-04-14 07:48:11 +02:00
|
|
|
// debug: true,
|
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`
|
|
|
|
analytics.pageView(window.location.pathname + window.location.search);
|
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;
|