This package provides a common interface for sending data to web analytics tools like Google Analytics or Amplitude. Only basic functionality of tracking page views and events is currently supported.
$ npm install --save-dev @infermedica/modular-analytics
The analytics interfaces has to be configured in Webpack configuration file through webpack.DefinePlugin
:
new webpack.DefinePlugin({
__analytics: {
debug: {
isEnabled: true
},
googleAnalytics: {
isEnabled: true,
key: JSON.stringify('<your-key>')
},
googleAdWords: {
isEnabled: true,
key: JSON.stringify('<your-key>')
},
googleTagManager: {
isEnabled: true
},
amplitude: {
isEnabled: true,
key: JSON.stringify('<your-key>'),
allowProprties: JSON.stringify([]), // optional
disallowProperties: JSON.stringify(['application', 'user', 'section', 'event_details']), // optional
},
infermedicaAnalytics: {
isEnabled: true,
useFirebase: true,
topic: JSON.stringify('<your-topic>'),
environment: JSON.stringify('<your-environment>'),
sendUID: false, // allow to send firebase UID, false by default
allowProperties: JSON.stringify(['application', 'user', 'section', 'event_details']), // optional
disallowProperties: JSON.stringify([]), // optional
baseURL: '<your-url-origin>', // optional, default value is 'https://analytics-proxy.infermedica.com/'
publishURL: '<your-url-path>', // optional, default value is '/api/v1/publish'
},
}
})
You can use the above configuration to enable or disable individual modules. Use isEnabled
to specify if particular
module should be included in a final build.
Please note that isEnabled
must be a boolean value (but you can still compute it from other variables), so Webpack's
tree shaking algorithm can correctly detect and remove unused modules.
To use the module, you need to import the Analytics
object and call its methods.
import {Analytics} from '@infermedica/modular-analytics';
To track page views, use:
Analytics.trackView();
or:
Analytics.trackView('View Name');
To track events, use:
Analytics.trackEvent('Event name');
You can also pass additional properties, e.g.:
Analytics.trackEvent('Event name', {
user_rating: 5
});
You can use the event for all modules or decide which modules should be used for this event, e.g.:
Analytics.trackEvent('Event name', {
user_rating: 5
}, ['aplitude', 'googleTagManager'])
To track events, use:
Analytics.trackConversion('conversion-label');
The "conversion-label" will be passed to gtag function as follows:
window.gtag('event', 'conversion', {send_to: __analytics.googleAdWords.key + '/' + conversionLabel});
You can set global properties that will be automatically added to each tracked event:
Analytics.setGlobalProperties('instance', 'my-page.example.com');
Multiple properties can be set at once, e.g.:
Analytics.setGlobalProperties({
instance: 'my-page.example.com',
interface_language: 'en',
});
Note that global properties can be overridden by parameters passed to trackEvent
calls.
You can decide whether to use Firebase or not:
- While choosing the first scenario you can decide if you want to use Firebase anonymously or as identified user.
In order to use
infermedicaAnalytics
module of this package along with Firebase you should callinitialize()
method and pass it an object which matches the following type:
type InitializeParams = IAnonymousInitializeParams | IAuthenticatedInitializeParams;
interface IAnonymousInitializeParams {
firebaseConfig: FirebaseOptions,
forceSignInAnonymously: true,
firebaseAppName?: string,
}
interface IAuthenticatedInitializeParams {
firebaseAuth: Auth,
forceSignInAnonymously: false,
firebaseAppName?: string,
}
- If you want to let the library sign you in to firebase as anonymous user, you should call the
initialize()
method with an object corresponding to theIAnonymousInitializeParams
interface
, e.g.:
import { Analytics } from '@infermedica/modular-analytics';
const firebaseConfig = { /* your firebase config */ };
Analytics.initialize({ firebaseConfig, forceSignInAnonymously: true, firebaseAppName: 'MY_APP' });
- In case you need to handle firebase-authentication on your side, do it and then initialize Analytics library by passing object corresponding to the
IAuthenticatedInitializeParams
interface
, e.g.:
import { initializeApp } from 'firebase/app';
import { getAuth } from 'firebase/auth';
import { Analytics } from '@infermedica/modular-analytics';
const firebaseConfig = { /* your firebase config */ };
const firebaseApp = initializeApp(firebaseConfig);
const firebaseAuth = getAuth(firebaseApp);
Analytics.initialize({ firebaseAuth, forceSignInAnonymously: false, firebaseAppName: 'MY_APP' });
- On the other hand, if you decide not to use Firebase at all, you don't have to call
Analytics.initialize()
since all it does is initialize Firebase-related stuff. In this case you have to remember to setuseFirebase
flag tofalse
during webpack-configuration of the library.
This package can be used as Vue.js 3 plugin:
import VueAnalytics from '@infermedica/modular-analytics/vue';
app.use(VueAnalytics);
You can access it as a global variable in template:
<template>
<button @click="$analytics.trackEvent(...)">trackEvent</button>
</template>
To use it in script use useAnalytics
composable:
<script setup>
import VueAnalytics from '@infermedica/modular-analytics/vue';
const Analytics = useAnalytics();
Analytics.trackEvent();
</script>
This package can be used as a Vue.js 2 plugin:
import VueAnalytics from '@infermedica/modular-analytics/vue';
Vue.use(VueAnalytics);
You can access it anywhere via Vue.$analytics
:
Vue.$analytics.setGlobalProperties(...);
Vue.$analytics.trackView(...);
Vue.$analytics.trackEvent(...);
or with this.$analytics
inside of Vue.js components:
this.$analytics.setGlobalProperties(...);
this.$analytics.trackView(...);
this.$analytics.trackEvent(...);
Currently the following providers are supported:
- Google Analytics
- Google Tag Manager (Analytics & AdWords)
- Amplitude
- Infermedica Analytic
Other analytics tools are easy to integrate with this module and we might add their support in the future.
We use the jest library for our tests.
Run all tests
$ npm run test
Run only the tests that were specified with a filename
$ npm run test file-name.test.js
We're happy to accept pull requests with additional integrations. Feel free to raise an issue if you have any questions or suggestions.
MIT Copyright (c) Infermedica