139 lines
4.1 KiB
JavaScript
139 lines
4.1 KiB
JavaScript
import { omitBy, isUndefined } from 'lodash';
|
|
|
|
const DEFAULT_SNOWPLOW_OPTIONS = {
|
|
namespace: 'gl',
|
|
hostname: window.location.hostname,
|
|
cookieDomain: window.location.hostname,
|
|
appId: '',
|
|
userFingerprint: false,
|
|
respectDoNotTrack: true,
|
|
forceSecureTracker: true,
|
|
eventMethod: 'post',
|
|
contexts: { webPage: true },
|
|
formTracking: false,
|
|
linkClickTracking: false,
|
|
};
|
|
|
|
const createEventPayload = (el, { suffix = '' } = {}) => {
|
|
const action = el.dataset.trackEvent + (suffix || '');
|
|
let value = el.dataset.trackValue || el.value || undefined;
|
|
if (el.type === 'checkbox' && !el.checked) value = false;
|
|
|
|
const data = {
|
|
label: el.dataset.trackLabel,
|
|
property: el.dataset.trackProperty,
|
|
value,
|
|
context: el.dataset.trackContext,
|
|
};
|
|
|
|
return {
|
|
action,
|
|
data: omitBy(data, isUndefined),
|
|
};
|
|
};
|
|
|
|
const eventHandler = (e, func, opts = {}) => {
|
|
const el = e.target.closest('[data-track-event]');
|
|
|
|
if (!el) return;
|
|
|
|
const { action, data } = createEventPayload(el, opts);
|
|
func(opts.category, action, data);
|
|
};
|
|
|
|
const eventHandlers = (category, func) => {
|
|
const handler = opts => e => eventHandler(e, func, { ...{ category }, ...opts });
|
|
const handlers = [];
|
|
handlers.push({ name: 'click', func: handler() });
|
|
handlers.push({ name: 'show.bs.dropdown', func: handler({ suffix: '_show' }) });
|
|
handlers.push({ name: 'hide.bs.dropdown', func: handler({ suffix: '_hide' }) });
|
|
return handlers;
|
|
};
|
|
|
|
export default class Tracking {
|
|
static trackable() {
|
|
return !['1', 'yes'].includes(
|
|
window.doNotTrack || navigator.doNotTrack || navigator.msDoNotTrack,
|
|
);
|
|
}
|
|
|
|
static enabled() {
|
|
return typeof window.snowplow === 'function' && this.trackable();
|
|
}
|
|
|
|
static event(category = document.body.dataset.page, action = 'generic', data = {}) {
|
|
if (!this.enabled()) return false;
|
|
// eslint-disable-next-line @gitlab/require-i18n-strings
|
|
if (!category) throw new Error('Tracking: no category provided for tracking.');
|
|
|
|
const { label, property, value, context } = data;
|
|
const contexts = context ? [context] : undefined;
|
|
return window.snowplow('trackStructEvent', category, action, label, property, value, contexts);
|
|
}
|
|
|
|
static bindDocument(category = document.body.dataset.page, parent = document) {
|
|
if (!this.enabled() || parent.trackingBound) return [];
|
|
|
|
// eslint-disable-next-line no-param-reassign
|
|
parent.trackingBound = true;
|
|
|
|
const handlers = eventHandlers(category, (...args) => this.event(...args));
|
|
handlers.forEach(event => parent.addEventListener(event.name, event.func));
|
|
return handlers;
|
|
}
|
|
|
|
static trackLoadEvents(category = document.body.dataset.page, parent = document) {
|
|
if (!this.enabled()) return [];
|
|
|
|
const loadEvents = parent.querySelectorAll('[data-track-event="render"]');
|
|
|
|
loadEvents.forEach(element => {
|
|
const { action, data } = createEventPayload(element);
|
|
this.event(category, action, data);
|
|
});
|
|
|
|
return loadEvents;
|
|
}
|
|
|
|
static mixin(opts = {}) {
|
|
return {
|
|
computed: {
|
|
trackingCategory() {
|
|
const localCategory = this.tracking ? this.tracking.category : null;
|
|
return localCategory || opts.category;
|
|
},
|
|
trackingOptions() {
|
|
return { ...opts, ...this.tracking };
|
|
},
|
|
},
|
|
methods: {
|
|
track(action, data = {}) {
|
|
const category = data.category || this.trackingCategory;
|
|
const options = {
|
|
...this.trackingOptions,
|
|
...data,
|
|
};
|
|
Tracking.event(category, action, options);
|
|
},
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
export function initUserTracking() {
|
|
if (!Tracking.enabled()) return;
|
|
|
|
const opts = { ...DEFAULT_SNOWPLOW_OPTIONS, ...window.snowplowOptions };
|
|
window.snowplow('newTracker', opts.namespace, opts.hostname, opts);
|
|
|
|
window.snowplow('enableActivityTracking', 30, 30);
|
|
window.snowplow('trackPageView'); // must be after enableActivityTracking
|
|
|
|
if (opts.formTracking) window.snowplow('enableFormTracking');
|
|
if (opts.linkClickTracking) window.snowplow('enableLinkClickTracking');
|
|
|
|
Tracking.bindDocument();
|
|
Tracking.trackLoadEvents();
|
|
|
|
document.dispatchEvent(new Event('SnowplowInitialized'));
|
|
}
|