AW-106-klaviyo-metric
This commit is contained in:
parent
0a6b9b5c46
commit
7d2754abf0
64
index.html
64
index.html
@ -44,6 +44,70 @@
|
|||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<!-- Klaviyo Metric -->
|
||||||
|
<script type="module">
|
||||||
|
const klaviyoKeys = {
|
||||||
|
develop: "RM7w5r",
|
||||||
|
production: "Si7Jff",
|
||||||
|
};
|
||||||
|
const script = document.createElement("script");
|
||||||
|
script.src = `https://static.klaviyo.com/onsite/js/klaviyo.js?company_id=${
|
||||||
|
klaviyoKeys[import.meta.env.MODE]
|
||||||
|
}`;
|
||||||
|
script.type = "text/javascript";
|
||||||
|
script.async = "";
|
||||||
|
document.head.appendChild(script);
|
||||||
|
</script>
|
||||||
|
<script>
|
||||||
|
!(function () {
|
||||||
|
if (!window.klaviyo) {
|
||||||
|
window._klOnsite = window._klOnsite || [];
|
||||||
|
try {
|
||||||
|
window.klaviyo = new Proxy(
|
||||||
|
{},
|
||||||
|
{
|
||||||
|
get: function (n, i) {
|
||||||
|
return "push" === i
|
||||||
|
? function () {
|
||||||
|
var n;
|
||||||
|
(n = window._klOnsite).push.apply(n, arguments);
|
||||||
|
}
|
||||||
|
: function () {
|
||||||
|
for (
|
||||||
|
var n = arguments.length, o = new Array(n), w = 0;
|
||||||
|
w < n;
|
||||||
|
w++
|
||||||
|
)
|
||||||
|
o[w] = arguments[w];
|
||||||
|
var t =
|
||||||
|
"function" == typeof o[o.length - 1]
|
||||||
|
? o.pop()
|
||||||
|
: void 0,
|
||||||
|
e = new Promise(function (n) {
|
||||||
|
window._klOnsite.push(
|
||||||
|
[i].concat(o, [
|
||||||
|
function (i) {
|
||||||
|
t && t(i), n(i);
|
||||||
|
},
|
||||||
|
])
|
||||||
|
);
|
||||||
|
});
|
||||||
|
return e;
|
||||||
|
};
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
|
} catch (n) {
|
||||||
|
(window.klaviyo = window.klaviyo || []),
|
||||||
|
(window.klaviyo.push = function () {
|
||||||
|
var n;
|
||||||
|
(n = window._klOnsite).push.apply(n, arguments);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
<!-- Klaviyo Metric -->
|
||||||
<!-- Yandex.Metrika counter -->
|
<!-- Yandex.Metrika counter -->
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
(function (m, e, t, r, i, k, a) {
|
(function (m, e, t, r, i, k, a) {
|
||||||
|
|||||||
@ -125,13 +125,13 @@ export const useAuthentication = () => {
|
|||||||
const payload = getAuthorizationPayload(email, source);
|
const payload = getAuthorizationPayload(email, source);
|
||||||
const { token, userId, generatingVideo, videoId } = await api.authorization(payload);
|
const { token, userId, generatingVideo, videoId } = await api.authorization(payload);
|
||||||
const { user } = await api.getUser({ token });
|
const { user } = await api.getUser({ token });
|
||||||
if (userId?.length && !!window.ym && typeof window.ym === 'function') {
|
if (userId?.length) {
|
||||||
window.ym(95799066, 'userParams', {
|
metricService.userParams({
|
||||||
hasPersonalVideo: generatingVideo || false,
|
hasPersonalVideo: generatingVideo || false,
|
||||||
email: user.email,
|
email: user.email,
|
||||||
UserID: userId
|
UserID: userId
|
||||||
})
|
})
|
||||||
window.ym(95799066, 'setUserID', userId);
|
metricService.setUserID(userId);
|
||||||
}
|
}
|
||||||
signUp(token, user);
|
signUp(token, user);
|
||||||
setToken(token);
|
setToken(token);
|
||||||
|
|||||||
@ -14,34 +14,47 @@ export enum EGoals {
|
|||||||
}
|
}
|
||||||
|
|
||||||
interface IUserParams {
|
interface IUserParams {
|
||||||
UserID: number;
|
UserID: number | string;
|
||||||
genderFrom: string;
|
genderFrom: string;
|
||||||
email: string;
|
email: string;
|
||||||
|
hasPersonalVideo: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
const environments = import.meta.env
|
const environments = import.meta.env
|
||||||
const metricCounterNumber = Number(environments.AURA_YANDEX_COUNTER_NUMBER)
|
const metricCounterNumber = Number(environments.AURA_YANDEX_COUNTER_NUMBER)
|
||||||
|
|
||||||
const setUserID = (userId: string) => {
|
const checkIsAvailableYandexMetric = () => {
|
||||||
if (typeof window.ym !== "function") return console.error("Yandex.Metric not found");
|
if (typeof window.ym !== "function") {
|
||||||
|
console.error("Yandex.Metric not found")
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
const setUserID = (userId: string) => {
|
||||||
|
if (!checkIsAvailableYandexMetric()) return;
|
||||||
window.ym(metricCounterNumber, "setUserID", userId)
|
window.ym(metricCounterNumber, "setUserID", userId)
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
||||||
|
if (!window.klaviyo) return console.error("Klaviyo.Metric not found");
|
||||||
|
window.klaviyo.push(['identify', userId]);
|
||||||
}
|
}
|
||||||
|
|
||||||
const userParams = (parameters: Partial<IUserParams>) => {
|
const userParams = (parameters: Partial<IUserParams>) => {
|
||||||
if (typeof window.ym !== "function") return console.error("Yandex.Metric not found");
|
if (!checkIsAvailableYandexMetric()) return;
|
||||||
|
|
||||||
window.ym(metricCounterNumber, "userParams", parameters)
|
window.ym(metricCounterNumber, "userParams", parameters)
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
||||||
|
if (!window.klaviyo) return console.error("Klaviyo.Metric not found");
|
||||||
|
window.klaviyo.push(['identify', parameters]);
|
||||||
}
|
}
|
||||||
|
|
||||||
const reachGoal = (goal: EGoals) => {
|
const reachGoal = (goal: EGoals) => {
|
||||||
if (typeof window.ym !== "function") return console.error("Yandex.Metric not found");
|
if (!checkIsAvailableYandexMetric()) return;
|
||||||
|
|
||||||
window.ym(metricCounterNumber, "reachGoal", goal)
|
window.ym(metricCounterNumber, "reachGoal", goal)
|
||||||
console.log("goal: ", goal);
|
console.log("goal: ", goal);
|
||||||
|
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
if (!window.klaviyo) return console.error("Klaviyo.Metric not found");
|
||||||
|
window.klaviyo.push(['track', goal]);
|
||||||
}
|
}
|
||||||
|
|
||||||
type THitOptions = {
|
type THitOptions = {
|
||||||
@ -56,11 +69,12 @@ type THitOptions = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const hit = (url?: string, options?: THitOptions) => {
|
const hit = (url?: string, options?: THitOptions) => {
|
||||||
|
if (!checkIsAvailableYandexMetric()) return;
|
||||||
window.ym(metricCounterNumber, "hit", url, options);
|
window.ym(metricCounterNumber, "hit", url, options);
|
||||||
}
|
}
|
||||||
|
|
||||||
const initMetric = () => {
|
const initMetric = () => {
|
||||||
if (typeof window.ym !== "function") return console.error("Yandex.Metric not found");
|
if (!checkIsAvailableYandexMetric()) return;
|
||||||
|
|
||||||
window.ym(metricCounterNumber, "init", {
|
window.ym(metricCounterNumber, "init", {
|
||||||
clickmap: true,
|
clickmap: true,
|
||||||
|
|||||||
@ -27,6 +27,8 @@ declare global {
|
|||||||
interface Window {
|
interface Window {
|
||||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
ym: any;
|
ym: any;
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
|
klaviyo: any;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user