@inferevents/sdk 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -2
- package/dist/index.d.cts +22 -16
- package/dist/index.d.ts +22 -16
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
'use strict';var v=false;function T(e){v=e;}function a(e,...t){v&&console.log(`[infer] ${e}`,...t);}function
|
|
2
|
-
exports.destroy=Te;exports.flush=
|
|
1
|
+
'use strict';var v=false;function T(e){v=e;}function a(e,...t){v&&console.log(`[infer] ${e}`,...t);}function p(e,...t){v&&console.warn(`[infer] ${e}`,...t);}function E(e,...t){v&&console.error(`[infer] ${e}`,...t);}var S="infer_event_queue",h=1e3,i=[];function C(){try{return typeof localStorage<"u"?localStorage:null}catch{return null}}function A(e){i.length>=h&&(p("Queue full, dropping oldest event"),i.shift()),i.push(e),a(`Queued event: ${e.event_name} (${i.length} in queue)`);}function _(e){return i.splice(0,e)}function y(){return i.length}function d(e){i=[...e,...i],i.length>h&&(i=i.slice(i.length-h));}function f(){let e=C();if(!(!e||i.length===0))try{e.setItem(S,JSON.stringify(i)),a("Persisted queue to localStorage:",i.length);}catch{}}function x(){let e=C();if(e)try{let t=e.getItem(S);if(t){let n=JSON.parse(t);Array.isArray(n)&&(i=[...n,...i],i.length>h&&(i=i.slice(i.length-h)),a("Restored queue from localStorage:",n.length)),e.removeItem(S);}}catch{}}var k="infer_anonymous_id",c=null,w=null,b={};function L(){try{return typeof localStorage<"u"?localStorage:null}catch{return null}}function N(){if(c)return c;let e=L();if(e){let t=e.getItem(k);if(t)return c=t,c}if(c=crypto.randomUUID(),a("Generated anonymous_id:",c),e)try{e.setItem(k,c);}catch{}return c}function U(){return w}function D(e,t){w=e,t&&(b={...b,...t}),a("Identity set:",w,b);}var R="infer_tab_id";function M(){try{if(typeof sessionStorage>"u")return null;let e=sessionStorage.getItem(R);return e||(e=crypto.randomUUID(),sessionStorage.setItem(R,e)),e}catch{return null}}function F(){w=null,b={},c=null;let e=L();if(e)try{e.removeItem(k);}catch{}}var Y="0.1.0";function K(){return typeof window<"u"&&typeof document<"u"}function O(){let e={platform:"web",sdk_version:Y};if(!K())return e;typeof navigator<"u"&&(e.browser=navigator.userAgent,e.locale=navigator.language),typeof screen<"u"&&(e.screen_width=screen.width,e.screen_height=screen.height);try{e.timezone=Intl.DateTimeFormat().resolvedOptions().timeZone;}catch{}e.page_url=window.location.href,e.pathname=window.location.pathname,e.page_title=document.title,e.referrer=document.referrer||void 0,e.os=V(navigator.userAgent),e.device_type=H(navigator.userAgent);let t=M();return t&&(e.tab_id=t),e}function V(e){return /Windows/.test(e)?"Windows":/Mac OS X/.test(e)?"macOS":/Android/.test(e)?"Android":/iPhone|iPad|iPod/.test(e)?"iOS":/Linux/.test(e)?"Linux":/CrOS/.test(e)?"ChromeOS":"Unknown"}function H(e){return /Mobi|Android.*Mobile|iPhone|iPod/.test(e)?"Mobile":/iPad|Android(?!.*Mobile)|Tablet/.test(e)?"Tablet":"Desktop"}var P="infer_session_last_active";var $={pageView:true,session:true,click:true,formSubmit:true,error:true};function Q(e){return e===false?null:e===true?{...$}:{...$,...e}}var m=new Map,j=500;function q(e){let t=Date.now(),n=m.get(e);if(n&&t-n<j)return true;if(m.set(e,t),m.size>50)for(let[r,o]of m)t-o>j&&m.delete(r);return false}function z(e,t){if(typeof window>"u")return ()=>{};let n=[];return t.session&&J(e),t.pageView&&n.push(X(e)),t.click&&n.push(Z(e)),t.formSubmit&&n.push(W(e)),t.error&&n.push(G(e)),()=>{for(let r of n)r();}}function J(e){try{let t=Date.now(),n=sessionStorage.getItem(P);(!n||t-Number(n)>18e5)&&e.trackInternal("session_start",{}),sessionStorage.setItem(P,String(t));}catch{}}function X(e){e.trackInternal("page_view",{url:window.location.href,path:window.location.pathname,title:document.title});let t=history.pushState.bind(history),n=history.replaceState.bind(history),r=()=>{e.trackInternal("page_view",{url:window.location.href,path:window.location.pathname,title:document.title});};return history.pushState=function(...o){t(...o),r();},history.replaceState=function(...o){n(...o),r();},window.addEventListener("popstate",r),()=>{history.pushState=t,history.replaceState=n,window.removeEventListener("popstate",r);}}function Z(e){let t=n=>{let r=n.target;if(!r)return;let o=r.closest("a, button, [role='button'], input[type='submit']");if(!o)return;let u=`click:${o.id||o.className||o.tagName}`;if(q(u))return;let l={tag:o.tagName.toLowerCase()};o.id&&(l.element_id=o.id),o.className&&typeof o.className=="string"&&(l.element_class=o.className),o.tagName==="A"&&(l.href=o.href),e.trackInternal("click",l);};return document.addEventListener("click",t,{capture:true}),()=>document.removeEventListener("click",t,{capture:true})}function W(e){let t=n=>{let r=n.target;r&&queueMicrotask(()=>{let o=`form_submit:${r.id||r.action||""}`;if(q(o))return;let u={};r.id&&(u.form_id=r.id),r.action&&(u.form_action=r.action),r.method&&(u.form_method=r.method.toUpperCase()),n.defaultPrevented&&(u.prevented=true),e.trackInternal("form_submit",u);});};return document.addEventListener("submit",t,{capture:true}),()=>document.removeEventListener("submit",t,{capture:true})}function G(e){let t=r=>{e.trackInternal("error",{message:r.message||"Unknown error",filename:r.filename||null,lineno:r.lineno||null,colno:r.colno||null});},n=r=>{let o=r.reason instanceof Error?r.reason.message:typeof r.reason=="string"?r.reason:"Unhandled promise rejection";e.trackInternal("error",{message:o,type:"unhandledrejection"});};return window.addEventListener("error",t),window.addEventListener("unhandledrejection",n),()=>{window.removeEventListener("error",t),window.removeEventListener("unhandledrejection",n);}}var ee="https://api.infer.events",te=20,ne=1e4,re=3e4,oe=1e3,B=5,I=class{config;flushTimer=null;teardownAutoTrack=null;flushing=false;retryCount=0;disabled=false;constructor(t){if(!t.projectId||typeof t.projectId!="string")throw new Error("[infer] projectId is required");if(T(t.debug??false),this.config={projectId:t.projectId,endpoint:t.endpoint??ee,batchSize:t.batchSize??te,flushInterval:t.flushInterval??ne},a("Initialized with config:",this.config),x(),this.flushTimer=setInterval(()=>{this.flush();},this.config.flushInterval),typeof window<"u"){let r=()=>{f(),this.sendBeacon();};window.addEventListener("visibilitychange",()=>{document.visibilityState==="hidden"&&r();}),window.addEventListener("pagehide",r);}let n=Q(t.autoTrack??false);n&&(this.teardownAutoTrack=z(this,n));}track(t,n,r){this.enqueueEvent("track",t,n??{},r?.category);}identify(t,n){D(t,n),this.enqueueEvent("identify","identify",n??{});}page(t){let n={};t&&(n.name=t),typeof window<"u"&&(n.url=window.location.href,n.path=window.location.pathname,n.title=document.title),this.enqueueEvent("page","page_view",n);}screen(t){this.enqueueEvent("screen","screen_view",{name:t});}trackInternal(t,n){this.enqueueEvent("track",t,n);}async flush(){if(this.disabled||this.flushing||y()===0)return;this.flushing=true;let t=_(this.config.batchSize);a(`Flushing ${t.length} events`);try{let n=await fetch(`${this.config.endpoint}/v1/events`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${this.config.projectId}`},body:JSON.stringify({events:t})});n.ok?(this.retryCount=0,a(`Flushed ${t.length} events successfully`)):n.status>=500?(p(`Server error ${n.status}, will retry`),d(t),this.scheduleRetry()):E(`Client error ${n.status}, dropping batch`);}catch(n){if(this.retryCount>=B){E(`Cannot connect to ${this.config.endpoint} after ${B} attempts. If your site uses a Content Security Policy, add ${this.config.endpoint} to connect-src. Events will be dropped until the page is reloaded.`),this.disabled=true;return}p("Network error, will retry:",n),d(t),this.scheduleRetry();}finally{this.flushing=false;}y()>0&&this.flush();}destroy(){this.flushTimer&&(clearInterval(this.flushTimer),this.flushTimer=null),this.teardownAutoTrack&&(this.teardownAutoTrack(),this.teardownAutoTrack=null),f();}enqueueEvent(t,n,r,o){let u={event_id:crypto.randomUUID(),project_id:this.config.projectId,anonymous_id:N(),event_name:n,event_type:t,properties:r,context:O(),timestamp:new Date().toISOString()};o&&(u.category=o);let l=U();l&&(u.user_id=l),A(u),y()>=this.config.batchSize&&this.flush();}sendBeacon(){let t=_(this.config.batchSize);if(t.length!==0)try{fetch(`${this.config.endpoint}/v1/events`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${this.config.projectId}`},body:JSON.stringify({events:t}),keepalive:!0}).then(n=>{n.ok?a(`Beacon sent ${t.length} events`):(d(t),f());}).catch(()=>{d(t),f();});}catch{d(t),f();}}scheduleRetry(){this.retryCount++;let t=Math.min(oe*Math.pow(2,this.retryCount-1)+Math.random()*1e3,re);a(`Retry #${this.retryCount} in ${Math.round(t)}ms`),setTimeout(()=>{this.flush();},t);}};var s=null,g=[];function we(e){s&&s.destroy(),s=new I(e);for(let t of g)switch(t.type){case "track":s.track(...t.args);break;case "identify":s.identify(...t.args);break;case "page":s.page(...t.args);break;case "screen":s.screen(...t.args);break}return g=[],s}function Ie(e,t,n){if(!s){g.push({type:"track",args:[e,t,n]});return}s.track(e,t,n);}function Ee(e,t){if(!s){g.push({type:"identify",args:[e,t]});return}s.identify(e,t);}function Se(e){if(!s){g.push({type:"page",args:[e]});return}s.page(e);}function _e(e){if(!s){g.push({type:"screen",args:[e]});return}s.screen(e);}async function ke(){s&&await s.flush();}function Te(){s&&(s.destroy(),s=null);}
|
|
2
|
+
exports.destroy=Te;exports.flush=ke;exports.identify=Ee;exports.init=we;exports.page=Se;exports.reset=F;exports.screen=_e;exports.track=Ie;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
type EventCategory = "activation" | "engagement" | "monetization" | "referral" | "noise";
|
|
2
|
+
interface QueuedEvent {
|
|
3
|
+
event_id: string;
|
|
4
|
+
project_id: string;
|
|
5
|
+
user_id?: string;
|
|
6
|
+
anonymous_id: string;
|
|
7
|
+
event_name: string;
|
|
8
|
+
event_type: "track" | "identify" | "page" | "screen";
|
|
9
|
+
properties: Record<string, string | number | boolean | null>;
|
|
10
|
+
context: Record<string, unknown>;
|
|
11
|
+
timestamp: string;
|
|
12
|
+
category?: EventCategory;
|
|
13
|
+
}
|
|
14
|
+
|
|
1
15
|
interface AutoTrackConfig {
|
|
2
16
|
pageView: boolean;
|
|
3
17
|
session: boolean;
|
|
@@ -22,7 +36,9 @@ declare class InferClient {
|
|
|
22
36
|
private retryCount;
|
|
23
37
|
private disabled;
|
|
24
38
|
constructor(config: InferConfig);
|
|
25
|
-
track(eventName: string, properties?: Record<string, string | number | boolean | null
|
|
39
|
+
track(eventName: string, properties?: Record<string, string | number | boolean | null>, options?: {
|
|
40
|
+
category?: EventCategory;
|
|
41
|
+
}): void;
|
|
26
42
|
identify(newUserId: string, traits?: Record<string, string | number | boolean | null>): void;
|
|
27
43
|
page(name?: string): void;
|
|
28
44
|
screen(name: string): void;
|
|
@@ -35,18 +51,6 @@ declare class InferClient {
|
|
|
35
51
|
private scheduleRetry;
|
|
36
52
|
}
|
|
37
53
|
|
|
38
|
-
interface QueuedEvent {
|
|
39
|
-
event_id: string;
|
|
40
|
-
project_id: string;
|
|
41
|
-
user_id?: string;
|
|
42
|
-
anonymous_id: string;
|
|
43
|
-
event_name: string;
|
|
44
|
-
event_type: "track" | "identify" | "page" | "screen";
|
|
45
|
-
properties: Record<string, string | number | boolean | null>;
|
|
46
|
-
context: Record<string, unknown>;
|
|
47
|
-
timestamp: string;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
54
|
declare function resetIdentity(): void;
|
|
51
55
|
|
|
52
56
|
/**
|
|
@@ -55,9 +59,11 @@ declare function resetIdentity(): void;
|
|
|
55
59
|
*/
|
|
56
60
|
declare function init(config: InferConfig): InferClient;
|
|
57
61
|
/**
|
|
58
|
-
* Track a custom event.
|
|
62
|
+
* Track a custom event. Optionally tag with an ontology category.
|
|
59
63
|
*/
|
|
60
|
-
declare function track(eventName: string, properties?: Record<string, string | number | boolean | null
|
|
64
|
+
declare function track(eventName: string, properties?: Record<string, string | number | boolean | null>, options?: {
|
|
65
|
+
category?: EventCategory;
|
|
66
|
+
}): void;
|
|
61
67
|
/**
|
|
62
68
|
* Identify a user and link to anonymous_id.
|
|
63
69
|
*/
|
|
@@ -79,4 +85,4 @@ declare function flush(): Promise<void>;
|
|
|
79
85
|
*/
|
|
80
86
|
declare function destroy(): void;
|
|
81
87
|
|
|
82
|
-
export { type AutoTrackConfig, InferClient, type InferConfig, type QueuedEvent, destroy, flush, identify, init, page, resetIdentity as reset, screen, track };
|
|
88
|
+
export { type AutoTrackConfig, type EventCategory, InferClient, type InferConfig, type QueuedEvent, destroy, flush, identify, init, page, resetIdentity as reset, screen, track };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
type EventCategory = "activation" | "engagement" | "monetization" | "referral" | "noise";
|
|
2
|
+
interface QueuedEvent {
|
|
3
|
+
event_id: string;
|
|
4
|
+
project_id: string;
|
|
5
|
+
user_id?: string;
|
|
6
|
+
anonymous_id: string;
|
|
7
|
+
event_name: string;
|
|
8
|
+
event_type: "track" | "identify" | "page" | "screen";
|
|
9
|
+
properties: Record<string, string | number | boolean | null>;
|
|
10
|
+
context: Record<string, unknown>;
|
|
11
|
+
timestamp: string;
|
|
12
|
+
category?: EventCategory;
|
|
13
|
+
}
|
|
14
|
+
|
|
1
15
|
interface AutoTrackConfig {
|
|
2
16
|
pageView: boolean;
|
|
3
17
|
session: boolean;
|
|
@@ -22,7 +36,9 @@ declare class InferClient {
|
|
|
22
36
|
private retryCount;
|
|
23
37
|
private disabled;
|
|
24
38
|
constructor(config: InferConfig);
|
|
25
|
-
track(eventName: string, properties?: Record<string, string | number | boolean | null
|
|
39
|
+
track(eventName: string, properties?: Record<string, string | number | boolean | null>, options?: {
|
|
40
|
+
category?: EventCategory;
|
|
41
|
+
}): void;
|
|
26
42
|
identify(newUserId: string, traits?: Record<string, string | number | boolean | null>): void;
|
|
27
43
|
page(name?: string): void;
|
|
28
44
|
screen(name: string): void;
|
|
@@ -35,18 +51,6 @@ declare class InferClient {
|
|
|
35
51
|
private scheduleRetry;
|
|
36
52
|
}
|
|
37
53
|
|
|
38
|
-
interface QueuedEvent {
|
|
39
|
-
event_id: string;
|
|
40
|
-
project_id: string;
|
|
41
|
-
user_id?: string;
|
|
42
|
-
anonymous_id: string;
|
|
43
|
-
event_name: string;
|
|
44
|
-
event_type: "track" | "identify" | "page" | "screen";
|
|
45
|
-
properties: Record<string, string | number | boolean | null>;
|
|
46
|
-
context: Record<string, unknown>;
|
|
47
|
-
timestamp: string;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
54
|
declare function resetIdentity(): void;
|
|
51
55
|
|
|
52
56
|
/**
|
|
@@ -55,9 +59,11 @@ declare function resetIdentity(): void;
|
|
|
55
59
|
*/
|
|
56
60
|
declare function init(config: InferConfig): InferClient;
|
|
57
61
|
/**
|
|
58
|
-
* Track a custom event.
|
|
62
|
+
* Track a custom event. Optionally tag with an ontology category.
|
|
59
63
|
*/
|
|
60
|
-
declare function track(eventName: string, properties?: Record<string, string | number | boolean | null
|
|
64
|
+
declare function track(eventName: string, properties?: Record<string, string | number | boolean | null>, options?: {
|
|
65
|
+
category?: EventCategory;
|
|
66
|
+
}): void;
|
|
61
67
|
/**
|
|
62
68
|
* Identify a user and link to anonymous_id.
|
|
63
69
|
*/
|
|
@@ -79,4 +85,4 @@ declare function flush(): Promise<void>;
|
|
|
79
85
|
*/
|
|
80
86
|
declare function destroy(): void;
|
|
81
87
|
|
|
82
|
-
export { type AutoTrackConfig, InferClient, type InferConfig, type QueuedEvent, destroy, flush, identify, init, page, resetIdentity as reset, screen, track };
|
|
88
|
+
export { type AutoTrackConfig, type EventCategory, InferClient, type InferConfig, type QueuedEvent, destroy, flush, identify, init, page, resetIdentity as reset, screen, track };
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var v=false;function T(e){v=e;}function a(e,...t){v&&console.log(`[infer] ${e}`,...t);}function
|
|
2
|
-
export{Te as destroy,
|
|
1
|
+
var v=false;function T(e){v=e;}function a(e,...t){v&&console.log(`[infer] ${e}`,...t);}function p(e,...t){v&&console.warn(`[infer] ${e}`,...t);}function E(e,...t){v&&console.error(`[infer] ${e}`,...t);}var S="infer_event_queue",h=1e3,i=[];function C(){try{return typeof localStorage<"u"?localStorage:null}catch{return null}}function A(e){i.length>=h&&(p("Queue full, dropping oldest event"),i.shift()),i.push(e),a(`Queued event: ${e.event_name} (${i.length} in queue)`);}function _(e){return i.splice(0,e)}function y(){return i.length}function d(e){i=[...e,...i],i.length>h&&(i=i.slice(i.length-h));}function f(){let e=C();if(!(!e||i.length===0))try{e.setItem(S,JSON.stringify(i)),a("Persisted queue to localStorage:",i.length);}catch{}}function x(){let e=C();if(e)try{let t=e.getItem(S);if(t){let n=JSON.parse(t);Array.isArray(n)&&(i=[...n,...i],i.length>h&&(i=i.slice(i.length-h)),a("Restored queue from localStorage:",n.length)),e.removeItem(S);}}catch{}}var k="infer_anonymous_id",c=null,w=null,b={};function L(){try{return typeof localStorage<"u"?localStorage:null}catch{return null}}function N(){if(c)return c;let e=L();if(e){let t=e.getItem(k);if(t)return c=t,c}if(c=crypto.randomUUID(),a("Generated anonymous_id:",c),e)try{e.setItem(k,c);}catch{}return c}function U(){return w}function D(e,t){w=e,t&&(b={...b,...t}),a("Identity set:",w,b);}var R="infer_tab_id";function M(){try{if(typeof sessionStorage>"u")return null;let e=sessionStorage.getItem(R);return e||(e=crypto.randomUUID(),sessionStorage.setItem(R,e)),e}catch{return null}}function F(){w=null,b={},c=null;let e=L();if(e)try{e.removeItem(k);}catch{}}var Y="0.1.0";function K(){return typeof window<"u"&&typeof document<"u"}function O(){let e={platform:"web",sdk_version:Y};if(!K())return e;typeof navigator<"u"&&(e.browser=navigator.userAgent,e.locale=navigator.language),typeof screen<"u"&&(e.screen_width=screen.width,e.screen_height=screen.height);try{e.timezone=Intl.DateTimeFormat().resolvedOptions().timeZone;}catch{}e.page_url=window.location.href,e.pathname=window.location.pathname,e.page_title=document.title,e.referrer=document.referrer||void 0,e.os=V(navigator.userAgent),e.device_type=H(navigator.userAgent);let t=M();return t&&(e.tab_id=t),e}function V(e){return /Windows/.test(e)?"Windows":/Mac OS X/.test(e)?"macOS":/Android/.test(e)?"Android":/iPhone|iPad|iPod/.test(e)?"iOS":/Linux/.test(e)?"Linux":/CrOS/.test(e)?"ChromeOS":"Unknown"}function H(e){return /Mobi|Android.*Mobile|iPhone|iPod/.test(e)?"Mobile":/iPad|Android(?!.*Mobile)|Tablet/.test(e)?"Tablet":"Desktop"}var P="infer_session_last_active";var $={pageView:true,session:true,click:true,formSubmit:true,error:true};function Q(e){return e===false?null:e===true?{...$}:{...$,...e}}var m=new Map,j=500;function q(e){let t=Date.now(),n=m.get(e);if(n&&t-n<j)return true;if(m.set(e,t),m.size>50)for(let[r,o]of m)t-o>j&&m.delete(r);return false}function z(e,t){if(typeof window>"u")return ()=>{};let n=[];return t.session&&J(e),t.pageView&&n.push(X(e)),t.click&&n.push(Z(e)),t.formSubmit&&n.push(W(e)),t.error&&n.push(G(e)),()=>{for(let r of n)r();}}function J(e){try{let t=Date.now(),n=sessionStorage.getItem(P);(!n||t-Number(n)>18e5)&&e.trackInternal("session_start",{}),sessionStorage.setItem(P,String(t));}catch{}}function X(e){e.trackInternal("page_view",{url:window.location.href,path:window.location.pathname,title:document.title});let t=history.pushState.bind(history),n=history.replaceState.bind(history),r=()=>{e.trackInternal("page_view",{url:window.location.href,path:window.location.pathname,title:document.title});};return history.pushState=function(...o){t(...o),r();},history.replaceState=function(...o){n(...o),r();},window.addEventListener("popstate",r),()=>{history.pushState=t,history.replaceState=n,window.removeEventListener("popstate",r);}}function Z(e){let t=n=>{let r=n.target;if(!r)return;let o=r.closest("a, button, [role='button'], input[type='submit']");if(!o)return;let u=`click:${o.id||o.className||o.tagName}`;if(q(u))return;let l={tag:o.tagName.toLowerCase()};o.id&&(l.element_id=o.id),o.className&&typeof o.className=="string"&&(l.element_class=o.className),o.tagName==="A"&&(l.href=o.href),e.trackInternal("click",l);};return document.addEventListener("click",t,{capture:true}),()=>document.removeEventListener("click",t,{capture:true})}function W(e){let t=n=>{let r=n.target;r&&queueMicrotask(()=>{let o=`form_submit:${r.id||r.action||""}`;if(q(o))return;let u={};r.id&&(u.form_id=r.id),r.action&&(u.form_action=r.action),r.method&&(u.form_method=r.method.toUpperCase()),n.defaultPrevented&&(u.prevented=true),e.trackInternal("form_submit",u);});};return document.addEventListener("submit",t,{capture:true}),()=>document.removeEventListener("submit",t,{capture:true})}function G(e){let t=r=>{e.trackInternal("error",{message:r.message||"Unknown error",filename:r.filename||null,lineno:r.lineno||null,colno:r.colno||null});},n=r=>{let o=r.reason instanceof Error?r.reason.message:typeof r.reason=="string"?r.reason:"Unhandled promise rejection";e.trackInternal("error",{message:o,type:"unhandledrejection"});};return window.addEventListener("error",t),window.addEventListener("unhandledrejection",n),()=>{window.removeEventListener("error",t),window.removeEventListener("unhandledrejection",n);}}var ee="https://api.infer.events",te=20,ne=1e4,re=3e4,oe=1e3,B=5,I=class{config;flushTimer=null;teardownAutoTrack=null;flushing=false;retryCount=0;disabled=false;constructor(t){if(!t.projectId||typeof t.projectId!="string")throw new Error("[infer] projectId is required");if(T(t.debug??false),this.config={projectId:t.projectId,endpoint:t.endpoint??ee,batchSize:t.batchSize??te,flushInterval:t.flushInterval??ne},a("Initialized with config:",this.config),x(),this.flushTimer=setInterval(()=>{this.flush();},this.config.flushInterval),typeof window<"u"){let r=()=>{f(),this.sendBeacon();};window.addEventListener("visibilitychange",()=>{document.visibilityState==="hidden"&&r();}),window.addEventListener("pagehide",r);}let n=Q(t.autoTrack??false);n&&(this.teardownAutoTrack=z(this,n));}track(t,n,r){this.enqueueEvent("track",t,n??{},r?.category);}identify(t,n){D(t,n),this.enqueueEvent("identify","identify",n??{});}page(t){let n={};t&&(n.name=t),typeof window<"u"&&(n.url=window.location.href,n.path=window.location.pathname,n.title=document.title),this.enqueueEvent("page","page_view",n);}screen(t){this.enqueueEvent("screen","screen_view",{name:t});}trackInternal(t,n){this.enqueueEvent("track",t,n);}async flush(){if(this.disabled||this.flushing||y()===0)return;this.flushing=true;let t=_(this.config.batchSize);a(`Flushing ${t.length} events`);try{let n=await fetch(`${this.config.endpoint}/v1/events`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${this.config.projectId}`},body:JSON.stringify({events:t})});n.ok?(this.retryCount=0,a(`Flushed ${t.length} events successfully`)):n.status>=500?(p(`Server error ${n.status}, will retry`),d(t),this.scheduleRetry()):E(`Client error ${n.status}, dropping batch`);}catch(n){if(this.retryCount>=B){E(`Cannot connect to ${this.config.endpoint} after ${B} attempts. If your site uses a Content Security Policy, add ${this.config.endpoint} to connect-src. Events will be dropped until the page is reloaded.`),this.disabled=true;return}p("Network error, will retry:",n),d(t),this.scheduleRetry();}finally{this.flushing=false;}y()>0&&this.flush();}destroy(){this.flushTimer&&(clearInterval(this.flushTimer),this.flushTimer=null),this.teardownAutoTrack&&(this.teardownAutoTrack(),this.teardownAutoTrack=null),f();}enqueueEvent(t,n,r,o){let u={event_id:crypto.randomUUID(),project_id:this.config.projectId,anonymous_id:N(),event_name:n,event_type:t,properties:r,context:O(),timestamp:new Date().toISOString()};o&&(u.category=o);let l=U();l&&(u.user_id=l),A(u),y()>=this.config.batchSize&&this.flush();}sendBeacon(){let t=_(this.config.batchSize);if(t.length!==0)try{fetch(`${this.config.endpoint}/v1/events`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${this.config.projectId}`},body:JSON.stringify({events:t}),keepalive:!0}).then(n=>{n.ok?a(`Beacon sent ${t.length} events`):(d(t),f());}).catch(()=>{d(t),f();});}catch{d(t),f();}}scheduleRetry(){this.retryCount++;let t=Math.min(oe*Math.pow(2,this.retryCount-1)+Math.random()*1e3,re);a(`Retry #${this.retryCount} in ${Math.round(t)}ms`),setTimeout(()=>{this.flush();},t);}};var s=null,g=[];function we(e){s&&s.destroy(),s=new I(e);for(let t of g)switch(t.type){case "track":s.track(...t.args);break;case "identify":s.identify(...t.args);break;case "page":s.page(...t.args);break;case "screen":s.screen(...t.args);break}return g=[],s}function Ie(e,t,n){if(!s){g.push({type:"track",args:[e,t,n]});return}s.track(e,t,n);}function Ee(e,t){if(!s){g.push({type:"identify",args:[e,t]});return}s.identify(e,t);}function Se(e){if(!s){g.push({type:"page",args:[e]});return}s.page(e);}function _e(e){if(!s){g.push({type:"screen",args:[e]});return}s.screen(e);}async function ke(){s&&await s.flush();}function Te(){s&&(s.destroy(),s=null);}
|
|
2
|
+
export{Te as destroy,ke as flush,Ee as identify,we as init,Se as page,F as reset,_e as screen,Ie as track};
|