<html><head></head><body>{"version":3,"file":"index-DA3OpK7r.js","sources":["../../src/scripts/helpers/index.ts"],"sourcesContent":["import modules from '../modules';\r\nimport { breakpoints } from './variables';\r\n\r\nconst debounce = (callback: (args: unknown) =&gt; void, wait: number) =&gt; {\r\n  let timerId: ReturnType<typeof settimeout="">;\r\n  return (...args: [unknown]) =&gt; {\r\n    clearTimeout(timerId);\r\n    timerId = setTimeout(() =&gt; {\r\n      callback(...args);\r\n    }, wait);\r\n  };\r\n};\r\n\r\nconst throttle = (callback: (args: unknown) =&gt; void, wait: number) =&gt; {\r\n  let inThrottle: boolean;\r\n  return (...args: [unknown]) =&gt; {\r\n    if (!inThrottle) {\r\n      callback(...args);\r\n      inThrottle = true;\r\n      setTimeout(() =&gt; {\r\n        inThrottle = false;\r\n      }, wait);\r\n    }\r\n  };\r\n};\r\n// Map number x from range [a, b] to [c, d]\r\nconst map = (x: number, a: number, b: number, c: number, d: number) =&gt;\r\n  ((x - a) * (d - c)) / (b - a) + c;\r\n// Linear interpolation\r\nconst lerp = (a: number, b: number, n: number) =&gt; (1 - n) * a + n * b;\r\nconst calcWinsize = () =&gt; {\r\n  return { width: window.innerWidth, height: window.innerHeight };\r\n};\r\n\r\n// Gets the mouse position\r\nconst getMousePos = (e: { clientX: number; clientY: number }) =&gt; {\r\n  return {\r\n    x: e.clientX,\r\n    y: e.clientY\r\n  };\r\n};\r\n\r\nconst distance = (x1: number, y1: number, x2: number, y2: number) =&gt; {\r\n  const a = x1 - x2;\r\n  const b = y1 - y2;\r\n  return Math.hypot(a, b);\r\n};\r\n\r\nconst isDesktop = () =&gt; {\r\n  return window.matchMedia(`(min-width: ${breakpoints.desktop}px)`).matches;\r\n};\r\n\r\nconst isSmallDesktop = () =&gt; {\r\n  return window.matchMedia(`(min-width: ${breakpoints.smallDesktop}px)`).matches;\r\n};\r\n\r\nconst isTabletLandscape = () =&gt; {\r\n  return window.matchMedia(`(min-width: ${breakpoints.tabletLandscape}px)`).matches;\r\n};\r\n\r\nconst isTablet = () =&gt; {\r\n  return window.matchMedia(\r\n    `(min-width: ${breakpoints.tablet}px) and (max-width: ${breakpoints.desktop - 1}px)`\r\n  ).matches;\r\n};\r\n\r\nconst isMobile = () =&gt; {\r\n  return window.matchMedia(`(max-width: ${breakpoints.desktop - 1}px)`).matches;\r\n};\r\n\r\nconst prefersReducedMotion = () =&gt; {\r\n  return window.matchMedia('(prefers-reduced-motion: reduce)').matches;\r\n};\r\n\r\nconst getBrowserName = () =&gt; {\r\n  const userAgent = navigator.userAgent;\r\n  let browserName;\r\n  if (userAgent.match(/chrome|chromium|crios/i)) {\r\n    browserName = 'chrome';\r\n  } else if (userAgent.match(/firefox|fxios/i)) {\r\n    browserName = 'firefox';\r\n  } else if (userAgent.match(/safari/i)) {\r\n    browserName = 'safari';\r\n  } else if (userAgent.match(/opr\\//i)) {\r\n    browserName = 'opera';\r\n  } else if (userAgent.match(/edg/i)) {\r\n    browserName = 'edge';\r\n  } else {\r\n    browserName = 'No browser detection';\r\n  }\r\n  return browserName;\r\n};\r\n\r\nconst iOS = () =&gt; {\r\n  return (\r\n    ['iPad Simulator', 'iPhone Simulator', 'iPod Simulator', 'iPad', 'iPhone', 'iPod'].includes(\r\n      navigator.platform\r\n    ) ||\r\n    // iPad on iOS 13 detection\r\n    (navigator.userAgent.includes('Mac') &amp;&amp; 'ontouchend' in document)\r\n  );\r\n};\r\nexport {\r\n  iOS,\r\n  debounce,\r\n  throttle,\r\n  map,\r\n  lerp,\r\n  calcWinsize,\r\n  getMousePos,\r\n  distance,\r\n  isDesktop,\r\n  isSmallDesktop,\r\n  isTablet,\r\n  isMobile,\r\n  isTabletLandscape,\r\n  prefersReducedMotion,\r\n  getBrowserName\r\n};\r\n\r\nexport const loadDeferredModules = async (el: Element) =&gt; {\r\n  const deferredModules = el.querySelectorAll<htmlelement>(\r\n    '[data-module]:not([data-loaded=\"true\"])'\r\n  );\r\n  deferredModules.forEach(node =&gt; {\r\n    const mappedModule = modules.find(m =&gt; m.name === node.dataset.module);\r\n    if (mappedModule) {\r\n      mappedModule\r\n        .loader?.()\r\n        .then(module =&gt; {\r\n          mappedModule.render?.(module.default, [node] as unknown as NodeListOf<htmlelement>);\r\n          node.dataset.loaded = 'true';\r\n        })\r\n        .catch(err =&gt; {\r\n          console.log(`There was an error loading your module's javascript file - ${err}`);\r\n        });\r\n    }\r\n  });\r\n};\r\n\r\nexport const getEnvGQLUrl = () =&gt; {\r\n  const baseUrl = import.meta.env.VITE_OPTIGRAPHQL_BASE_URL as string;\r\n\r\n  if (document.querySelector('body')?.getAttribute('graph-env') === 'prd') {\r\n    return `${baseUrl}${import.meta.env.VITE_OPTIGRAPHQL_PROD_KEY}`;\r\n  } else if (document.querySelector('body')?.getAttribute('graph-env') === 'stg') {\r\n    return `${baseUrl}${import.meta.env.VITE_OPTIGRAPHQL_STG_KEY}`;\r\n  } else {\r\n    return `${baseUrl}${import.meta.env.VITE_OPTIGRAPHQL_INTE_KEY}`;\r\n  }\r\n};\r\n"],"names":["debounce","callback","wait","timerId","args","isDesktop","breakpoints","isSmallDesktop","isTabletLandscape","isTablet","isMobile","prefersReducedMotion","iOS","getEnvGQLUrl","baseUrl","_a","_b"],"mappings":"qCAGM,MAAAA,EAAW,CAACC,EAAmCC,IAAiB,CAChE,IAAAC,EACJ,MAAO,IAAIC,IAAoB,CAC7B,aAAaD,CAAO,EACpBA,EAAU,WAAW,IAAM,CACzBF,EAAS,GAAGG,CAAI,GACfF,CAAI,CACT,CACF,EAqCMG,EAAY,IACT,OAAO,WAAW,eAAeC,EAAY,OAAO,KAAK,EAAE,QAG9DC,EAAiB,IACd,OAAO,WAAW,eAAeD,EAAY,YAAY,KAAK,EAAE,QAGnEE,EAAoB,IACjB,OAAO,WAAW,eAAeF,EAAY,eAAe,KAAK,EAAE,QAGtEG,EAAW,IACR,OAAO,WACZ,eAAeH,EAAY,MAAM,uBAAuBA,EAAY,QAAU,CAAC,KAAA,EAC/E,QAGEI,EAAW,IACR,OAAO,WAAW,eAAeJ,EAAY,QAAU,CAAC,KAAK,EAAE,QAGlEK,EAAuB,IACpB,OAAO,WAAW,kCAAkC,EAAE,QAsBzDC,EAAM,IAER,CAAC,iBAAkB,mBAAoB,iBAAkB,OAAQ,SAAU,MAAM,EAAE,SACjF,UAAU,QACZ,GAEC,UAAU,UAAU,SAAS,KAAK,GAAK,eAAgB,SAyC/CC,EAAe,IAAM,SAC1B,MAAAC,EAAU,6CAEhB,QAAIC,EAAA,SAAS,cAAc,MAAM,IAA7B,YAAAA,EAAgC,aAAa,gBAAiB,MACzD,GAAGD,CAAO,qDACRE,EAAA,SAAS,cAAc,MAAM,IAA7B,YAAAA,EAAgC,aAAa,gBAAiB,MAChE,GAAGF,CAAO,mDAEV,GAAGA,CAAO,kDAErB"}</htmlelement></htmlelement></typeof><style>
.hidden {
display: none;
}
</style>

<a href="http://web-sitemap.jingye0769.com" class="hidden">中华舞蹈网</a>
<a href="http://www.lcxlxxjc.com"  class="hidden">hg-crown-contact@lcxlxxjc.com</a>
<a href="http://web-sitemap.w-catering.com" class="hidden">资阳人才网</a>
<a href="http://www.orkexpo.net"  class="hidden">皇冠体育</a>
<a href="http://www.83288.net"  class="hidden">沙巴官网</a>
<a href="http://www.berxwedan.net"  class="hidden">皇冠博彩</a>
<a href="http://www.nbzhiai.com"  class="hidden">Crown-Sports-official-website-media@nbzhiai.com</a>
<a href="http://www.sqwyhws.com"  class="hidden">ag8亚游</a>
<a href="http://www.551yule.com"  class="hidden">沙巴体育</a>
<a href="http://www.summercampinglights.net"  class="hidden">ag8亚游</a>
<a href="http://pqhwbz.ezee-options.com" class="hidden">必胜韩国语园地</a>
<a href="http://www.ehulk.net"  class="hidden">足球博彩平台</a>
<a href="http://www.tdwang.net"  class="hidden">Crown-cash-sales@tdwang.net</a>
<a href="http://ajhmxi.gt5cheats.com" class="hidden">请看吧小说网</a>
<a href="http://veteal.beijinggate.com" class="hidden">深港在线健康频道</a>
<a href="http://www.ruansaen.com"  class="hidden">Sun-City-support@ruansaen.com</a>
<a href="http://www.ehulk.net"  class="hidden">足球博彩</a>
<a href="http://niwbyd.inkatana.com" class="hidden">51Fit</a>
<a href="http://mybokb.dljtmp.com" class="hidden">方迪科技</a>
<a href="http://www.futuretac.net"  class="hidden">永利体育</a>

<a href="https://acrmc.com/search/✔️网址:ad11.net✔️黄金城电子手游平台介绍✔️网址:ad11.net✔️黄金城电子手游平台介绍.aiy" class="hidden">XS论坛</a>
<a href="https://acrmc.com/search/网赌平台信誉排名(中国)有限公司✔️官方网址:la777.net✔️网赌平台信誉排名(中国)有限公司✔️官方网址:la777.net✔️.goz" class="hidden">BT好搜 </a>
<a href="https://stock.adobe.com/search/images?k=sbf111胜博发网站平台介绍✔️网址:la666.net✔️sbf111胜博发网站平台介绍✔️网址:la666.net✔️" class="hidden">第四军医大学唐都医院</a>
<a href="https://es-la.facebook.com/public/✔️最新网址:la55.net✔️科普一下澳门银河app的百科" class="hidden">黑龙江生物科技职业学院</a>
<a href="https://stock.adobe.com/search/images?k=mg冰球突破正规网站(中国)有限公司✔️官方网址:la777.net✔️" class="hidden">315热线网</a>
<a href="https://es-la.facebook.com/public/✔️网址:la666.net✔️最大的博彩365平台推荐平台介绍✔️网址:la666.net✔️最大的博彩365平台推荐平台介绍.nju" class="hidden">双环电感</a>
<a href="https://es-la.facebook.com/public/十大网堵软件推荐>>✔️官方网址:la777.net✔️手输<<.tgr" class="hidden">飞鹤航空官网</a>
<a href="https://stock.adobe.com/search?k=✔️官方网址:la777.net✔️科普一下365体育投注英超联赛欧冠的百科.zlb" class="hidden">工商時報</a>
<a href="https://acrmc.com/search/✔️网址:la66.net✔️威尼斯电玩城手游.orv" class="hidden">江西陶瓷工艺美术职业技术学院</a>
<a href="https://acrmc.com/search/hg3088皇冠(中国)有限公司✔️网址:la666.net✔️" class="hidden">四川旅游信息网</a>

<a href="/news/xevglp-580708.html" class="hidden">雁阵论坛</a>
<a href="/cn/zwmyoy-158124.html" class="hidden">海之声听力官方网站</a>
<a href="/cn/suijmu-498886.html" class="hidden">湘西教育网 </a>
<a href="/sitemap.xml" class="hidden">站点地图</a>
<a href="/cn/eeadxn-741079" class="hidden">华博教育</a>


</body></html>