File size: 38,516 Bytes
9d2d895 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 | /**
* Analytics facade β wired to Umami.
*
* Dashboard analytics load after first paint; calls made before the script
* arrives are kept in a small bounded queue and replayed on script load.
*/
import { scheduleAfterFirstPaint } from '@/utils/after-paint';
import { subscribeAuthState, type AuthSession } from './auth-state';
import { onSubscriptionChange, type SubscriptionInfo } from './billing';
import { getClerkUserCreatedAt } from './clerk';
import { DODO_PRODUCT_IDS } from '@/config/product-ids.generated';
import type { ActivationEventName, ActivationStepId } from './pro-activation-state';
const UMAMI_SCRIPT_SRC = 'https://abacus.worldmonitor.app/script.js';
const UMAMI_IDENTIFY_ENDPOINT = new URL('/api/send', UMAMI_SCRIPT_SRC).href;
const UMAMI_WEBSITE_ID = 'e8800335-c853-46a8-8497-c993ed2f58bc';
// data-domains is temporarily reduced to the worldmonitor.app hosts + happy
// while upstream Umami issue #4183 (https://github.com/umami-software/umami/issues/4183)
// is open β v3.1.0 has a race in prisma.sessionData.updateMany() that returns HTTP 500
// from /api/send for 4-8% of requests across all listed hosts. Self-hosted Umami has no
// fix tag yet (master since 2026-04-17 has 22 commits but none touch sessionData). The
// tracker self-disables when the current hostname isn't in data-domains β the same
// mechanism that keeps energy.worldmonitor.app silent. Restore tech, finance, and
// commodity once #4183 ships in a tagged release.
//
// www.worldmonitor.app MUST be listed alongside the apex (#4931): the apex 301s
// to www in production, and the tracker's data-domains check is an EXACT
// hostname match (`!domains.includes(hostname)` β disabled) β with only the
// apex listed, every event from the canonical host was silently dropped.
const UMAMI_DOMAINS = 'worldmonitor.app,www.worldmonitor.app,happy.worldmonitor.app';
const UMAMI_QUEUE_LIMIT = 50;
const UMAMI_LOAD_ATTEMPT_LIMIT = 2;
const UMAMI_LOAD_RETRY_DELAY_MS = 5_000;
const UMAMI_IDENTIFY_RETRY_LIMIT = 2;
const UMAMI_IDENTIFY_RETRY_BASE_DELAY_MS = 1_000;
type QueuedUmamiCall =
| { kind: 'track'; event: UmamiEvent; data?: Record<string, unknown> }
| {
kind: 'identify';
data: Record<string, unknown>;
revision: number;
retryAttempt: number;
};
type IdentifyCall = Extract<QueuedUmamiCall, { kind: 'identify' }>;
const pendingUmamiCalls: QueuedUmamiCall[] = [];
let umamiLoadScheduled = false;
let umamiLoadStarted = false;
let umamiLoadAttempts = 0;
let latestIdentityRevision = 0;
let identifyRetryTimer: ReturnType<typeof setTimeout> | null = null;
let identifyInFlight = false;
let pendingIdentityCall: IdentifyCall | null = null;
let identifyDeliveryGeneration = 0;
// ---------------------------------------------------------------------------
// Type-safe event catalog β every event name lives here.
// Typo in an event string = compile error.
// ---------------------------------------------------------------------------
const EVENTS = {
// Search
'search-open': true,
'search-used': true,
'search-result-selected': true,
// Country / map
'country-selected': true,
'country-brief-opened': true,
'map-layer-toggle': true,
// Panels
'panel-toggle': true,
// Settings
'settings-open': true,
'variant-switch': true,
'theme-changed': true,
'language-change': true,
'feature-toggle': true,
// News
'news-sort-toggle': true,
'news-summarize': true,
'live-news-fullscreen': true,
// Webcams
'webcam-selected': true,
'webcam-region-filter': true,
'webcam-fullscreen': true,
// Downloads / banners
'download-clicked': true,
'critical-banner': true,
// AI widget
'widget-ai-open': true,
'widget-ai-generate': true,
'widget-ai-success': true,
// WM Analyst dashboard control
'analyst-control-action': true,
// MCP
'mcp-connect-attempt': true,
'mcp-connect-success': true,
'mcp-panel-add': true,
// WebMCP (in-page agent tool surface)
'webmcp-registered': true,
'webmcp-tool-invoked': true,
// Route Explorer
'route-explorer:opened': true,
'route-explorer:query': true,
'route-explorer:tab-switch': true,
'route-explorer:alternative-selected': true,
'route-explorer:impact-viewed': true,
'route-explorer:share-copied': true,
'route-explorer:free-cta-click': true,
'route-explorer:closed': true,
// Auth (wired in PR #1812 β do not remove)
'sign-in': true,
'sign-up': true,
'sign-out': true,
'gate-hit': true,
// Conversion funnel (#4931) β pageview β gate-hit β checkout-start β
// checkout-success is the end-to-end funnel; the /pro page fires its own
// checkout-start via the raw tracker (separate build, same event name).
'checkout-start': true,
'checkout-success': true,
'checkout-failed': true,
// Brief β open-rate lift measurement for U10's followed-country bias
// (followed-countries plan U11). Fired from the dashboard cover card
// and from the hosted magazine source-link clicks. `followed` flags
// whether the click target maps to a country the user follows;
// correlate with non-followed threads to size the bias's effect.
'brief-thread-open': true,
// Pro Activation Onboarding funnel (#4771) β day-0 activation interstitial:
// entered β per-step confirmed/skipped/blocked/failed β exit (with completion
// state). Names mirror ACTIVATION_EVENTS in @/services/pro-activation-state
// (the single naming source); this catalog matches those literals.
// `blocked` is a platform refusal, not a user choice (#5609); `failed`
// (#5600) is our own write erroring. Both used to land as `skipped`, which is
// how a day of broken day-0 activations read as user disinterest.
'pro-activation-entered': true,
'pro-activation-step-confirmed': true,
'pro-activation-step-skipped': true,
'pro-activation-step-blocked': true,
'pro-activation-step-failed': true,
'pro-activation-exit': true,
} as const;
export type UmamiEvent = keyof typeof EVENTS;
function queueUmamiCall(call: QueuedUmamiCall): void {
// Identity is a latest-snapshot write, not an append-only event. Auth and
// billing can both publish before the deferred tracker loads; replaying every
// intermediate snapshot concurrently is both wasteful and the trigger for
// Umami #4183's sessionData race. Keep only the newest queued identity.
if (call.kind === 'identify') {
for (let index = pendingUmamiCalls.length - 1; index >= 0; index -= 1) {
if (pendingUmamiCalls[index]?.kind === 'identify') {
pendingUmamiCalls.splice(index, 1);
}
}
}
if (pendingUmamiCalls.length >= UMAMI_QUEUE_LIMIT) {
pendingUmamiCalls.shift();
}
pendingUmamiCalls.push(call);
}
function clearScheduledIdentityRetry(): void {
if (identifyRetryTimer !== null) {
clearTimeout(identifyRetryTimer);
identifyRetryTimer = null;
}
}
function createIdentifyCall(data: Record<string, unknown>): QueuedUmamiCall {
latestIdentityRevision += 1;
clearScheduledIdentityRetry();
return {
kind: 'identify',
data,
revision: latestIdentityRevision,
retryAttempt: 0,
};
}
function scheduleIdentityRetry(call: IdentifyCall): void {
if (call.revision !== latestIdentityRevision) return;
if (call.retryAttempt >= UMAMI_IDENTIFY_RETRY_LIMIT) return;
clearScheduledIdentityRetry();
const generation = identifyDeliveryGeneration;
const retryCall = {
...call,
retryAttempt: call.retryAttempt + 1,
};
const delay = UMAMI_IDENTIFY_RETRY_BASE_DELAY_MS * (2 ** call.retryAttempt);
identifyRetryTimer = setTimeout(() => {
identifyRetryTimer = null;
if (generation !== identifyDeliveryGeneration) return;
if (retryCall.revision !== latestIdentityRevision) return;
if (!sendUmamiCall(retryCall)) {
queueUmamiCall(retryCall);
}
}, delay);
}
function isUmamiIdentifyBeacon(input: RequestInfo | URL, init?: RequestInit): boolean {
const url = typeof input === 'string'
? input
: input instanceof URL
? input.href
: input.url;
const method = init?.method ?? (input instanceof Request ? input.method : 'GET');
if (url !== UMAMI_IDENTIFY_ENDPOINT || method.toUpperCase() !== 'POST' || typeof init?.body !== 'string') {
return false;
}
try {
return (JSON.parse(init.body) as { type?: unknown }).type === 'identify';
} catch {
return false;
}
}
/**
* Umami v3.1.0 swallows its own fetch and JSON failures, including HTTP 500s,
* so its public identify() promise does not tell us whether the collector
* accepted an identity snapshot. Observe just this synchronous beacon while
* leaving the native request/promise chain untouched for Umami's cache update.
*/
function identifyWithDeliveryObserver(
umami: NonNullable<Window['umami']>,
data: Record<string, unknown>,
): unknown {
const originalFetch = window.fetch;
let observedDelivery: Promise<Response> | undefined;
const observedFetch = ((input: RequestInfo | URL, init?: RequestInit) => {
if (!isUmamiIdentifyBeacon(input, init)) return originalFetch(input, init);
try {
const result = originalFetch(input, init);
const delivery = Promise.resolve(result).then((response) => {
if (!response.ok) throw new Error(`Umami identify collector returned HTTP ${response.status}`);
return response;
});
// Keep an unexpected synchronous tracker throw from turning the observer
// promise into a separate unhandled rejection. sendUmamiCall still
// receives the original rejecting delivery promise below.
void delivery.catch(() => {});
observedDelivery = delivery;
return result;
} catch (error) {
const delivery = Promise.reject<Response>(error);
void delivery.catch(() => {});
observedDelivery = delivery;
throw error;
}
}) as typeof window.fetch;
try {
window.fetch = observedFetch;
} catch {
// A non-writable fetch is not a delivery signal; preserve the native
// tracker behavior rather than fabricating a request or failing identity.
return umami.identify(data);
}
try {
const nativeResult = umami.identify(data);
return observedDelivery ?? nativeResult;
} finally {
window.fetch = originalFetch;
}
}
function finishIdentityDelivery(call: IdentifyCall, generation: number, failed: boolean): void {
if (generation !== identifyDeliveryGeneration) return;
identifyInFlight = false;
const nextCall = pendingIdentityCall;
pendingIdentityCall = null;
if (nextCall) {
if (!sendUmamiCall(nextCall)) {
queueUmamiCall(nextCall);
}
return;
}
if (failed) {
scheduleIdentityRetry(call);
}
}
function sendIdentityCall(
call: IdentifyCall,
umami: NonNullable<Window['umami']>,
): boolean {
// Umami stores each identity field independently with an update-then-create
// sequence. Keep a single collector write active and retain only the latest
// snapshot received during that write so auth and billing cannot race the
// same sessionData key.
if (identifyInFlight) {
pendingIdentityCall = call;
return true;
}
identifyInFlight = true;
const generation = identifyDeliveryGeneration;
try {
const result = identifyWithDeliveryObserver(umami, call.data);
if (result && typeof (result as { then?: unknown }).then === 'function') {
void Promise.resolve(result).then(
() => finishIdentityDelivery(call, generation, false),
() => finishIdentityDelivery(call, generation, true),
);
} else {
finishIdentityDelivery(call, generation, false);
}
} catch {
finishIdentityDelivery(call, generation, true);
}
return true;
}
function sendUmamiCall(call: QueuedUmamiCall): boolean {
if (typeof window === 'undefined') return false;
const umami = window.umami;
if (!umami) return false;
if (call.kind === 'identify') {
return sendIdentityCall(call, umami);
}
try {
const result: unknown = umami.track(call.event, call.data);
// A tracker promise can reject ASYNCHRONOUSLY on a transient network
// failure. Track remains at-most-once: Umami #4183 can return 500 after
// committing the event row.
if (result && typeof (result as { catch?: unknown }).catch === 'function') {
void (result as Promise<unknown>).catch(() => {});
}
// Durable-delivery contract for the terminal funnel event (#4934
// round-2 F2): the marker written by trackCheckoutSuccess is cleared
// only once the event actually reached the tracker, so a page reload
// that races the deferred queue replays instead of dropping it.
if (call.kind === 'track' && call.event === 'checkout-success') {
clearPendingCheckoutSuccessMarker();
}
// Same contract for /pro checkout-start replays (#4934 round-6): the
// handoff marker survives until a replayed event actually reaches the
// tracker β clearing at read time reopened the round-2 reload race.
// Only replayed events clear it (a live dashboard checkout-start
// delivering proves nothing about the queued replays). All replays
// flush in one synchronous loop, so first-delivery-clears is safe.
if (call.kind === 'track' && call.event === 'checkout-start' && call.data?.replayed === true) {
clearPendingProFunnelMarker();
}
return true;
} catch {
return false;
}
}
function flushPendingUmamiCalls(): void {
if (pendingUmamiCalls.length === 0) return;
if (typeof window === 'undefined' || !window.umami) return;
const calls = pendingUmamiCalls.splice(0, pendingUmamiCalls.length);
for (const call of calls) sendUmamiCall(call);
}
function loadUmamiScript(): void {
if (umamiLoadStarted || typeof document === 'undefined') return;
const existing = document.querySelector<HTMLScriptElement>(`script[src="${UMAMI_SCRIPT_SRC}"]`);
if (existing) {
// A script tag already exists (e.g. re-entry after a soft navigation).
// Mark load as started so the guard above short-circuits future calls.
// If Umami already initialised, flush now; otherwise wait for its load
// event. Flushing unconditionally before window.umami is set is a no-op
// and a dead {once:true} listener if load already fired.
umamiLoadStarted = true;
if (typeof window !== 'undefined' && window.umami) {
flushPendingUmamiCalls();
} else {
existing.addEventListener('load', flushPendingUmamiCalls, { once: true });
}
return;
}
umamiLoadStarted = true;
umamiLoadAttempts += 1;
const script = document.createElement('script');
script.async = true;
script.src = UMAMI_SCRIPT_SRC;
script.dataset.websiteId = UMAMI_WEBSITE_ID;
script.dataset.domains = UMAMI_DOMAINS;
script.addEventListener('load', flushPendingUmamiCalls, { once: true });
script.addEventListener('error', () => {
umamiLoadStarted = false;
script.remove();
if (umamiLoadAttempts < UMAMI_LOAD_ATTEMPT_LIMIT) {
setTimeout(loadUmamiScript, UMAMI_LOAD_RETRY_DELAY_MS);
}
}, { once: true });
document.head.appendChild(script);
}
/** Type-safe Umami wrapper. Safe to call even if the script hasn't loaded. */
export function track(event: UmamiEvent, data?: Record<string, unknown>): void {
if (!sendUmamiCall({ kind: 'track', event, data })) {
queueUmamiCall({ kind: 'track', event, data });
}
}
export function initAnalytics(): void {
if (umamiLoadScheduled || typeof window === 'undefined' || typeof document === 'undefined') return;
umamiLoadScheduled = true;
scheduleAfterFirstPaint(loadUmamiScript, 3000);
}
// ---------------------------------------------------------------------------
// User identity β call after auth state resolves so Umami can segment events
// by user/plan. Safe to call before Umami script loads.
// ---------------------------------------------------------------------------
export function identifyUser(
userId: string,
plan: string,
subStatus?: SubscriptionInfo['status'] | null,
planKey?: string | null,
): void {
const data = {
userId,
plan,
...(subStatus != null && { subStatus }),
...(planKey != null && { planKey }),
};
const call = createIdentifyCall(data);
if (!sendUmamiCall(call)) {
queueUmamiCall(call);
}
}
export function clearIdentity(): void {
const call = createIdentifyCall({});
if (!sendUmamiCall(call)) {
queueUmamiCall(call);
}
}
let _unsubAuth: (() => void) | null = null;
let _unsubBilling: (() => void) | null = null;
// Cached latest values so either subscription firing can re-identify with full data
let _lastAuth: AuthSession | null = null;
let _lastSub: SubscriptionInfo | null = null;
function _syncIdentity(): void {
const user = _lastAuth?.user;
if (user) {
identifyUser(user.id, user.role, _lastSub?.status ?? null, _lastSub?.planKey ?? null);
} else {
_lastSub = null;
clearIdentity();
}
}
/**
* Call once after initAuthState() to keep Umami identity in sync with
* the authenticated user and their subscription status.
* Re-entrant safe: subsequent calls are no-ops.
*/
export function initAuthAnalytics(): void {
if (_unsubAuth) return;
_unsubAuth = subscribeAuthState((state) => {
const prevUserId = _lastAuth?.user?.id ?? null;
const nextUserId = state.user?.id ?? null;
if (prevUserId !== nextUserId) {
_lastSub = null;
// Detect a genuine sign-UP (not a sign-in). Nullβnon-null id transition
// plus a createdAt within FRESH_SIGNUP_WINDOW_MS of now means Clerk
// just created this account. Firing trackSignUp on the button click
// would conflate "opened the sign-up modal" with "completed the flow";
// gating on createdAt freshness captures the successful-completion
// signal we actually want to measure.
//
// Durable fire-once guard: `_lastAuth` resets to null on every page
// load, so without a persisted marker the nullβuser transition looks
// identical on the completion reload and on any reload within the
// 60s freshness window. We'd re-fire trackSignUp on every tab
// refresh until createdAt ages out, inflating the signup count.
// sessionStorage scopes the marker to the browser tab β tight enough
// that re-install / new session reliably re-counts, wide enough that
// a reload mid-signup doesn't double-count.
if (
nextUserId !== null &&
!hasTrackedSignupInSession(nextUserId) &&
isLikelyFreshSignup(prevUserId, nextUserId, getClerkUserCreatedAt(), Date.now())
) {
trackSignUp('clerk');
markSignupTrackedInSession(nextUserId);
}
}
_lastAuth = state;
_syncIdentity();
});
_unsubBilling = onSubscriptionChange((sub) => {
_lastSub = sub;
_syncIdentity();
});
}
/** Tear down auth + billing listeners. Symmetric with initAuthAnalytics(). */
export function destroyAuthAnalytics(): void {
_unsubAuth?.();
_unsubBilling?.();
_unsubAuth = null;
_unsubBilling = null;
_lastAuth = null;
_lastSub = null;
clearIdentity();
}
// ---------------------------------------------------------------------------
// Auth events
// ---------------------------------------------------------------------------
export function trackSignIn(method: string): void {
track('sign-in', { method });
}
export function trackSignUp(method: string): void {
track('sign-up', { method });
}
export function trackAnalystControlAction(actionType: string, status: string, reason?: string): void {
track('analyst-control-action', {
actionType,
status,
...(reason ? { reason } : {}),
});
}
/**
* Window during which a freshly-observed Clerk `createdAt` is treated
* as "this user just signed up." 60s is conservative enough to survive
* network jitter between Clerk's user.created and the client seeing
* the auth-state transition, while staying tight enough to reject
* returning-user sign-ins on accounts created weeks ago.
*/
export const FRESH_SIGNUP_WINDOW_MS = 60_000;
/**
* Pure predicate: was the just-observed auth transition a fresh sign-up?
*
* Exported for testability. Do not read Date.now() or Clerk state from
* inside this function β callers pass both, so tests can pin time and
* user state.
*/
/**
* Lower bound for clock skew. A createdAt earlier-than-now by up to
* this amount is treated as "now" for freshness purposes β tolerates
* client clocks that lag the server. Bigger negatives (createdAt
* unrealistically far in the future) are rejected as malformed.
*/
const FRESH_SIGNUP_CLOCK_SKEW_MS = 5_000;
/**
* localStorage-backed fire-once guard, keyed by user id. Originally used
* sessionStorage but sessionStorage is per-TAB β a user who signs up and
* then opens a second tab on the app within the 60s createdAt freshness
* window would fire a second trackSignUp from that fresh tab's
* `_lastAuth=null β user` transition. localStorage is shared across
* tabs in the same browser profile, so once any tab marks the user as
* tracked, no other tab for the same user will re-fire.
*
* Keyed per user id so account switches within the same browser still
* correctly track each user's first signup (rare but valid). The key
* never needs to be cleaned up because Clerk user ids are effectively
* unique forever β a deleted user's key is harmless and the storage
* footprint is trivial (one byte per user who ever signed up here).
*
* Read/write are try/catched because storage throws in private-mode /
* quota-exceeded / disabled scenarios; we fail open (track, don't
* persist) rather than swallow signups.
*/
const SIGNUP_TRACKED_KEY_PREFIX = 'wm-signup-tracked:';
export function hasTrackedSignupInSession(userId: string): boolean {
try {
return window.localStorage.getItem(SIGNUP_TRACKED_KEY_PREFIX + userId) === '1';
} catch {
return false;
}
}
export function markSignupTrackedInSession(userId: string): void {
try {
window.localStorage.setItem(SIGNUP_TRACKED_KEY_PREFIX + userId, '1');
} catch {
// Storage unavailable β we'll just risk a single double-count on
// reload instead of crashing analytics init.
}
}
export function isLikelyFreshSignup(
prevUserId: string | null,
nextUserId: string | null,
createdAtMs: number | null,
nowMs: number,
): boolean {
if (prevUserId !== null) return false;
if (nextUserId === null) return false;
if (createdAtMs === null) return false;
const age = nowMs - createdAtMs;
// Accept: -5s β€ age β€ 60s (brief clock skew tolerance + fresh window)
// Reject: < -5s (createdAt unrealistically far in the future β malformed)
// > 60s (returning user, not a fresh signup)
return age >= -FRESH_SIGNUP_CLOCK_SKEW_MS && age <= FRESH_SIGNUP_WINDOW_MS;
}
export function trackSignOut(): void {
track('sign-out');
}
/**
* Test-only: reset module-level deferred-load state so each test starts from
* a clean slate. The queue and load guards are module singletons that persist
* across the shared module import in tests/secondary-startup.test.mts.
*/
export function resetAnalyticsForTesting(): void {
clearScheduledIdentityRetry();
identifyDeliveryGeneration += 1;
identifyInFlight = false;
pendingIdentityCall = null;
pendingUmamiCalls.length = 0;
umamiLoadScheduled = false;
umamiLoadStarted = false;
umamiLoadAttempts = 0;
latestIdentityRevision = 0;
}
export function trackGateHit(feature: string): void {
track('gate-hit', { feature });
}
// ---------------------------------------------------------------------------
// Conversion funnel (#4931)
// ---------------------------------------------------------------------------
/**
* Closed product-id vocabulary for analytics (#4934 round-4 F2): the
* dashboard resume path replays a productId that originally travelled
* through URL/sessionStorage, so a crafted value must not inject unbounded
* cardinality into Umami. Unknown ids collapse to 'unknown'; the checkout
* flow itself still passes the raw id through (backend validates).
* Auto-fresh: DODO_PRODUCT_IDS is generated from the catalog. Keeping this
* small allowlist separate means analytics does not pull the checkout config
* into the post-hydration module graph. (#5165)
*/
const KNOWN_PRODUCT_IDS = DODO_PRODUCT_IDS;
export function bucketProductIdForAnalytics(productId: string): string {
return KNOWN_PRODUCT_IDS.has(productId) ? productId : 'unknown';
}
/**
* Fired when a checkout is initiated from the dashboard (any locked-panel
* CTA, settings upgrade card, banner, etc. β all route through
* `startCheckout`). `authed: false` marks intent clicks from signed-out
* users that detour through sign-in before a Dodo session exists;
* `surface: 'dashboard-resume'` marks the post-sign-in auto-resume
* re-entry so a signed-out conversion (two events: dashboard/authed:false,
* then dashboard-resume/authed:true) isn't double-counted as two attempts.
* The /pro page mirrors this with 'pro-page' / 'pro-resume'.
*/
export function trackCheckoutStart(
productId: string,
authed: boolean,
surface: 'dashboard' | 'dashboard-resume' = 'dashboard',
): void {
track('checkout-start', { productId: bucketProductIdForAnalytics(productId), surface, authed });
}
/**
* The one funnel event that races a reload: checkout-success is tracked on
* the post-checkout dashboard load, but the entitlement watcher reloads the
* page the moment Pro lands β often before the deferred Umami queue flushes
* (#4934 round-2 F2). A sessionStorage marker written at track time and
* cleared only on actual delivery (see sendUmamiCall) lets the next boot
* replay the event instead of dropping it. sessionStorage is per-tab, so
* the replay can't leak across tabs or users.
*/
const CHECKOUT_SUCCESS_PENDING_KEY = 'wm-checkout-success-pending';
function clearPendingCheckoutSuccessMarker(): void {
try {
window.sessionStorage.removeItem(CHECKOUT_SUCCESS_PENDING_KEY);
} catch {
// Storage unavailable β replay just won't be possible, same as before.
}
}
/**
* Fired on the dashboard when a checkout return reconciles as success.
* `source` distinguishes the full-page return-URL path from the legacy
* overlay session-flag path (see panel-layout.ts checkout-return wiring).
*/
export function trackCheckoutSuccess(source: 'url-return' | 'overlay-flag'): void {
try {
window.sessionStorage.setItem(CHECKOUT_SUCCESS_PENDING_KEY, source);
} catch {
// Storage denied β fall back to fire-and-hope, matching every other event.
}
track('checkout-success', { source });
}
/**
* Re-queue a checkout-success whose delivery was cut off by the entitlement
* reload. Called on every non-checkout-return boot (panel-layout); a no-op
* unless the durable marker survived. Deliberately does NOT rewrite the
* marker: it stays until sendUmamiCall confirms delivery, so repeated
* reloads keep replaying rather than dropping.
*/
export function replayPendingCheckoutSuccess(): void {
let source: string | null = null;
try {
source = window.sessionStorage.getItem(CHECKOUT_SUCCESS_PENDING_KEY);
} catch {
return;
}
if (!source) return;
track('checkout-success', { source, replayed: true });
}
/**
* Replay /pro checkout-start events that died with the redirect (#4934
* round-5): the /pro page mirrors undelivered checkout-start events into
* sessionStorage (see pro-test/src/services/checkout.ts) because the fast
* signed-in/resume path top-level-redirects to Dodo before its flush poll
* runs. The buyer returns to the dashboard in the same tab, so this boot
* hook replays them here. Every field is re-validated against closed
* vocabularies β sessionStorage is tab-local but still client-writable,
* and replayed junk must not become analytics cardinality.
*
* Delivery contract (round-6): the marker is NOT cleared here. Replays
* enter the deferred queue, and the entitlement watcher can reload the
* page before it flushes β clearing at read time would drop the event
* permanently in exactly the race round-2 fixed for checkout-success.
* Instead the key is REWRITTEN with only the sanitized survivors (so
* junk can't loop forever) and removed in sendUmamiCall once a replayed
* event actually reaches the tracker.
*/
const PRO_FUNNEL_PENDING_KEY = 'wm-pro-funnel-pending';
function clearPendingProFunnelMarker(): void {
try {
window.sessionStorage.removeItem(PRO_FUNNEL_PENDING_KEY);
} catch {
// Storage unavailable β worst case is a duplicate replayed:true event
// on the next boot, the side we deliberately err on.
}
}
export function replayPendingProFunnelEvents(): void {
let raw: string | null = null;
try {
raw = window.sessionStorage.getItem(PRO_FUNNEL_PENDING_KEY);
} catch {
return;
}
if (!raw) return;
const sanitized: Array<{ productId: string; surface: 'pro-page' | 'pro-resume'; authed: boolean }> = [];
try {
const items: unknown = JSON.parse(raw);
if (Array.isArray(items)) {
for (const item of items.slice(0, 10)) {
if (!item || typeof item !== 'object') continue;
const { event, data } = item as { event?: unknown; data?: unknown };
if (event !== 'checkout-start' || !data || typeof data !== 'object') continue;
const d = data as Record<string, unknown>;
sanitized.push({
productId: bucketProductIdForAnalytics(String(d.productId ?? '')),
surface: d.surface === 'pro-resume' ? 'pro-resume' : 'pro-page',
authed: Boolean(d.authed),
});
}
}
} catch {
// Malformed JSON β nothing replayable.
}
if (sanitized.length === 0) {
clearPendingProFunnelMarker();
return;
}
// Persist the sanitized survivors so a pre-delivery reload retries
// exactly these (bounded, closed-vocabulary), then queue the replays.
try {
window.sessionStorage.setItem(
PRO_FUNNEL_PENDING_KEY,
JSON.stringify(sanitized.map((data) => ({ event: 'checkout-start', data }))),
);
} catch {
// Rewrite failed β the original payload stays; sanitization re-runs
// on the next boot. Still safe to queue this boot's replays.
}
for (const data of sanitized) {
track('checkout-start', { ...data, replayed: true });
}
}
/**
* Closed status vocabulary for checkout-failed (#4934 round-2 F3). The raw
* value is URL-derived (Dodo return params β and checkout-return.ts:117
* forwards ANY unknown status when Dodo ID params are present), so a
* crafted or novel URL must not inject unbounded cardinality into
* analytics. Unknowns collapse to 'other'.
*/
const CHECKOUT_FAILED_STATUSES = new Set(['failed', 'declined', 'cancelled', 'canceled']);
/** Fired when a checkout return reconciles as failed/declined/cancelled. */
export function trackCheckoutFailed(rawStatus: string): void {
const status = CHECKOUT_FAILED_STATUSES.has(rawStatus) ? rawStatus : 'other';
track('checkout-failed', { status });
}
// ---------------------------------------------------------------------------
// Pro Activation Onboarding funnel (#4771)
// ---------------------------------------------------------------------------
/** The activation funnel events β the leaf's ACTIVATION_EVENTS is the naming source. */
export type ProActivationEvent = ActivationEventName;
/**
* The ONLY fields allowed on an activation event payload. Deliberately narrow:
* the plan tier, the step id (step events), and the aggregate exit counts
* (exit event). NEVER the subscription id or any billing identifier β cohort
* joins key on the userId Umami already receives via identifyUser(). Mirrors
* the closed-vocabulary minimization of bucketProductIdForAnalytics above.
*/
export interface ProActivationEventFields {
planKey?: string | null;
step?: ActivationStepId;
completion?: 'complete' | 'partial' | 'none';
verified?: number;
pending?: number;
failed?: number;
total?: number;
}
/**
* Track a Pro-activation funnel event with a minimized payload. Every field is
* whitelisted here, so a caller cannot widen the payload into billing identity:
* only planKey / step / the aggregate exit counts ever reach Umami.
*/
export function trackProActivation(
event: ProActivationEvent,
fields: ProActivationEventFields = {},
): void {
const data: Record<string, unknown> = {};
if (fields.planKey != null) data.planKey = fields.planKey;
if (fields.step != null) data.step = fields.step;
if (fields.completion != null) data.completion = fields.completion;
if (fields.verified != null) data.verified = fields.verified;
if (fields.pending != null) data.pending = fields.pending;
if (fields.failed != null) data.failed = fields.failed;
if (fields.total != null) data.total = fields.total;
track(event, data);
}
// ---------------------------------------------------------------------------
// Generic (kept as no-ops β too noisy / not useful in Umami)
// ---------------------------------------------------------------------------
export function trackEvent(_name: string, _props?: Record<string, unknown>): void {}
export function trackEventBeforeUnload(_name: string, _props?: Record<string, unknown>): void {}
export function trackPanelView(_panelId: string): void {}
export function trackApiKeysSnapshot(): void {}
export function trackUpdateShown(_current: string, _remote: string): void {}
export function trackUpdateClicked(_version: string): void {}
export function trackUpdateDismissed(_version: string): void {}
export function trackDownloadBannerDismissed(): void {}
// ---------------------------------------------------------------------------
// Search
// ---------------------------------------------------------------------------
export function trackSearchUsed(queryLength: number, resultCount: number): void {
track('search-used', { queryLength, resultCount });
}
export function trackSearchResultSelected(resultType: string): void {
track('search-result-selected', { type: resultType });
}
// ---------------------------------------------------------------------------
// Country / map
// ---------------------------------------------------------------------------
export function trackCountrySelected(code: string, name: string, source: string): void {
track('country-selected', { code, name, source });
}
export function trackCountryBriefOpened(countryCode: string): void {
track('country-brief-opened', { code: countryCode });
}
// ---------------------------------------------------------------------------
// Brief thread-open (followed-countries plan, U11)
// ---------------------------------------------------------------------------
export type BriefThreadOpenSeverity =
| 'critical'
| 'high'
| 'medium'
| 'low'
| 'info'
| null;
export interface BriefThreadOpenProps {
/** ISO-2 country code, or null when no primary country attaches. */
country: string | null;
/** True iff the user follows `country` at click time. */
followed: boolean;
severity: BriefThreadOpenSeverity;
/** Where the click originated. */
source: 'dashboard' | 'magazine';
}
/**
* Fire-and-forget: `track` short-circuits when Umami hasn't loaded.
* Wrap call sites in try/catch anyway so a future regression in
* `track` (e.g. throwing identify) cannot break navigation UX.
*/
export function trackBriefThreadOpen(props: BriefThreadOpenProps): void {
track('brief-thread-open', {
country: props.country,
followed: props.followed,
severity: props.severity,
source: props.source,
});
}
export function trackMapLayerToggle(layerId: string, enabled: boolean, source: 'user' | 'programmatic'): void {
if (source !== 'user') return;
track('map-layer-toggle', { layerId, enabled });
}
export function trackMapViewChange(_view: string): void {
// No-op: low analytical value.
}
// ---------------------------------------------------------------------------
// Panels
// ---------------------------------------------------------------------------
export function trackPanelToggled(panelId: string, enabled: boolean): void {
track('panel-toggle', { panelId, enabled });
}
export function trackPanelResized(_panelId: string, _newSpan: number): void {
// No-op: fires on every drag step, too noisy for analytics.
}
// ---------------------------------------------------------------------------
// App-wide settings
// ---------------------------------------------------------------------------
export function trackVariantSwitch(from: string, to: string): void {
track('variant-switch', { from, to });
}
export function trackThemeChanged(theme: string): void {
track('theme-changed', { theme });
}
export function trackLanguageChange(language: string): void {
track('language-change', { language });
}
export function trackFeatureToggle(featureId: string, enabled: boolean): void {
track('feature-toggle', { featureId, enabled });
}
// ---------------------------------------------------------------------------
// AI / LLM
// ---------------------------------------------------------------------------
export function trackLLMUsage(_provider: string, _model: string, _cached: boolean): void {
// No-op: per-request noise, not a meaningful user action for analytics.
}
export function trackLLMFailure(_lastProvider: string): void {
// No-op: per-request noise, not a meaningful user action for analytics.
}
// ---------------------------------------------------------------------------
// Webcams
// ---------------------------------------------------------------------------
export function trackWebcamSelected(webcamId: string, city: string, viewMode: string): void {
track('webcam-selected', { webcamId, city, viewMode });
}
export function trackWebcamRegionFiltered(region: string): void {
track('webcam-region-filter', { region });
}
// ---------------------------------------------------------------------------
// Downloads / banners / findings
// ---------------------------------------------------------------------------
export function trackDownloadClicked(platform: string): void {
track('download-clicked', { platform });
}
export function trackCriticalBannerAction(action: string, theaterId: string): void {
track('critical-banner', { action, theaterId });
}
export function trackFindingClicked(_id: string, _source: string, _type: string, _priority: string): void {
// No-op: niche feature, low analytical value.
}
export function trackDeeplinkOpened(_type: string, _target: string): void {
// No-op: not useful for analytics.
}
|