@hifilabs/pixel 0.17.0 → 0.17.1
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/browser.js +14 -13
- package/dist/browser.min.js +2 -2
- package/package.json +1 -1
package/dist/browser.js
CHANGED
|
@@ -8,7 +8,18 @@ var ArtistPixel = (() => {
|
|
|
8
8
|
|
|
9
9
|
// src/browser.ts
|
|
10
10
|
(function() {
|
|
11
|
-
const PIXEL_VERSION = "0.17.
|
|
11
|
+
const PIXEL_VERSION = "0.17.1";
|
|
12
|
+
const currentScript = document.currentScript;
|
|
13
|
+
const debug = currentScript?.dataset.debug === "true";
|
|
14
|
+
const SILENT_MODE = !debug;
|
|
15
|
+
const log = (...args) => {
|
|
16
|
+
if (debug)
|
|
17
|
+
console.log("[artistPixel]", ...args);
|
|
18
|
+
};
|
|
19
|
+
const logError = (...args) => {
|
|
20
|
+
if (!SILENT_MODE)
|
|
21
|
+
console.error("[artistPixel]", ...args);
|
|
22
|
+
};
|
|
12
23
|
function parseUserAgent(ua) {
|
|
13
24
|
let device_type = "desktop";
|
|
14
25
|
if (/ipad|tablet|android(?!.*mobile)/i.test(ua))
|
|
@@ -52,7 +63,6 @@ var ArtistPixel = (() => {
|
|
|
52
63
|
}
|
|
53
64
|
return cachedDeviceInfo;
|
|
54
65
|
}
|
|
55
|
-
const currentScript = document.currentScript;
|
|
56
66
|
const artistId = currentScript?.dataset.artistId;
|
|
57
67
|
const rawProjectId = currentScript?.dataset.projectId;
|
|
58
68
|
const projectId = rawProjectId ? normalizeProjectId(rawProjectId) : void 0;
|
|
@@ -65,7 +75,6 @@ var ArtistPixel = (() => {
|
|
|
65
75
|
return `custom_${id}`;
|
|
66
76
|
}
|
|
67
77
|
const useEmulator = currentScript?.dataset.emulator === "true";
|
|
68
|
-
const debug = currentScript?.dataset.debug === "true";
|
|
69
78
|
const heartbeatInterval = parseInt(currentScript?.dataset.heartbeatInterval || "120000", 10);
|
|
70
79
|
const heartbeatEnabled = currentScript?.dataset.heartbeat !== "false";
|
|
71
80
|
const explicitSource = currentScript?.dataset.source;
|
|
@@ -228,15 +237,6 @@ var ArtistPixel = (() => {
|
|
|
228
237
|
const IDLE_TIMEOUT = 2 * 60 * 1e3;
|
|
229
238
|
let lastActivityTime = Date.now();
|
|
230
239
|
let isIdle = false;
|
|
231
|
-
const SILENT_MODE = !debug;
|
|
232
|
-
const log = (...args) => {
|
|
233
|
-
if (debug)
|
|
234
|
-
console.log("[artistPixel]", ...args);
|
|
235
|
-
};
|
|
236
|
-
const logError = (...args) => {
|
|
237
|
-
if (!SILENT_MODE)
|
|
238
|
-
console.error("[artistPixel]", ...args);
|
|
239
|
-
};
|
|
240
240
|
const CONSENT_STYLES = {
|
|
241
241
|
base: `
|
|
242
242
|
:host {
|
|
@@ -1352,7 +1352,8 @@ var ArtistPixel = (() => {
|
|
|
1352
1352
|
event_name: "identify",
|
|
1353
1353
|
fan_id_hash: fanIdHash,
|
|
1354
1354
|
metadata: {
|
|
1355
|
-
|
|
1355
|
+
email: email.toLowerCase().trim(),
|
|
1356
|
+
// Plain email for backend (communication_channels, display_name fallback)
|
|
1356
1357
|
email_sha256: fanIdHash,
|
|
1357
1358
|
email_display: maskedEmail,
|
|
1358
1359
|
// Safe for UI display (e.g., "j***@example.com")
|
package/dist/browser.min.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var ArtistPixel=(()=>{var qe=Object.defineProperty;var Ne=(
|
|
1
|
+
var ArtistPixel=(()=>{var qe=Object.defineProperty;var Ne=(v,i,x)=>i in v?qe(v,i,{enumerable:!0,configurable:!0,writable:!0,value:x}):v[i]=x;var J=(v,i,x)=>(Ne(v,typeof i!="symbol"?i+"":i,x),x);(function(){let v="0.17.1",i=document.currentScript,x=i?.dataset.debug==="true",Wt=!x,a=(...t)=>{x&&console.log("[artistPixel]",...t)},C=(...t)=>{Wt||console.error("[artistPixel]",...t)};function Yt(t){let e="desktop";/ipad|tablet|android(?!.*mobile)/i.test(t)?e="tablet":/mobile|iphone|android.*mobile|blackberry|iemobile/i.test(t)&&(e="mobile");let n="Unknown";/edg/i.test(t)?n="Edge":/opr|opera/i.test(t)?n="Opera":/firefox/i.test(t)?n="Firefox":/chrome/i.test(t)?n="Chrome":/safari/i.test(t)&&(n="Safari");let o="Unknown";return/iphone|ipad/i.test(t)?o="iOS":/android/i.test(t)?o="Android":/windows/i.test(t)?o="Windows":/mac os/i.test(t)?o="macOS":/linux/i.test(t)?o="Linux":/cros/i.test(t)&&(o="ChromeOS"),{device_type:e,browser:n,os:o}}let V=null;function Jt(){if(!V)try{V=Yt(navigator.userAgent)}catch{V={device_type:"desktop",browser:"Unknown",os:"Unknown"}}return V}let M=i?.dataset.artistId,K=i?.dataset.projectId,X=K?Kt(K):void 0;function Kt(t){return!t||t.startsWith("release_")||t.startsWith("merch_")||t.startsWith("link_")||t.startsWith("custom_")?t:`custom_${t}`}let Q=i?.dataset.emulator==="true",Z=parseInt(i?.dataset.heartbeatInterval||"120000",10),yt=i?.dataset.heartbeat!=="false",bt=i?.dataset.source,vt=i?.dataset.endpoint,f=window.__artistPixelConfig||{},O=i?.dataset.metaPixelId||f.metaPixelId,T=i?.dataset.tiktokPixelId||f.tiktokPixelId,p=i?.dataset.googleAdsId||f.googleAdsId,_t=i?.dataset.googleAdsConversionLabel||f.googleAdsConversionLabel,j=i?.dataset.googleTagManagerId||f.googleTagManagerId,h=i?.dataset.googleAnalyticsId||f.googleAnalyticsId,m={pageview:(i?.dataset.forwardPageview??f.forwardPageview)!=="false",purchase:(i?.dataset.forwardPurchase??f.forwardPurchase)!=="false",addToCart:(i?.dataset.forwardAddToCart??f.forwardAddToCart)!=="false",lead:(i?.dataset.forwardLead??f.forwardLead)!=="false",viewContent:(i?.dataset.forwardViewContent??f.forwardViewContent)!=="false",initiateCheckout:(i?.dataset.forwardInitiateCheckout??f.forwardInitiateCheckout)!=="false",completeRegistration:(i?.dataset.forwardCompleteRegistration??f.forwardCompleteRegistration)!=="false",subscribe:(i?.dataset.forwardSubscribe??f.forwardSubscribe)!=="false",search:(i?.dataset.forwardSearch??f.forwardSearch)!=="false",contact:(i?.dataset.forwardContact??f.forwardContact)!=="false",custom:(i?.dataset.forwardCustom||f.forwardCustom||"").split(",").filter(Boolean)},U=!!(O||T||p||j||h),tt=i?.dataset.consentUi==="true",Xt=i?.dataset.consentStyle||"brutalist",Qt=i?.dataset.primaryColor,Zt=i?.dataset.bannerPosition||"bottom",kt=i?.dataset.excludePages?.split(",").filter(Boolean)||[],It=i?.dataset.trackFileDownloads==="true",te=i?.dataset.hashRouting==="true";function ee(){if(bt)return bt;let t=typeof window.dataLayer<"u"&&Array.isArray(window.dataLayer),e=typeof window.gtag=="function";return t&&e?"gtm":"pixel"}let G="pixel";if(!M){C(" Error: data-artist-id attribute is required");return}let xt="session_id",et="session_timestamp",Ct="attribution",y="fan_id_hash",nt="visitor_id",B="artistPixel_consent",ne=365*24*60*60*1e3,ae=30*24*60*60*1e3,oe=60*60*1e3,w="balance_";function ie(t){let e=t.replace(/[.+?^${}()|[\]\\]/g,"\\$&").replace(/\*/g,".*");return new RegExp("^"+e+"$")}function re(t){if(kt.length===0)return!1;try{let e=new URL(t,window.location.origin).pathname;return kt.some(n=>ie(n).test(e))}catch{return!1}}let se=[".pdf",".zip",".tar",".gz",".rar",".7z",".doc",".docx",".xls",".xlsx",".ppt",".pptx",".mp3",".wav",".flac",".aac",".ogg",".mp4",".mov",".avi",".mkv",".webm",".exe",".dmg",".pkg",".deb",".rpm",".csv",".json",".xml",".txt"];function St(t){try{let e=new URL(t,window.location.origin).pathname.toLowerCase();return se.some(n=>e.endsWith(n))}catch{return!1}}function ce(t,e){try{let o=new URL(t,window.location.origin).pathname.split("/").pop()||"unknown",c=o.includes(".")?o.split(".").pop():"unknown";a("File download tracked:",{url:t,fileName:o,fileExtension:c});let d=S({event_name:"custom",metadata:{event_type:"file_download",file_url:t,file_name:o,file_extension:c,link_text:e?.textContent?.trim().substring(0,100)||""}});P(d)}catch(n){C("Failed to track file download:",n)}}let de="https://e.os.xyz",Pt="https://us-central1-artist-os-distro.cloudfunctions.net/ingestEvents",le="https://us-central1-artist-os-distro.cloudfunctions.net/identityHashIdentity",L=vt||(Q?"http://localhost:5001/artist-os-distro/us-central1/ingestEvents":de),F=null,b=null,g=null,l=null,A={},at={},_=[],ot=null,k="session",R=null,it=0,rt=0,D=0,q=!0,st=0,ct=!1,ge=2*60*1e3,Et=Date.now(),N=!1,dt={base:`
|
|
2
2
|
:host {
|
|
3
3
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
4
4
|
position: fixed;
|
|
@@ -99,4 +99,4 @@ var ArtistPixel=(()=>{var qe=Object.defineProperty;var Ne=(_,k,v)=>k in _?qe(_,k
|
|
|
99
99
|
<button id="accept" class="btn accept">Accept</button>
|
|
100
100
|
</div>
|
|
101
101
|
</div>
|
|
102
|
-
`,this.shadow.getElementById("accept")?.addEventListener("click",()=>this.handleConsent(!0)),this.shadow.getElementById("decline")?.addEventListener("click",()=>this.handleConsent(!1))}handleConsent(e){window.balance?.setConsent&&window.balance.setConsent({analytics:e,marketing:e,personalization:e,timestamp:new Date().toISOString()}),e&&!window._balanceInitialPageviewFired&&(window._balanceInitialPageviewFired=!0,window.balance?.page&&window.balance.page(),ft(),a("Initial pageview fired after consent granted")),this.remove()}remove(){this.container&&(this.container.remove(),this.container=null,this.shadow=null,a("ConsentManager: Banner removed"))}}let Lt=!1,z=!1;function fe(){if(!j)return;if(window.fbq){a("[Platform:Meta] Already loaded, skipping");return}a("[Platform:Meta] Injecting pixel:",j);let t=function(...n){t.callMethod?t.callMethod.apply(t,n):t.queue.push(n)};window._fbq||(window._fbq=t),t.push=t,t.loaded=!0,t.version="2.0",t.queue=[],window.fbq=t;let e=document.createElement("script");e.async=!0,e.src="https://connect.facebook.net/en_US/fbevents.js",e.onload=()=>{window.fbq("init",j),m.pageview&&window.fbq("track","PageView"),a("[Platform:Meta] Initialized and PageView tracked")},document.head.appendChild(e)}function me(){if(!L)return;if(window.ttq?._i?.[L]){a("[Platform:TikTok] Already loaded, skipping");return}a("[Platform:TikTok] Injecting pixel:",L);let t=window,e="ttq";t.TiktokAnalyticsObject=e;let n=t[e]=t[e]||[];n.methods=["page","track","identify","instances","debug","on","off","once","ready","alias","group","enableCookie","disableCookie","holdConsent","revokeConsent","grantConsent"],n.setAndDefer=function(o,c){o[c]=function(...d){o.push([c].concat(d))}};for(let o=0;o<n.methods.length;o++)n.setAndDefer(n,n.methods[o]);n.instance=function(o){let c=n._i[o]||[];for(let d=0;d<n.methods.length;d++)n.setAndDefer(c,n.methods[d]);return c},n.load=function(o){let c="https://analytics.tiktok.com/i18n/pixel/events.js";n._i=n._i||{},n._i[o]=[],n._i[o]._u=c,n._t=n._t||{},n._t[o]=+new Date,n._o=n._o||{};let d=document.createElement("script");d.type="text/javascript",d.async=!0,d.src=c+"?sdkid="+o+"&lib="+e,document.head.appendChild(d)},n.load(L),m.pageview&&n.page(),a("[Platform:TikTok] Initialized and page() tracked")}function we(){if(!p)return;if(window.dataLayer=window.dataLayer||[],typeof window.gtag!="function"&&(window.gtag=function(...e){window.dataLayer.push(e)}),document.querySelector('script[src*="googletagmanager.com/gtag/js"]')){a("[Platform:GoogleAds] gtag.js already loaded, configuring"),window.gtag("config",p);return}a("[Platform:GoogleAds] Injecting gtag:",p),window.gtag("consent","default",{ad_storage:"granted",ad_user_data:"granted",ad_personalization:"granted",analytics_storage:"granted"});let t=document.createElement("script");t.async=!0,t.src=`https://www.googletagmanager.com/gtag/js?id=${p}`,t.onload=()=>{window.gtag("js",new Date),window.gtag("config",p),a("[Platform:GoogleAds] Initialized")},document.head.appendChild(t)}function pe(){if(!U)return;if(document.querySelector(`script[src*="googletagmanager.com/gtm.js?id=${U}"]`)){a("[Platform:GTM] Already loaded, skipping");return}a("[Platform:GTM] Injecting GTM:",U),window.dataLayer=window.dataLayer||[],typeof window.gtag!="function"&&(window.gtag=function(...n){window.dataLayer.push(n)});let t=z?"granted":"denied";window.gtag("consent","default",{ad_storage:t,ad_user_data:t,ad_personalization:t,analytics_storage:t}),window.gtag("set","wait_for_update",500),window.dataLayer.push({"gtm.start":new Date().getTime(),event:"gtm.js"});let e=document.createElement("script");e.async=!0,e.src=`https://www.googletagmanager.com/gtm.js?id=${U}`,e.onload=()=>{a("[Platform:GTM] Initialized")},document.head.appendChild(e)}function he(){if(!h)return;let t=document.querySelector('script[src*="googletagmanager.com/gtag/js"]');window.dataLayer=window.dataLayer||[],typeof window.gtag!="function"&&(window.gtag=function(...o){window.dataLayer.push(o)});let e=z?"granted":"denied";if(window.gtag("consent","default",{ad_storage:e,ad_user_data:e,ad_personalization:e,analytics_storage:e}),t){a("[Platform:GA4] gtag.js already loaded, configuring"),window.gtag("config",h,{send_page_view:!1});return}a("[Platform:GA4] Injecting gtag:",h);let n=document.createElement("script");n.async=!0,n.src=`https://www.googletagmanager.com/gtag/js?id=${h}`,n.onload=()=>{window.gtag("js",new Date),window.gtag("config",h,{send_page_view:!1}),a("[Platform:GA4] Initialized")},document.head.appendChild(n)}function ye(){if(F){if(Lt){a("[Platform] Already loaded, skipping");return}if(!z){a("[Platform] Marketing consent not granted, deferring");return}a("[Platform] Injecting platform pixels (consent granted)"),Lt=!0,fe(),me(),we(),pe(),he()}}function At(t){if(z=t,a("[Platform] Marketing consent:",t?"granted":"denied"),t&&ye(),window.ttq&&(t?window.ttq.grantConsent?.():window.ttq.revokeConsent?.()),typeof window.gtag=="function"){let e=t?"granted":"denied";window.gtag("consent","update",{ad_storage:e,ad_user_data:e,ad_personalization:e,analytics_storage:e})}}function lt(t){if(!F||!z)return!1;let e=t.toLowerCase();return e==="pageview"||e==="page_view"?m.pageview:e==="purchase"?m.purchase:e==="addtocart"||e==="add_to_cart"?m.addToCart:e==="lead"||e==="form_submit"?m.lead:e==="viewcontent"||e==="view_content"?m.viewContent:e==="initiatecheckout"||e==="initiate_checkout"?m.initiateCheckout:e==="completeregistration"||e==="complete_registration"?m.completeRegistration:e==="subscribe"?m.subscribe:e==="search"?m.search:e==="contact"?m.contact:m.custom.length>0?m.custom.some(n=>n.toLowerCase()===e):!1}function be(){lt("pageview")&&(a("[Platform] Forwarding PageView"),window.fbq&&window.fbq("track","PageView"),window.ttq&&window.ttq.page(),typeof window.gtag=="function"&&h&&window.gtag("event","page_view",{send_to:h}))}function ve(t,e,n){if(lt("purchase")){if(a("[Platform] Forwarding Purchase:",t,e),window.fbq&&window.fbq("track","Purchase",{value:t,currency:e,content_ids:n?.contentIds,content_type:n?.contentType||"product",order_id:n?.transactionId}),window.ttq&&window.ttq.track("CompletePayment",{value:t,currency:e,order_id:n?.transactionId}),typeof window.gtag=="function"&&p){let o=kt?`${p}/${kt}`:p;window.gtag("event","conversion",{send_to:o,value:t,currency:e,transaction_id:n?.transactionId}),window.gtag("event","purchase",{send_to:p,value:t,currency:e,transaction_id:n?.transactionId})}typeof window.gtag=="function"&&h&&window.gtag("event","purchase",{send_to:h,value:t,currency:e,transaction_id:n?.transactionId,items:n?.items})}}function _e(t,e){if(!lt(t))return;let n=t.toLowerCase();a("[Platform] Forwarding custom event:",t);let o={addtocart:"AddToCart",add_to_cart:"AddToCart",lead:"Lead",form_submit:"Lead",viewcontent:"ViewContent",view_content:"ViewContent",search:"Search",subscribe:"Subscribe",contact:"Contact",completeregistration:"CompleteRegistration",complete_registration:"CompleteRegistration",initiatecheckout:"InitiateCheckout",initiate_checkout:"InitiateCheckout"},c={addtocart:"AddToCart",add_to_cart:"AddToCart",lead:"SubmitForm",form_submit:"SubmitForm",viewcontent:"ViewContent",view_content:"ViewContent",search:"Search",subscribe:"Subscribe",contact:"Contact",completeregistration:"CompleteRegistration",complete_registration:"CompleteRegistration",initiatecheckout:"InitiateCheckout",initiate_checkout:"InitiateCheckout"},d={addtocart:"add_to_cart",add_to_cart:"add_to_cart",lead:"generate_lead",form_submit:"generate_lead",viewcontent:"view_item",view_content:"view_item",search:"search",subscribe:"subscribe",contact:"contact",completeregistration:"sign_up",complete_registration:"sign_up",initiatecheckout:"begin_checkout",initiate_checkout:"begin_checkout"};if(window.fbq){let r=o[n];r?window.fbq("track",r,e):window.fbq("trackCustom",t,e)}if(window.ttq){let r=c[n]||t;window.ttq.track(r,e)}if(typeof window.gtag=="function"&&p){let r=d[n]||t;window.gtag("event",r,{send_to:p,...e})}if(typeof window.gtag=="function"&&h){let r=d[n]||t;window.gtag("event",r,{send_to:h,...e})}}function Rt(){try{return x==="local"?localStorage:sessionStorage}catch{return null}}function W(t){let e=Rt();if(!e)return null;try{let n=w+t,o=e.getItem(n);if(!o&&x==="session")try{o=localStorage.getItem(n)}catch{}return o}catch{return null}}function T(t,e){let n=Rt();if(n)try{n.setItem(w+t,e)}catch{}}function Dt(){if(x!=="local"){a("Upgrading storage tier: session -> local");try{let t=[];for(let e=0;e<sessionStorage.length;e++){let n=sessionStorage.key(e);n?.startsWith(w)&&t.push(n)}for(let e of t){let n=sessionStorage.getItem(e);n&&localStorage.setItem(e,n)}for(let e of t)sessionStorage.removeItem(e);x="local",a(`Storage tier upgraded, migrated ${t.length} items`)}catch(t){S(" Storage migration failed:",t)}}}function Y(){return crypto&&crypto.randomUUID?crypto.randomUUID():"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,t=>{let e=Math.random()*16|0;return(t==="x"?e:e&3|8).toString(16)})}function ke(){try{let t=W(Ct),e=W(et);if(t&&e&&Date.now()-parseInt(e,10)<ae)return T(et,Date.now().toString()),t;let n=Y();return T(Ct,n),T(et,Date.now().toString()),n}catch{return Y()}}function Ie(){let t=new URLSearchParams(window.location.search),e={};return["source","medium","campaign","content","term"].forEach(n=>{let o=t.get(`utm_${n}`);o&&(e[`utm_${n}`]=o)}),e}function xe(){try{let t=W(St);if(t){R=JSON.parse(t),a("Loaded attribution:",R);return}let e=Ie();Object.keys(e).length>0&&(R=e,T(St,JSON.stringify(e)),a("Captured attribution:",R))}catch{}}function Ce(){try{if(l?.analytics!==!0){a("Skipping fan ID load - no analytics consent");return}g=localStorage.getItem(w+y),g&&a("Loaded fan ID hash:",g.substring(0,16)+"...")}catch{if(l?.analytics===!0)try{g=W(y)}catch{}}}function gt(){try{let t=localStorage.getItem(w+nt);if(t)return t;let e=Y();return localStorage.setItem(w+nt,e),a("Created persistent visitor ID:",e.substring(0,8)+"..."),e}catch{return a("localStorage unavailable, using session ID as fallback"),q||Y()}}function Se(){try{b=localStorage.getItem(w+nt),b&&a("Loaded visitor ID:",b.substring(0,8)+"...")}catch{}}function Pe(){try{let t=localStorage.getItem(B);if(t){let e=JSON.parse(t);if(e.expiresAt&&Date.now()>e.expiresAt){a("Consent expired - clearing stored consent"),localStorage.removeItem(B),l=null;return}if(e.expiresAt){let n=e.expiresAt-Date.now();n>0&&n<ne&&(a("Consent nearing expiration - will prompt for refresh"),window._balanceConsentNeedsRefresh=!0)}l=e.preferences||null,a("Loaded consent:",l)}}catch{}}function Mt(t){let e=l;l=t;try{let o={preferences:t,method:"explicit",version:1,expiresAt:Date.now()+ee};localStorage.setItem(B,JSON.stringify(o)),a("Consent saved with TTL:",t),window._balanceConsentNeedsRefresh=!1}catch(o){S(" Could not save consent:",o)}if(t.analytics===!0&&(Dt(),b||(b=gt()),g))try{localStorage.setItem(w+y,g),a("Fan ID hash persisted after consent granted")}catch{T(y,g)}if(t.analytics!==!0){try{localStorage.removeItem(w+y)}catch{}try{sessionStorage.removeItem(w+y)}catch{}g=null,a("Fan ID hash cleared from storage and memory (consent revoked)")}let n=P({event_name:"consent_updated",metadata:{consent_preferences:t,consent_method:"explicit",previous_consent:e||void 0}});E(n);try{window.dispatchEvent(new CustomEvent("artistPixel:consent:updated",{detail:t})),a("DOM event artistPixel:consent:updated dispatched")}catch{}F&&At(t.marketing===!0)}function Ee(){return l}function Te(t){return l?.[t]===!0}function Le(t){for(let[e,n]of Object.entries(t))try{let o=Ot(e);at[o]=n}catch{at[e]=n}a("Registered",Object.keys(t).length,"links for tracking enrichment")}function Ot(t){try{let e=new URL(t);return`${e.protocol}//${e.host}${e.pathname}${e.search}`}catch{return t}}function Ae(t){let e=Ot(t);return at[e]||null}async function Re(t){let e=t.toLowerCase().trim(),o=new TextEncoder().encode(e),c=await crypto.subtle.digest("SHA-256",o);return Array.from(new Uint8Array(c)).map(r=>r.toString(16).padStart(2,"0")).join("")}async function De(t){if(!O)return null;try{let e=await fetch(de,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({data:{email:t.toLowerCase().trim(),artistId:O}})});if(!e.ok)return a("hashIdentity endpoint failed:",e.status),null;let n=await e.json();return{hash:n.result.fanIdHash,version:n.result.hashVersion}}catch(e){return a("hashIdentity endpoint error:",e),null}}function P(t){let e=Yt(),n={artist_id:O,fan_session_id:q,visitor_id:b||gt(),fan_id_hash:g||void 0,timestamp:new Date().toISOString(),source_url:window.location.href,referrer_url:document.referrer||void 0,user_agent:navigator.userAgent,device_type:e.device_type,browser:e.browser,os:e.os,tracking_source:G,...t,...R};return X&&!t.projectId&&(n.projectId=X),n}function E(t){I.push(t),a("Event queued:",t.event_name,"(queue:",I.length,")"),I.length>=10&&$()}async function $(){if(I.length===0)return;let t=[...I];I=[],a("Flushing",t.length,"events to",A);try{let e=await fetch(A,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({events:t}),keepalive:!0});if(!e.ok)throw new Error(`HTTP ${e.status}`);a("Events sent successfully")}catch(e){if(S(" Failed to send events, trying fallback:",e),A!==Et&&!Q)try{if((await fetch(Et,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({events:t}),keepalive:!0})).ok){a("Events sent via fallback (no geo)");return}}catch(n){S(" Fallback also failed:",n)}I.length<50&&I.push(...t)}}function Me(){ot&&clearInterval(ot),ot=window.setInterval(()=>{I.length>0&&$()},5e3)}function ut(){M||(it=Date.now()),M=Date.now(),N=!0,a("Active time tracking started/resumed")}function jt(){M&&N&&(rt+=Date.now()-M),N=!1,a("Active time tracking paused, accumulated:",rt,"ms")}function Ut(){let t=rt;return N&&M&&(t+=Date.now()-M),t}function Oe(){Tt=Date.now(),H&&(H=!1,ut(),a("User returned from idle"))}function je(){if(document.visibilityState==="hidden"){a("Skipping heartbeat - tab hidden");return}if(Date.now()-Tt>le){H||(H=!0,jt(),a("User idle - pausing heartbeat"));return}let t=Ut(),e=Math.round(t/1e3),n=P({event_name:"engagement_heartbeat",metadata:{time_on_page_seconds:e,time_on_page_ms:t,heartbeat_interval_ms:Z,is_active:N&&!H}});E(n),st++,a("Heartbeat sent:",e,"seconds active")}function ft(){if(!bt){a('Heartbeat disabled via data-heartbeat="false"');return}D&&clearInterval(D),ut(),D=window.setInterval(()=>{je()},Z),a("Heartbeat started with interval:",Z,"ms")}function mt(){if(!ct){if(ct=!0,D&&(clearInterval(D),D=null),bt){let t=it?Date.now()-it:0,e=Ut(),n=P({event_name:"engagement_summary",metadata:{total_time_ms:t,active_time_ms:e,heartbeat_samples:st,page_path:window.location.pathname}});if(navigator.sendBeacon&&A){let o=JSON.stringify({events:[n]});navigator.sendBeacon(A,o),a("Engagement summary sent via sendBeacon:",Math.round(e/1e3),"seconds active")}else E(n),a("Engagement summary enqueued:",Math.round(e/1e3),"seconds active")}st=0}}function V(t={}){let e=t.url||window.location.href;if(ie(e)){a("Page excluded from tracking:",e);return}let n=P({event_name:"pageview",page_title:t.title||document.title,source_url:e});E(n),be()}function wt(t,e={}){let n=P({event_name:"custom",metadata:{event_type:t,...e}});E(n),_e(t,e)}async function Ft(t,e={}){try{if(l?.analytics!==!0){a("identify() skipped - no analytics consent");return}let n=1,o=await De(t);if(o?(g=o.hash,n=o.version,a("identify() using server HMAC hash (v2)")):(g=await Re(t),a("identify() using local SHA256 hash (v1 fallback)")),l?.analytics===!0&&Dt(),l?.analytics===!0)try{localStorage.setItem(w+y,g)}catch{T(y,g)}let c=t.split("@"),d=c[0].charAt(0)+"***@"+(c[1]||"");a("Fan identified:",{name:e.name||"(no name)",email:d,hash:g.substring(0,16)+"...",hashVersion:n,traits:e,storageTier:x});let r=P({event_name:"identify",fan_id_hash:g,metadata:{email_sha256:g,email_display:d,hash_version:n,traits:e,consent_preferences:l||void 0,storage_tier:x}});E(r)}catch(n){S(" Failed to identify:",n)}}function Ue(t){if(!t||typeof t!="string"){S("setFanIdHash: invalid hash provided");return}if(g=t,l?.analytics===!0)try{localStorage.setItem(w+y,t),a("Fan ID hash persisted:",t.substring(0,16)+"...")}catch{T(y,t)}else a("Fan ID hash set (memory only - no consent):",t.substring(0,16)+"...")}function qt(t,e="USD",n={}){let o=P({event_name:"purchase",metadata:{revenue:t,currency:e,...n}});E(o),ve(t,e,n)}function Nt(){if(G=te(),a("Tracking source detected:",G),Pe(),l?.analytics!==!0){try{localStorage.removeItem(w+y)}catch{}try{sessionStorage.removeItem(w+y)}catch{}}l?.analytics===!0?(x="local",a("Storage tier: local (analytics consent granted)")):(x="session",a("Storage tier: session (privacy by default)")),q=ke(),Ce(),Se(),b||(b=gt()),l||a(tt?"Consent UI enabled, waiting for explicit user consent (Tier 0 mode)":"No consent - operating in privacy-first mode (session storage only, limited tracking)"),F&&l?.marketing===!0?(a("[Platform] Marketing consent already granted, initializing platform pixels"),At(!0)):F&&a("[Platform] Platform pixels configured:",{meta:j||"(none)",tiktok:L||"(none)",googleAds:p||"(none)"}),xe(),Me(),a("Initialized",{artistId:O,projectId:X||"(none - will track to all projects)",rawProjectId:K||"(none)",sessionId:q,visitorId:b?b.substring(0,8)+"...":null,fanIdHash:g,consent:l,storageTier:x,trackingSource:G,useEmulator:Q,endpoint:A}),l?.analytics===!0?(window._balanceInitialPageviewFired=!0,V(),ft(),a("Full tracking enabled (user consented)")):tt?a("Tracking dormant - waiting for explicit consent via ConsentManager"):(window._balanceInitialPageviewFired=!0,V(),ft(),a("Privacy-first tracking enabled (session-scoped, visitor_id for deduplication)")),["mousemove","keydown","scroll","touchstart"].forEach(r=>{document.addEventListener(r,Oe,{passive:!0})});let t=window.location.hostname;function e(r){try{let i=new URL(r).hostname.toLowerCase();return i.includes("spotify")?"spotify":i.includes("apple")||i.includes("music.apple")?"apple_music":i.includes("youtube")||i.includes("youtu.be")?"youtube":i.includes("soundcloud")?"soundcloud":i.includes("tidal")?"tidal":i.includes("deezer")?"deezer":i.includes("amazon")||i.includes("music.amazon")?"amazon_music":i.includes("bandcamp")?"bandcamp":i.includes("lnk.to")||i.includes("linkfire")?"linkfire":i.includes("linktr.ee")?"linktree":i.includes("shop")||i.includes("store")||i.includes("merch")?"shop":i.includes("ticketmaster")||i.includes("eventbrite")||i.includes("dice.fm")?"tickets":i.includes("instagram")?"instagram":i.includes("twitter")||i.includes("x.com")?"twitter":i.includes("tiktok")?"tiktok":i.includes("facebook")?"facebook":"external"}catch{return"external"}}function n(r){try{return new URL(r,window.location.origin).hostname!==t}catch{return!1}}function o(r,i){let u=e(r),C=Ae(r),Gt=C?.title||i?.textContent?.trim().substring(0,100)||"",Bt=C?.id||i?.id||i?.getAttribute("data-link-id")||void 0,Wt=C?.category;a("External link clicked:",{url:r,platform:u,linkText:Gt,linkId:Bt,fromRegistry:!!C}),wt("page_link_click",{link_url:r,link_text:Gt,link_id:Bt,platform:u,link_type:"external",...Wt&&{link_category:Wt},...C&&Object.fromEntries(Object.entries(C).filter(([ht])=>!["title","id","category"].includes(ht)).map(([ht,Fe])=>[`link_${ht}`,Fe]))})}let c=window.open;if(window.open=function(r,i,u){if(r){let C=r.toString();n(C)&&o(C)}return c.call(window,r,i,u)},a("window.open interception enabled (always on)"),s?.dataset.autoTrackLinks==="true"&&(document.addEventListener("click",r=>{let u=r.target.closest("a");if(u&&u.href&&n(u.href)){if(xt&&(Pt(u.href)||u.hasAttribute("download")))return;o(u.href,u)}},{capture:!0,passive:!0}),a("External link click listener enabled (opt-in)")),xt&&(document.addEventListener("click",r=>{let u=r.target.closest("a");u?.href&&(Pt(u.href)||u.hasAttribute("download"))&&se(u.href,u)},{capture:!0,passive:!0}),a("File download tracking enabled")),Zt){let r=window.location.href;window.addEventListener("hashchange",()=>{let i=window.location.href;i!==r&&(r=i,setTimeout(()=>{V({title:document.title,url:i})},0))}),a("Hash routing tracking enabled")}document.addEventListener("visibilitychange",()=>{document.visibilityState==="hidden"?(jt(),mt(),$()):(ut(),ct=!1)}),window.addEventListener("pagehide",()=>{mt(),$()}),window.addEventListener("beforeunload",()=>{mt(),$()})}if(window.balance?._version&&window.balance._version!==_){console.warn(`[artistPixel] Version conflict: ${window.balance._version} already loaded, skipping ${_}`);return}let pt=window.balance?.q||[];function Ht(){if(pt.length>0){a("Processing",pt.length,"queued commands");for(let t of pt){let[e,...n]=t;switch(e){case"track":wt(n[0],n[1]);break;case"identify":Ft(n[0],n[1]);break;case"page":V(n[0]);break;case"purchase":qt(n[0],n[1],n[2]);break;case"setConsent":Mt(n[0]);break;default:a("Unknown queued command:",e)}}}}let zt={track:wt,identify:Ft,page:V,purchase:qt,getSessionId:()=>q,getVisitorId:()=>b,getFanIdHash:()=>g,setFanIdHash:Ue,getAttribution:()=>R,setConsent:Mt,getConsent:Ee,hasConsent:Te,registerLinks:Le,_version:_};window.artistPixel=zt,window.balance=zt;function $t(){tt&&!l&&new ue({style:Kt,primaryColor:Xt,position:Qt})}let Vt=window.requestIdleCallback||(t=>setTimeout(t,1));document.readyState==="loading"?document.addEventListener("DOMContentLoaded",()=>{Nt(),Ht(),Vt(()=>$t())}):(Nt(),Ht(),Vt(()=>$t())),a("Pixel script loaded")})();})();
|
|
102
|
+
`,this.shadow.getElementById("accept")?.addEventListener("click",()=>this.handleConsent(!0)),this.shadow.getElementById("decline")?.addEventListener("click",()=>this.handleConsent(!1))}handleConsent(e){window.balance?.setConsent&&window.balance.setConsent({analytics:e,marketing:e,personalization:e,timestamp:new Date().toISOString()}),e&&!window._balanceInitialPageviewFired&&(window._balanceInitialPageviewFired=!0,window.balance?.page&&window.balance.page(),ft(),a("Initial pageview fired after consent granted")),this.remove()}remove(){this.container&&(this.container.remove(),this.container=null,this.shadow=null,a("ConsentManager: Banner removed"))}}let Tt=!1,H=!1;function fe(){if(!O)return;if(window.fbq){a("[Platform:Meta] Already loaded, skipping");return}a("[Platform:Meta] Injecting pixel:",O);let t=function(...n){t.callMethod?t.callMethod.apply(t,n):t.queue.push(n)};window._fbq||(window._fbq=t),t.push=t,t.loaded=!0,t.version="2.0",t.queue=[],window.fbq=t;let e=document.createElement("script");e.async=!0,e.src="https://connect.facebook.net/en_US/fbevents.js",e.onload=()=>{window.fbq("init",O),m.pageview&&window.fbq("track","PageView"),a("[Platform:Meta] Initialized and PageView tracked")},document.head.appendChild(e)}function me(){if(!T)return;if(window.ttq?._i?.[T]){a("[Platform:TikTok] Already loaded, skipping");return}a("[Platform:TikTok] Injecting pixel:",T);let t=window,e="ttq";t.TiktokAnalyticsObject=e;let n=t[e]=t[e]||[];n.methods=["page","track","identify","instances","debug","on","off","once","ready","alias","group","enableCookie","disableCookie","holdConsent","revokeConsent","grantConsent"],n.setAndDefer=function(o,c){o[c]=function(...d){o.push([c].concat(d))}};for(let o=0;o<n.methods.length;o++)n.setAndDefer(n,n.methods[o]);n.instance=function(o){let c=n._i[o]||[];for(let d=0;d<n.methods.length;d++)n.setAndDefer(c,n.methods[d]);return c},n.load=function(o){let c="https://analytics.tiktok.com/i18n/pixel/events.js";n._i=n._i||{},n._i[o]=[],n._i[o]._u=c,n._t=n._t||{},n._t[o]=+new Date,n._o=n._o||{};let d=document.createElement("script");d.type="text/javascript",d.async=!0,d.src=c+"?sdkid="+o+"&lib="+e,document.head.appendChild(d)},n.load(T),m.pageview&&n.page(),a("[Platform:TikTok] Initialized and page() tracked")}function we(){if(!p)return;if(window.dataLayer=window.dataLayer||[],typeof window.gtag!="function"&&(window.gtag=function(...e){window.dataLayer.push(e)}),document.querySelector('script[src*="googletagmanager.com/gtag/js"]')){a("[Platform:GoogleAds] gtag.js already loaded, configuring"),window.gtag("config",p);return}a("[Platform:GoogleAds] Injecting gtag:",p),window.gtag("consent","default",{ad_storage:"granted",ad_user_data:"granted",ad_personalization:"granted",analytics_storage:"granted"});let t=document.createElement("script");t.async=!0,t.src=`https://www.googletagmanager.com/gtag/js?id=${p}`,t.onload=()=>{window.gtag("js",new Date),window.gtag("config",p),a("[Platform:GoogleAds] Initialized")},document.head.appendChild(t)}function pe(){if(!j)return;if(document.querySelector(`script[src*="googletagmanager.com/gtm.js?id=${j}"]`)){a("[Platform:GTM] Already loaded, skipping");return}a("[Platform:GTM] Injecting GTM:",j),window.dataLayer=window.dataLayer||[],typeof window.gtag!="function"&&(window.gtag=function(...n){window.dataLayer.push(n)});let t=H?"granted":"denied";window.gtag("consent","default",{ad_storage:t,ad_user_data:t,ad_personalization:t,analytics_storage:t}),window.gtag("set","wait_for_update",500),window.dataLayer.push({"gtm.start":new Date().getTime(),event:"gtm.js"});let e=document.createElement("script");e.async=!0,e.src=`https://www.googletagmanager.com/gtm.js?id=${j}`,e.onload=()=>{a("[Platform:GTM] Initialized")},document.head.appendChild(e)}function he(){if(!h)return;let t=document.querySelector('script[src*="googletagmanager.com/gtag/js"]');window.dataLayer=window.dataLayer||[],typeof window.gtag!="function"&&(window.gtag=function(...o){window.dataLayer.push(o)});let e=H?"granted":"denied";if(window.gtag("consent","default",{ad_storage:e,ad_user_data:e,ad_personalization:e,analytics_storage:e}),t){a("[Platform:GA4] gtag.js already loaded, configuring"),window.gtag("config",h,{send_page_view:!1});return}a("[Platform:GA4] Injecting gtag:",h);let n=document.createElement("script");n.async=!0,n.src=`https://www.googletagmanager.com/gtag/js?id=${h}`,n.onload=()=>{window.gtag("js",new Date),window.gtag("config",h,{send_page_view:!1}),a("[Platform:GA4] Initialized")},document.head.appendChild(n)}function ye(){if(U){if(Tt){a("[Platform] Already loaded, skipping");return}if(!H){a("[Platform] Marketing consent not granted, deferring");return}a("[Platform] Injecting platform pixels (consent granted)"),Tt=!0,fe(),me(),we(),pe(),he()}}function Lt(t){if(H=t,a("[Platform] Marketing consent:",t?"granted":"denied"),t&&ye(),window.ttq&&(t?window.ttq.grantConsent?.():window.ttq.revokeConsent?.()),typeof window.gtag=="function"){let e=t?"granted":"denied";window.gtag("consent","update",{ad_storage:e,ad_user_data:e,ad_personalization:e,analytics_storage:e})}}function lt(t){if(!U||!H)return!1;let e=t.toLowerCase();return e==="pageview"||e==="page_view"?m.pageview:e==="purchase"?m.purchase:e==="addtocart"||e==="add_to_cart"?m.addToCart:e==="lead"||e==="form_submit"?m.lead:e==="viewcontent"||e==="view_content"?m.viewContent:e==="initiatecheckout"||e==="initiate_checkout"?m.initiateCheckout:e==="completeregistration"||e==="complete_registration"?m.completeRegistration:e==="subscribe"?m.subscribe:e==="search"?m.search:e==="contact"?m.contact:m.custom.length>0?m.custom.some(n=>n.toLowerCase()===e):!1}function be(){lt("pageview")&&(a("[Platform] Forwarding PageView"),window.fbq&&window.fbq("track","PageView"),window.ttq&&window.ttq.page(),typeof window.gtag=="function"&&h&&window.gtag("event","page_view",{send_to:h}))}function ve(t,e,n){if(lt("purchase")){if(a("[Platform] Forwarding Purchase:",t,e),window.fbq&&window.fbq("track","Purchase",{value:t,currency:e,content_ids:n?.contentIds,content_type:n?.contentType||"product",order_id:n?.transactionId}),window.ttq&&window.ttq.track("CompletePayment",{value:t,currency:e,order_id:n?.transactionId}),typeof window.gtag=="function"&&p){let o=_t?`${p}/${_t}`:p;window.gtag("event","conversion",{send_to:o,value:t,currency:e,transaction_id:n?.transactionId}),window.gtag("event","purchase",{send_to:p,value:t,currency:e,transaction_id:n?.transactionId})}typeof window.gtag=="function"&&h&&window.gtag("event","purchase",{send_to:h,value:t,currency:e,transaction_id:n?.transactionId,items:n?.items})}}function _e(t,e){if(!lt(t))return;let n=t.toLowerCase();a("[Platform] Forwarding custom event:",t);let o={addtocart:"AddToCart",add_to_cart:"AddToCart",lead:"Lead",form_submit:"Lead",viewcontent:"ViewContent",view_content:"ViewContent",search:"Search",subscribe:"Subscribe",contact:"Contact",completeregistration:"CompleteRegistration",complete_registration:"CompleteRegistration",initiatecheckout:"InitiateCheckout",initiate_checkout:"InitiateCheckout"},c={addtocart:"AddToCart",add_to_cart:"AddToCart",lead:"SubmitForm",form_submit:"SubmitForm",viewcontent:"ViewContent",view_content:"ViewContent",search:"Search",subscribe:"Subscribe",contact:"Contact",completeregistration:"CompleteRegistration",complete_registration:"CompleteRegistration",initiatecheckout:"InitiateCheckout",initiate_checkout:"InitiateCheckout"},d={addtocart:"add_to_cart",add_to_cart:"add_to_cart",lead:"generate_lead",form_submit:"generate_lead",viewcontent:"view_item",view_content:"view_item",search:"search",subscribe:"subscribe",contact:"contact",completeregistration:"sign_up",complete_registration:"sign_up",initiatecheckout:"begin_checkout",initiate_checkout:"begin_checkout"};if(window.fbq){let s=o[n];s?window.fbq("track",s,e):window.fbq("trackCustom",t,e)}if(window.ttq){let s=c[n]||t;window.ttq.track(s,e)}if(typeof window.gtag=="function"&&p){let s=d[n]||t;window.gtag("event",s,{send_to:p,...e})}if(typeof window.gtag=="function"&&h){let s=d[n]||t;window.gtag("event",s,{send_to:h,...e})}}function At(){try{return k==="local"?localStorage:sessionStorage}catch{return null}}function W(t){let e=At();if(!e)return null;try{let n=w+t,o=e.getItem(n);if(!o&&k==="session")try{o=localStorage.getItem(n)}catch{}return o}catch{return null}}function E(t,e){let n=At();if(n)try{n.setItem(w+t,e)}catch{}}function Rt(){if(k!=="local"){a("Upgrading storage tier: session -> local");try{let t=[];for(let e=0;e<sessionStorage.length;e++){let n=sessionStorage.key(e);n?.startsWith(w)&&t.push(n)}for(let e of t){let n=sessionStorage.getItem(e);n&&localStorage.setItem(e,n)}for(let e of t)sessionStorage.removeItem(e);k="local",a(`Storage tier upgraded, migrated ${t.length} items`)}catch(t){C(" Storage migration failed:",t)}}}function Y(){return crypto&&crypto.randomUUID?crypto.randomUUID():"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,t=>{let e=Math.random()*16|0;return(t==="x"?e:e&3|8).toString(16)})}function ke(){try{let t=W(xt),e=W(et);if(t&&e&&Date.now()-parseInt(e,10)<oe)return E(et,Date.now().toString()),t;let n=Y();return E(xt,n),E(et,Date.now().toString()),n}catch{return Y()}}function Ie(){let t=new URLSearchParams(window.location.search),e={};return["source","medium","campaign","content","term"].forEach(n=>{let o=t.get(`utm_${n}`);o&&(e[`utm_${n}`]=o)}),e}function xe(){try{let t=W(Ct);if(t){A=JSON.parse(t),a("Loaded attribution:",A);return}let e=Ie();Object.keys(e).length>0&&(A=e,E(Ct,JSON.stringify(e)),a("Captured attribution:",A))}catch{}}function Ce(){try{if(l?.analytics!==!0){a("Skipping fan ID load - no analytics consent");return}g=localStorage.getItem(w+y),g&&a("Loaded fan ID hash:",g.substring(0,16)+"...")}catch{if(l?.analytics===!0)try{g=W(y)}catch{}}}function gt(){try{let t=localStorage.getItem(w+nt);if(t)return t;let e=Y();return localStorage.setItem(w+nt,e),a("Created persistent visitor ID:",e.substring(0,8)+"..."),e}catch{return a("localStorage unavailable, using session ID as fallback"),F||Y()}}function Se(){try{b=localStorage.getItem(w+nt),b&&a("Loaded visitor ID:",b.substring(0,8)+"...")}catch{}}function Pe(){try{let t=localStorage.getItem(B);if(t){let e=JSON.parse(t);if(e.expiresAt&&Date.now()>e.expiresAt){a("Consent expired - clearing stored consent"),localStorage.removeItem(B),l=null;return}if(e.expiresAt){let n=e.expiresAt-Date.now();n>0&&n<ae&&(a("Consent nearing expiration - will prompt for refresh"),window._balanceConsentNeedsRefresh=!0)}l=e.preferences||null,a("Loaded consent:",l)}}catch{}}function Dt(t){let e=l;l=t;try{let o={preferences:t,method:"explicit",version:1,expiresAt:Date.now()+ne};localStorage.setItem(B,JSON.stringify(o)),a("Consent saved with TTL:",t),window._balanceConsentNeedsRefresh=!1}catch(o){C(" Could not save consent:",o)}if(t.analytics===!0&&(Rt(),b||(b=gt()),g))try{localStorage.setItem(w+y,g),a("Fan ID hash persisted after consent granted")}catch{E(y,g)}if(t.analytics!==!0){try{localStorage.removeItem(w+y)}catch{}try{sessionStorage.removeItem(w+y)}catch{}g=null,a("Fan ID hash cleared from storage and memory (consent revoked)")}let n=S({event_name:"consent_updated",metadata:{consent_preferences:t,consent_method:"explicit",previous_consent:e||void 0}});P(n);try{window.dispatchEvent(new CustomEvent("artistPixel:consent:updated",{detail:t})),a("DOM event artistPixel:consent:updated dispatched")}catch{}U&&Lt(t.marketing===!0)}function Ee(){return l}function Te(t){return l?.[t]===!0}function Le(t){for(let[e,n]of Object.entries(t))try{let o=Mt(e);at[o]=n}catch{at[e]=n}a("Registered",Object.keys(t).length,"links for tracking enrichment")}function Mt(t){try{let e=new URL(t);return`${e.protocol}//${e.host}${e.pathname}${e.search}`}catch{return t}}function Ae(t){let e=Mt(t);return at[e]||null}async function Re(t){let e=t.toLowerCase().trim(),o=new TextEncoder().encode(e),c=await crypto.subtle.digest("SHA-256",o);return Array.from(new Uint8Array(c)).map(s=>s.toString(16).padStart(2,"0")).join("")}async function De(t){if(!M)return null;try{let e=await fetch(le,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({data:{email:t.toLowerCase().trim(),artistId:M}})});if(!e.ok)return a("hashIdentity endpoint failed:",e.status),null;let n=await e.json();return{hash:n.result.fanIdHash,version:n.result.hashVersion}}catch(e){return a("hashIdentity endpoint error:",e),null}}function S(t){let e=Jt(),n={artist_id:M,fan_session_id:F,visitor_id:b||gt(),fan_id_hash:g||void 0,timestamp:new Date().toISOString(),source_url:window.location.href,referrer_url:document.referrer||void 0,user_agent:navigator.userAgent,device_type:e.device_type,browser:e.browser,os:e.os,tracking_source:G,...t,...A};return X&&!t.projectId&&(n.projectId=X),n}function P(t){_.push(t),a("Event queued:",t.event_name,"(queue:",_.length,")"),_.length>=10&&z()}async function z(){if(_.length===0)return;let t=[..._];_=[],a("Flushing",t.length,"events to",L);try{let e=await fetch(L,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({events:t}),keepalive:!0});if(!e.ok)throw new Error(`HTTP ${e.status}`);a("Events sent successfully")}catch(e){if(C(" Failed to send events, trying fallback:",e),L!==Pt&&!Q)try{if((await fetch(Pt,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({events:t}),keepalive:!0})).ok){a("Events sent via fallback (no geo)");return}}catch(n){C(" Fallback also failed:",n)}_.length<50&&_.push(...t)}}function Me(){ot&&clearInterval(ot),ot=window.setInterval(()=>{_.length>0&&z()},5e3)}function ut(){D||(it=Date.now()),D=Date.now(),q=!0,a("Active time tracking started/resumed")}function Ot(){D&&q&&(rt+=Date.now()-D),q=!1,a("Active time tracking paused, accumulated:",rt,"ms")}function jt(){let t=rt;return q&&D&&(t+=Date.now()-D),t}function Oe(){Et=Date.now(),N&&(N=!1,ut(),a("User returned from idle"))}function je(){if(document.visibilityState==="hidden"){a("Skipping heartbeat - tab hidden");return}if(Date.now()-Et>ge){N||(N=!0,Ot(),a("User idle - pausing heartbeat"));return}let t=jt(),e=Math.round(t/1e3),n=S({event_name:"engagement_heartbeat",metadata:{time_on_page_seconds:e,time_on_page_ms:t,heartbeat_interval_ms:Z,is_active:q&&!N}});P(n),st++,a("Heartbeat sent:",e,"seconds active")}function ft(){if(!yt){a('Heartbeat disabled via data-heartbeat="false"');return}R&&clearInterval(R),ut(),R=window.setInterval(()=>{je()},Z),a("Heartbeat started with interval:",Z,"ms")}function mt(){if(!ct){if(ct=!0,R&&(clearInterval(R),R=null),yt){let t=it?Date.now()-it:0,e=jt(),n=S({event_name:"engagement_summary",metadata:{total_time_ms:t,active_time_ms:e,heartbeat_samples:st,page_path:window.location.pathname}});if(navigator.sendBeacon&&L){let o=JSON.stringify({events:[n]});navigator.sendBeacon(L,o),a("Engagement summary sent via sendBeacon:",Math.round(e/1e3),"seconds active")}else P(n),a("Engagement summary enqueued:",Math.round(e/1e3),"seconds active")}st=0}}function $(t={}){let e=t.url||window.location.href;if(re(e)){a("Page excluded from tracking:",e);return}let n=S({event_name:"pageview",page_title:t.title||document.title,source_url:e});P(n),be()}function wt(t,e={}){let n=S({event_name:"custom",metadata:{event_type:t,...e}});P(n),_e(t,e)}async function Ut(t,e={}){try{if(l?.analytics!==!0){a("identify() skipped - no analytics consent");return}let n=1,o=await De(t);if(o?(g=o.hash,n=o.version,a("identify() using server HMAC hash (v2)")):(g=await Re(t),a("identify() using local SHA256 hash (v1 fallback)")),l?.analytics===!0&&Rt(),l?.analytics===!0)try{localStorage.setItem(w+y,g)}catch{E(y,g)}let c=t.split("@"),d=c[0].charAt(0)+"***@"+(c[1]||"");a("Fan identified:",{name:e.name||"(no name)",email:d,hash:g.substring(0,16)+"...",hashVersion:n,traits:e,storageTier:k});let s=S({event_name:"identify",fan_id_hash:g,metadata:{email:t.toLowerCase().trim(),email_sha256:g,email_display:d,hash_version:n,traits:e,consent_preferences:l||void 0,storage_tier:k}});P(s)}catch(n){C(" Failed to identify:",n)}}function Ue(t){if(!t||typeof t!="string"){C("setFanIdHash: invalid hash provided");return}if(g=t,l?.analytics===!0)try{localStorage.setItem(w+y,t),a("Fan ID hash persisted:",t.substring(0,16)+"...")}catch{E(y,t)}else a("Fan ID hash set (memory only - no consent):",t.substring(0,16)+"...")}function Ft(t,e="USD",n={}){let o=S({event_name:"purchase",metadata:{revenue:t,currency:e,...n}});P(o),ve(t,e,n)}function qt(){if(G=ee(),a("Tracking source detected:",G),Pe(),l?.analytics!==!0){try{localStorage.removeItem(w+y)}catch{}try{sessionStorage.removeItem(w+y)}catch{}}l?.analytics===!0?(k="local",a("Storage tier: local (analytics consent granted)")):(k="session",a("Storage tier: session (privacy by default)")),F=ke(),Ce(),Se(),b||(b=gt()),l||a(tt?"Consent UI enabled, waiting for explicit user consent (Tier 0 mode)":"No consent - operating in privacy-first mode (session storage only, limited tracking)"),U&&l?.marketing===!0?(a("[Platform] Marketing consent already granted, initializing platform pixels"),Lt(!0)):U&&a("[Platform] Platform pixels configured:",{meta:O||"(none)",tiktok:T||"(none)",googleAds:p||"(none)"}),xe(),Me(),a("Initialized",{artistId:M,projectId:X||"(none - will track to all projects)",rawProjectId:K||"(none)",sessionId:F,visitorId:b?b.substring(0,8)+"...":null,fanIdHash:g,consent:l,storageTier:k,trackingSource:G,useEmulator:Q,endpoint:L}),l?.analytics===!0?(window._balanceInitialPageviewFired=!0,$(),ft(),a("Full tracking enabled (user consented)")):tt?a("Tracking dormant - waiting for explicit consent via ConsentManager"):(window._balanceInitialPageviewFired=!0,$(),ft(),a("Privacy-first tracking enabled (session-scoped, visitor_id for deduplication)")),["mousemove","keydown","scroll","touchstart"].forEach(s=>{document.addEventListener(s,Oe,{passive:!0})});let t=window.location.hostname;function e(s){try{let r=new URL(s).hostname.toLowerCase();return r.includes("spotify")?"spotify":r.includes("apple")||r.includes("music.apple")?"apple_music":r.includes("youtube")||r.includes("youtu.be")?"youtube":r.includes("soundcloud")?"soundcloud":r.includes("tidal")?"tidal":r.includes("deezer")?"deezer":r.includes("amazon")||r.includes("music.amazon")?"amazon_music":r.includes("bandcamp")?"bandcamp":r.includes("lnk.to")||r.includes("linkfire")?"linkfire":r.includes("linktr.ee")?"linktree":r.includes("shop")||r.includes("store")||r.includes("merch")?"shop":r.includes("ticketmaster")||r.includes("eventbrite")||r.includes("dice.fm")?"tickets":r.includes("instagram")?"instagram":r.includes("twitter")||r.includes("x.com")?"twitter":r.includes("tiktok")?"tiktok":r.includes("facebook")?"facebook":"external"}catch{return"external"}}function n(s){try{return new URL(s,window.location.origin).hostname!==t}catch{return!1}}function o(s,r){let u=e(s),I=Ae(s),Vt=I?.title||r?.textContent?.trim().substring(0,100)||"",Gt=I?.id||r?.id||r?.getAttribute("data-link-id")||void 0,Bt=I?.category;a("External link clicked:",{url:s,platform:u,linkText:Vt,linkId:Gt,fromRegistry:!!I}),wt("page_link_click",{link_url:s,link_text:Vt,link_id:Gt,platform:u,link_type:"external",...Bt&&{link_category:Bt},...I&&Object.fromEntries(Object.entries(I).filter(([ht])=>!["title","id","category"].includes(ht)).map(([ht,Fe])=>[`link_${ht}`,Fe]))})}let c=window.open;if(window.open=function(s,r,u){if(s){let I=s.toString();n(I)&&o(I)}return c.call(window,s,r,u)},a("window.open interception enabled (always on)"),i?.dataset.autoTrackLinks==="true"&&(document.addEventListener("click",s=>{let u=s.target.closest("a");if(u&&u.href&&n(u.href)){if(It&&(St(u.href)||u.hasAttribute("download")))return;o(u.href,u)}},{capture:!0,passive:!0}),a("External link click listener enabled (opt-in)")),It&&(document.addEventListener("click",s=>{let u=s.target.closest("a");u?.href&&(St(u.href)||u.hasAttribute("download"))&&ce(u.href,u)},{capture:!0,passive:!0}),a("File download tracking enabled")),te){let s=window.location.href;window.addEventListener("hashchange",()=>{let r=window.location.href;r!==s&&(s=r,setTimeout(()=>{$({title:document.title,url:r})},0))}),a("Hash routing tracking enabled")}document.addEventListener("visibilitychange",()=>{document.visibilityState==="hidden"?(Ot(),mt(),z()):(ut(),ct=!1)}),window.addEventListener("pagehide",()=>{mt(),z()}),window.addEventListener("beforeunload",()=>{mt(),z()})}if(window.balance?._version&&window.balance._version!==v){console.warn(`[artistPixel] Version conflict: ${window.balance._version} already loaded, skipping ${v}`);return}let pt=window.balance?.q||[];function Nt(){if(pt.length>0){a("Processing",pt.length,"queued commands");for(let t of pt){let[e,...n]=t;switch(e){case"track":wt(n[0],n[1]);break;case"identify":Ut(n[0],n[1]);break;case"page":$(n[0]);break;case"purchase":Ft(n[0],n[1],n[2]);break;case"setConsent":Dt(n[0]);break;default:a("Unknown queued command:",e)}}}}let Ht={track:wt,identify:Ut,page:$,purchase:Ft,getSessionId:()=>F,getVisitorId:()=>b,getFanIdHash:()=>g,setFanIdHash:Ue,getAttribution:()=>A,setConsent:Dt,getConsent:Ee,hasConsent:Te,registerLinks:Le,_version:v};window.artistPixel=Ht,window.balance=Ht;function zt(){tt&&!l&&new ue({style:Xt,primaryColor:Qt,position:Zt})}let $t=window.requestIdleCallback||(t=>setTimeout(t,1));document.readyState==="loading"?document.addEventListener("DOMContentLoaded",()=>{qt(),Nt(),$t(()=>zt())}):(qt(),Nt(),$t(()=>zt())),a("Pixel script loaded")})();})();
|