send ga event for tag follow/unfollow

This commit is contained in:
Sean Yesmunt 2019-07-21 19:35:59 -04:00
parent 24cfe53165
commit e503988fdc
3 changed files with 25 additions and 1 deletions

View file

@ -14,6 +14,7 @@ type Analytics = {
toggle: (boolean, ?boolean) => void, toggle: (boolean, ?boolean) => void,
apiLogView: (string, string, string, ?number, ?() => void) => void, apiLogView: (string, string, string, ?number, ?() => void) => void,
apiLogPublish: () => void, apiLogPublish: () => void,
tagFollowEvent: (string, boolean, string) => void,
}; };
let analyticsEnabled: boolean = true; let analyticsEnabled: boolean = true;
@ -78,6 +79,16 @@ const analytics: Analytics = {
Lbryio.call('feedback', 'search', { query, vote }); Lbryio.call('feedback', 'search', { query, vote });
} }
}, },
tagFollowEvent: (tag, following, location) => {
console.log('yep');
if (analyticsEnabled) {
ReactGA.event({
category: 'Tag',
action: following ? 'follow' : 'unfollow',
value: tag,
});
}
},
}; };
// Initialize google analytics // Initialize google analytics

View file

@ -6,6 +6,7 @@ import Tag from 'component/tag';
import TagsSearch from 'component/tagsSearch'; import TagsSearch from 'component/tagsSearch';
import usePersistedState from 'util/use-persisted-state'; import usePersistedState from 'util/use-persisted-state';
import { useTransition, animated } from 'react-spring'; import { useTransition, animated } from 'react-spring';
import analytics from 'analytics';
type Props = { type Props = {
showClose: boolean, showClose: boolean,
@ -56,6 +57,10 @@ export default function TagSelect(props: Props) {
onRemove(tag); onRemove(tag);
} else { } else {
doToggleTagFollow(tag.name); doToggleTagFollow(tag.name);
const wasFollowing = followedTags.map(tag => tag.name).includes(tag.name);
const nowFollowing = !wasFollowing;
analytics.tagFollowEvent(tag.name, nowFollowing, 'tag-select');
} }
} }

View file

@ -4,6 +4,7 @@ import Page from 'component/page';
import ClaimListDiscover from 'component/claimListDiscover'; import ClaimListDiscover from 'component/claimListDiscover';
import Button from 'component/button'; import Button from 'component/button';
import useHover from 'util/use-hover'; import useHover from 'util/use-hover';
import analytics from 'analytics';
type Props = { type Props = {
location: { search: string }, location: { search: string },
@ -33,11 +34,18 @@ function TagsPage(props: Props) {
label = __('Unfollow'); label = __('Unfollow');
} }
function handleFollowClick() {
doToggleTagFollow(tag);
const nowFollowing = !isFollowing;
analytics.tagFollowEvent(tag, nowFollowing, 'tag-page');
}
return ( return (
<Page> <Page>
<ClaimListDiscover <ClaimListDiscover
tags={tags} tags={tags}
meta={<Button ref={buttonRef} button="link" onClick={() => doToggleTagFollow(tag)} label={label} />} meta={<Button ref={buttonRef} button="link" onClick={handleFollowClick} label={label} />}
/> />
</Page> </Page>
); );