analytics packages
Last updated
Was this helpful?
Last updated
Was this helpful?
There is a set of official Analytics Frontity packages that you can use to easily add web analytics services to your project.
These packages are:
for data tracking using
for data tracking using
for data tracking using
Install the analytics package you need for your project:
Each package will require some custom configuration to add things such as the tracking IDs for the services behind. In the description of each package you'll find the details of each configuration:
Once we have properly installed and configured these analytics
packages, their actions will be centralized by the analytics
namespace.
In frontity.settings.js
we can enable/disable specific analytics packages for pageviews or events through the following properties in the state
(under the analytics
namespace):
state.analytics.pageviews
state.analytics.events
These properties can be set directly in frontity.settings.js
from state.analytics
...
Or from each Analytics package setting...
state.analytics.pageviews
Map of Analytics packages namespaces with boolean values.
This object is used by actions.analytics.pageview
to know which analytics packages should send the pageview to their respective services.
If you want to disable sending pageviews for a specific analytics package, the respective namespace of that package should be set here to false
.
state.analytics.events
Map of Analytics packages namespaces with boolean values.
This object is used by actions.analytics.event
to know which analytics packages should send the event to their respective services.
If you want to disable sending events for a specific analytics package, the respective namespace of that package should be set here to false
.
Once everything is properly configured, the following actions
under the namespace analytics
will be ready to be used:
actions.analytics.pageview
actions.analytics.event
actions.analytics.pageview
Send a pageview to all active analytics packages.
This action takes all namespaces defined in state.analytics.pageviews
that are true
and calls the pageview
action of each one with the specified Pageview
object.
actions.analytics.pageview
is automatically launched every time link changes (or every time action.router.set(link)
is launched).
This action is is not meant to be called directly but in case you still want to do this it would be something like this:
actions.analytics.event
Send an event to all enabled analytics packages.
This action takes all namespaces defined in state.analytics.events
that are true
and calls the event
action of each one with the specified Event
object.
This is the method you can call from any component of your React app to track specific events.
Example:
The actions.analytics.event()
must receive an event object with the following properties.
Name
Type
Required
Description
name
string
yes
The value of this property is mapped to the proper name event of each analytics package
payload
object
yes
Event payload.
This method will send the event tracking information to all the packages enabled in state.analytics.events
.
Each package will handle the information sent through this actions.analytics.event()
in a different way: