{"version":3,"file":"Exit_Intent_Pop_Up.DGZD_xYs.mjs","names":["useStore"],"sources":["https:/framer.com/m/framer/store.js@^1.0.0","https:/framerusercontent.com/modules/kmhLI6GwsPkSHyoFTk4W/g7NSUSTh6t2dgmHBMAOD/Exit_Intent_Pop_Up.js"],"sourcesContent":["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map","/*\n * ExitIntent by framer.today\n * v1.0.0\n * https://framer.today/license\n *\n */import{jsx as _jsx}from\"react/jsx-runtime\";import React from\"react\";import{motion}from\"framer-motion\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";const useStore=createStore({isOverlayVisible:false});export function withWindowLeaveOverlay(Component){return function WrappedComponent(props){const[store,setStore]=useStore();const[overlayDismissed,setOverlayDismissed]=React.useState(false);// Check session storage once and initialize overlay visibility\nReact.useEffect(()=>{const dismissed=sessionStorage.getItem(\"overlayDismissed\")===\"true\";setOverlayDismissed(dismissed);if(dismissed){setStore({isOverlayVisible:false});}},[]);// Listen for mouseout events to detect exit intent\nReact.useEffect(()=>{if(overlayDismissed)return;const handleMouseLeave=event=>{if(sessionStorage.getItem(\"overlayDismissed\")===\"true\")return;const{clientX,clientY,relatedTarget}=event;const{innerWidth,innerHeight}=window;if(!relatedTarget&&(clientY<=0||clientY>=innerHeight||clientX<=0||clientX>=innerWidth)){setStore({isOverlayVisible:true});}};document.addEventListener(\"mouseout\",handleMouseLeave);return()=>document.removeEventListener(\"mouseout\",handleMouseLeave);},[overlayDismissed,setStore]);const dismissOverlay=event=>{event.preventDefault();setStore({isOverlayVisible:false});sessionStorage.setItem(\"overlayDismissed\",\"true\");};if(!store.isOverlayVisible)return null;const overlayStyle={position:\"fixed\",top:0,left:0,right:0,bottom:0,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",backgroundColor:\"rgba(0, 0, 0, 0.8)\",zIndex:1e3};const motionStyle={initial:{y:25,opacity:0},animate:{y:0,opacity:1},exit:{y:25,opacity:0},transition:{type:\"spring\",stiffness:300,damping:45,mass:1.1}};return /*#__PURE__*/_jsx(\"div\",{style:overlayStyle,onClick:dismissOverlay,children:/*#__PURE__*/_jsx(motion.div,{...motionStyle,onClick:e=>e.stopPropagation(),children:/*#__PURE__*/_jsx(Component,{...props})})});};}export function withDismissOverlay(Component){return function WrappedComponent(props){const[,setStore]=useStore();const dismissOverlay=event=>{event.preventDefault();setStore({isOverlayVisible:false});sessionStorage.setItem(\"overlayDismissed\",\"true\");};return /*#__PURE__*/_jsx(Component,{...props,onClick:dismissOverlay});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withWindowLeaveOverlay\":{\"type\":\"reactHoc\",\"name\":\"withWindowLeaveOverlay\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withDismissOverlay\":{\"type\":\"reactHoc\",\"name\":\"withDismissOverlay\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Exit_Intent_Pop_Up.map"],"mappings":"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"}