Skip to main content

All 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,...
sergioviniciuss's user avatar
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&...
sakshi's user avatar
  • 171
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 ...
AKFourSeven's user avatar
  • 1,325
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 ...
gl0gl0's user avatar
  • 275
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 ...
blessanm86's user avatar
  • 31.8k