AW-106-klaviyo-metric

This commit is contained in:
gofnnp 2024-06-28 12:43:33 +04:00
parent b5f6329467
commit 89b0939b83
4 changed files with 44 additions and 13 deletions

View File

@ -44,6 +44,21 @@
</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>
<!-- 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) {

View File

@ -123,13 +123,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);

View File

@ -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._learnq) return console.error("Klaviyo.Metric not found");
window._learnq.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._learnq) return console.error("Klaviyo.Metric not found");
window._learnq.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._learnq) return console.error("Klaviyo.Metric not found");
window._learnq.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,

View File

@ -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
_learnq: any;
} }
} }