2021-10-27 15:23:28 +05:30
|
|
|
import { omitBy, isUndefined } from 'lodash';
|
|
|
|
import { TRACKING_CONTEXT_SCHEMA } from '~/experimentation/constants';
|
|
|
|
import { getExperimentData } from '~/experimentation/utils';
|
|
|
|
import {
|
|
|
|
ACTION_ATTR_SELECTOR,
|
|
|
|
LOAD_ACTION_ATTR_SELECTOR,
|
2021-11-11 11:23:49 +05:30
|
|
|
URLS_CACHE_STORAGE_KEY,
|
|
|
|
REFERRER_TTL,
|
2021-10-27 15:23:28 +05:30
|
|
|
} from './constants';
|
|
|
|
|
|
|
|
export const addExperimentContext = (opts) => {
|
|
|
|
const { experiment, ...options } = opts;
|
|
|
|
|
|
|
|
if (experiment) {
|
|
|
|
const data = getExperimentData(experiment);
|
|
|
|
if (data) {
|
|
|
|
const context = { schema: TRACKING_CONTEXT_SCHEMA, data };
|
|
|
|
return { ...options, context };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return options;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const createEventPayload = (el, { suffix = '' } = {}) => {
|
|
|
|
const {
|
|
|
|
trackAction,
|
|
|
|
trackValue,
|
|
|
|
trackExtra,
|
|
|
|
trackExperiment,
|
|
|
|
trackContext,
|
|
|
|
trackLabel,
|
|
|
|
trackProperty,
|
|
|
|
} = el?.dataset || {};
|
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
const action = `${trackAction}${suffix || ''}`;
|
2021-10-27 15:23:28 +05:30
|
|
|
let value = trackValue || el.value || undefined;
|
|
|
|
|
|
|
|
if (el.type === 'checkbox' && !el.checked) {
|
|
|
|
value = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
let extra = trackExtra;
|
|
|
|
|
|
|
|
if (extra !== undefined) {
|
|
|
|
try {
|
|
|
|
extra = JSON.parse(extra);
|
|
|
|
} catch (e) {
|
|
|
|
extra = undefined;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const context = addExperimentContext({
|
|
|
|
experiment: trackExperiment,
|
|
|
|
context: trackContext,
|
|
|
|
});
|
|
|
|
|
|
|
|
const data = {
|
|
|
|
label: trackLabel,
|
|
|
|
property: trackProperty,
|
|
|
|
value,
|
|
|
|
extra,
|
|
|
|
...context,
|
|
|
|
};
|
|
|
|
|
|
|
|
return {
|
|
|
|
action,
|
|
|
|
data: omitBy(data, isUndefined),
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export const eventHandler = (e, func, opts = {}) => {
|
|
|
|
const actionSelector = `${ACTION_ATTR_SELECTOR}:not(${LOAD_ACTION_ATTR_SELECTOR})`;
|
2021-11-18 22:05:49 +05:30
|
|
|
const el = e.target.closest(actionSelector);
|
2021-10-27 15:23:28 +05:30
|
|
|
|
|
|
|
if (!el) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const { action, data } = createEventPayload(el, opts);
|
|
|
|
func(opts.category, action, data);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const getEventHandlers = (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 const renameKey = (o, oldKey, newKey) => {
|
|
|
|
const ret = {};
|
|
|
|
delete Object.assign(ret, o, { [newKey]: o[oldKey] })[oldKey];
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
};
|
2021-11-11 11:23:49 +05:30
|
|
|
|
|
|
|
export const filterOldReferrersCacheEntries = (cache) => {
|
|
|
|
const now = Date.now();
|
|
|
|
|
|
|
|
return cache.filter((entry) => entry.timestamp && entry.timestamp > now - REFERRER_TTL);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const getReferrersCache = () => {
|
|
|
|
try {
|
|
|
|
const referrers = JSON.parse(window.localStorage.getItem(URLS_CACHE_STORAGE_KEY) || '[]');
|
|
|
|
|
|
|
|
return filterOldReferrersCacheEntries(referrers);
|
|
|
|
} catch {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export const addReferrersCacheEntry = (cache, entry) => {
|
|
|
|
const referrers = JSON.stringify([{ ...entry, timestamp: Date.now() }, ...cache]);
|
|
|
|
|
|
|
|
window.localStorage.setItem(URLS_CACHE_STORAGE_KEY, referrers);
|
|
|
|
};
|