lbry-desktop/src/ui/analytics.js

90 lines
2.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';
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-04 23:05:23 +02:00
// ReactGA.pageview(path);
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);
// }
},
2019-04-01 16:30:19 +02:00
toggle: (enabled: boolean): void => {
analyticsEnabled = enabled;
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,
} = {
uri,
2018-03-08 06:07:42 +01:00
outpoint,
claim_id: claimId,
};
if (timeToStart) {
params.time_to_start = timeToStart;
}
Lbryio.call('file', 'view', params)
.then(() => {
if (onSuccessCb) {
onSuccessCb();
}
})
.catch(() => {});
}
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');
}
},
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-04 23:05:23 +02:00
// ReactGA.initialize('UA-60403362-12', {
// gaOptions: { name: IS_WEB ? 'web' : 'desktop' },
// testMode: process.env.NODE_ENV !== 'production',
// });
2019-04-01 16:30:19 +02:00
// Manually call the first page view
// Reach Router doesn't include this on `history.listen`
2019-04-04 23:05:23 +02:00
// analytics.pageView(window.location.pathname + window.location.search);
2019-04-01 16:30:19 +02:00
// Listen for url changes and report
// This will include search queries/filter options
2019-04-04 23:05:23 +02:00
// globalHistory.listen(({ location }) =>
// analytics.pageView(window.location.pathname + window.location.search)
// );
2019-04-01 16:30:19 +02:00
2018-02-16 09:47:52 +01:00
export default analytics;