{"version":3,"file":"popup.js?v=9.1.8","mappings":";oJAGe,SAASA,EAAMC,GAC5B,MAAM,KAAEC,EAAI,OAAEC,EAAM,aAAEC,EAAY,eAAEC,EAAc,eAAEC,GAAmBL,EACjEM,EAAiB,KACvBA,EAAeC,SAA4B,IAAjBJ,EAAqBA,EAAe,EAC9D,MAAMK,GAAY,QAAUF,EAAeL,MACrCQ,EAAaC,eAAeC,QAAQ,cAAcV,KAkBxD,SAASW,EAAUC,GACjB,MAAMC,EAAiBC,SAASC,eAAe,kBAEzCC,EAAe,KAEjBf,GACAW,KACET,GAAqC,wBAAnBA,GAA4C,IAAIc,KAAKd,GAAkB,IAAIc,QAExEC,OAAOC,SAAWL,SAASM,gBAAgBC,YAE5CjB,IACpBS,EAAgBS,MAAMC,QAAU,QAChCd,eAAee,QAAQ,cAAcxB,IAAQ,QAC7CkB,OAAOO,oBAAoB,SAAUT,KAQ3C,OAHAE,OAAOQ,iBAAiB,SAAUV,GAClCA,IAEO,KACLE,OAAOO,oBAAoB,SAAUT,EAAa,CAEtD,CAzCIT,GAAcC,GAIO,QAAU,uBAAuBR,OAEnDO,IACD,QAAU,uBAAuBP,IAAQK,EAAesB,MAAOtB,EAAeC,UAG3EE,GACHG,GAAU,IAVZA,GAAU,EAyChB,sDCpDO,MAAMiB,EAAwB,CACnC5B,KAAM,0BACN2B,MAAO,WACPrB,SAAU,KAGL,SAASuB,EAAWC,GACzB,MAAM9B,EAAO8B,EAAa,IACpBC,EAAUjB,SAASkB,OAAOC,MAAM,KAEtC,IAAK,IAAIC,EAAI,EAAGA,EAAIH,EAAQI,OAAQD,IAAK,CACvC,IAAIF,EAASD,EAAQG,GAErB,KAA4B,MAArBF,EAAOI,OAAO,IACnBJ,EAASA,EAAOK,UAAU,GAE5B,GAA6B,IAAzBL,EAAOM,QAAQtC,GACjB,OAAO,EAIX,OAAO,CACT,CAEO,SAASuC,EAAWT,EAAoBU,EAAqBC,GAClE,MAAMC,EAAO,IAAIzB,KACjByB,EAAKC,QAAQD,EAAKE,UAA0B,GAAbH,EAAkB,GAAK,GAAK,KAE3D,MAAMI,EAAU,WAAWH,EAAKI,gBAChChC,SAASkB,OAAS,GAAGF,KAAcU,KAAeK,UACpD","sources":["webpack://empori-base/./src/controls/Popup.ts","webpack://empori-base/./src/generic/CookieFunctions.ts"],"sourcesContent":["import { PopupViewModel } from '../empracoTypes';\r\nimport { GeneralCookieSettings, GetCookie, SetCookie } from '../generic/CookieFunctions';\r\n\r\nexport default function Popup(props: PopupViewModel) {\r\n const { name, active, showInterval, expirationDate, appearOnScroll } = props;\r\n const cookieSettings = GeneralCookieSettings;\r\n cookieSettings.liteTime = showInterval !== 0 ? showInterval : 1;\r\n const hasCookie = GetCookie(cookieSettings.name);\r\n const popupShown = sessionStorage.getItem(`popupShown-${name}`)\r\n \r\n if(!hasCookie && !popupShown) {\r\n showPopup(true)\r\n }\r\n else {\r\n const hasPopUpCookie = GetCookie(`empori-popup-cookie-${name}`);\r\n if(!hasPopUpCookie) {\r\n if(hasCookie){\r\n SetCookie(`empori-popup-cookie-${name}`, cookieSettings.value, cookieSettings.liteTime);\r\n }\r\n \r\n if (!popupShown) {\r\n showPopup(true);\r\n }\r\n }\r\n }\r\n\r\n function showPopup(popupVisible: boolean) {\r\n const popupContainer = document.getElementById('popupContainer');\r\n \r\n const handleScroll = () => {\r\n if (\r\n active &&\r\n popupVisible &&\r\n (!expirationDate || expirationDate === '0001-01-01T00:00:00' || new Date(expirationDate) > new Date())\r\n ) {\r\n const scrollPosition = window.scrollY || document.documentElement.scrollTop;\r\n \r\n if (scrollPosition >= appearOnScroll!) {\r\n popupContainer!.style.display = 'block';\r\n sessionStorage.setItem(`popupShown-${name}`, 'true');\r\n window.removeEventListener('scroll', handleScroll);\r\n }\r\n }\r\n };\r\n \r\n window.addEventListener('scroll', handleScroll);\r\n handleScroll();\r\n \r\n return () => {\r\n window.removeEventListener('scroll', handleScroll);\r\n };\r\n }\r\n}\r\n","export const GeneralCookieSettings = {\r\n name: 'empori-cookies-accepted',\r\n value: 'accepted',\r\n liteTime: 365\r\n};\r\n\r\nexport function GetCookie (cookieName: string) {\r\n const name = cookieName + '=';\r\n const cookies = document.cookie.split(';');\r\n\r\n for (let i = 0; i < cookies.length; i++) {\r\n let cookie = cookies[i];\r\n\r\n while (cookie.charAt(0) === ' ') {\r\n cookie = cookie.substring(1);\r\n }\r\n if (cookie.indexOf(name) === 0) {\r\n return true;\r\n }\r\n }\r\n\r\n return false;\r\n}\r\n\r\nexport function SetCookie (cookieName: string, cookieValue: string, expiryDays: number) {\r\n const date = new Date();\r\n date.setTime(date.getTime() + (expiryDays * 24 * 60 * 60 * 1000));\r\n\r\n const expires = `expires=${date.toUTCString()}`;\r\n document.cookie = `${cookieName}=${cookieValue};${expires};path=/`;\r\n}"],"names":["Popup","props","name","active","showInterval","expirationDate","appearOnScroll","cookieSettings","liteTime","hasCookie","popupShown","sessionStorage","getItem","showPopup","popupVisible","popupContainer","document","getElementById","handleScroll","Date","window","scrollY","documentElement","scrollTop","style","display","setItem","removeEventListener","addEventListener","value","GeneralCookieSettings","GetCookie","cookieName","cookies","cookie","split","i","length","charAt","substring","indexOf","SetCookie","cookieValue","expiryDays","date","setTime","getTime","expires","toUTCString"],"sourceRoot":""}