Hello, I'm working on a proof of concept with a single page app implemented with angular 4 and its router. In the app, the state of the applications is stored in a single object which I'm able to observe in order to send the 'view' tracking. I'm basicaly sending most of my application state with the 'view'. But what variables should I send when a user click on a link ? In order to achieve the link tracking, the application observes the router state. One thing that I could send is the new URL. But what about all the other variables from the application state ? Should I send them too ? I'm a bit confused, and I dont really see a big difference between 'view' and 'link'. So what is the difference ? Thanks,
... View more