{"version":3,"file":"useTimeout-ef1683b0.js","sources":["../../../../../../app/node_modules/@restart/hooks/esm/useTimeout.js"],"sourcesContent":["import { useMemo, useRef } from 'react';\nimport useMounted from './useMounted';\nimport useWillUnmount from './useWillUnmount';\n\n/*\n * Browsers including Internet Explorer, Chrome, Safari, and Firefox store the\n * delay as a 32-bit signed integer internally. This causes an integer overflow\n * when using delays larger than 2,147,483,647 ms (about 24.8 days),\n * resulting in the timeout being executed immediately.\n *\n * via: https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/setTimeout\n */\nconst MAX_DELAY_MS = 2 ** 31 - 1;\nfunction setChainedTimeout(handleRef, fn, timeoutAtMs) {\n const delayMs = timeoutAtMs - Date.now();\n handleRef.current = delayMs <= MAX_DELAY_MS ? setTimeout(fn, delayMs) : setTimeout(() => setChainedTimeout(handleRef, fn, timeoutAtMs), MAX_DELAY_MS);\n}\n\n/**\n * Returns a controller object for setting a timeout that is properly cleaned up\n * once the component unmounts. New timeouts cancel and replace existing ones.\n *\n *\n *\n * ```tsx\n * const { set, clear } = useTimeout();\n * const [hello, showHello] = useState(false);\n * //Display hello after 5 seconds\n * set(() => showHello(true), 5000);\n * return (\n *
\n * {hello ?

Hello

: null}\n *
\n * );\n * ```\n */\nexport default function useTimeout() {\n const isMounted = useMounted();\n\n // types are confused between node and web here IDK\n const handleRef = useRef();\n useWillUnmount(() => clearTimeout(handleRef.current));\n return useMemo(() => {\n const clear = () => clearTimeout(handleRef.current);\n function set(fn, delayMs = 0) {\n if (!isMounted()) return;\n clear();\n if (delayMs <= MAX_DELAY_MS) {\n // For simplicity, if the timeout is short, just set a normal timeout.\n handleRef.current = setTimeout(fn, delayMs);\n } else {\n setChainedTimeout(handleRef, fn, Date.now() + delayMs);\n }\n }\n return {\n set,\n clear\n };\n }, []);\n}"],"names":["MAX_DELAY_MS","setChainedTimeout","handleRef","fn","timeoutAtMs","delayMs","useTimeout","isMounted","useMounted","useRef","useWillUnmount","useMemo","clear","set"],"mappings":"sIAYA,MAAMA,EAAe,GAAK,GAAK,EAC/B,SAASC,EAAkBC,EAAWC,EAAIC,EAAa,CACrD,MAAMC,EAAUD,EAAc,KAAK,IAAG,EACtCF,EAAU,QAAUG,GAAWL,EAAe,WAAWG,EAAIE,CAAO,EAAI,WAAW,IAAMJ,EAAkBC,EAAWC,EAAIC,CAAW,EAAGJ,CAAY,CACtJ,CAoBe,SAASM,GAAa,CACnC,MAAMC,EAAYC,IAGZN,EAAYO,EAAAA,SAClB,OAAAC,EAAe,IAAM,aAAaR,EAAU,OAAO,CAAC,EAC7CS,EAAO,QAAC,IAAM,CACnB,MAAMC,EAAQ,IAAM,aAAaV,EAAU,OAAO,EAClD,SAASW,EAAIV,EAAIE,EAAU,EAAG,CACvBE,EAAS,IACdK,IACIP,GAAWL,EAEbE,EAAU,QAAU,WAAWC,EAAIE,CAAO,EAE1CJ,EAAkBC,EAAWC,EAAI,KAAK,IAAG,EAAKE,CAAO,EAExD,CACD,MAAO,CACL,IAAAQ,EACA,MAAAD,CACN,CACG,EAAE,CAAE,CAAA,CACP","x_google_ignoreList":[0]}