All Questions
5 questions
0
votes
0
answers
126
views
is there any way to find out which endpoints are triggered on a page?
I have a generic implementation to fire a page_view google analytics event in my react application every time there's a route change:
const usePageViewTracking = () => {
const { pathname, search,...
0
votes
2
answers
273
views
User timing in Google analytics data is not showing
From my react application I enable debug mode for google analytics
and successfully event are getting triggered but it is not showing in Google analytics
ga("send", {hitType: "timing&...
0
votes
1
answer
282
views
React-GA + Redux v7 incompatibility issue with jest
I am using react-ga v2.5.7, for which I updated react-redux v7.0.2, and I am using jest v24.7.1
I set react-ga in testMode, and it is mocked in my jest.setup.js. But everytime I run my tests I am ...
2
votes
1
answer
684
views
react redux-beacon track link clicks analytics
What's the best way to track internal link clicks analytics in a React/Redux App if using Redux-Beacon?
Normally a internal link click fires a router location change (it doesn't fire any other redux ...
2
votes
1
answer
3k
views
Debounce API call in redux
I am trying to send analytics data to google and need to make an API. I have a search box that filters a list of customers. The search itself is debounced every 300ms but I only want to send the ...