{"version":3,"file":"clickOutside.Bz5vu4ZH.js","sources":["../../../../../../src/lib/utils/modals/store.ts","../../../../../../src/lib/events/clickOutside.ts"],"sourcesContent":["import type { SvelteComponent } from 'svelte';\n\nimport { get, writable } from 'svelte/store';\n\nexport const exitBeforeEnter = writable(false);\n\n/**\n * The transition state of the modals\n */\nexport const transitioning = writable(null);\n\n/**\n * A Svelte store containing the current modal stack\n */\nexport const modals = writable([]);\n\ninterface IStoredModal {\n component: SvelteModalComponent | LazySvelteModalComponent,\n props?: Record,\n callbacks?: {\n onBeforeClose?: () => boolean | void\n }\n}\n\n/**\n * A Svelte store describing how the current modal came to be active (\"push\" or \"pop\").\n * This can be useful for transitions if they should animate differently based on the action.\n */\nexport const action = writable(null);\n\n/**\n * Closes all modals in the stack.\n *\n * If closing was prevented by the current modal, it returns false\n */\nexport function closeAllModals(): boolean {\n const modalsLength = get(modals).length;\n const currentModal = get(modals)[modalsLength - 1];\n\n if (currentModal?.callbacks?.onBeforeClose) {\n if (currentModal?.callbacks?.onBeforeClose() === false) {\n return false;\n }\n }\n\n modals.set([]);\n\n document.body.classList.remove('overflow-hidden');\n\n return true;\n}\n\n/**\n * Closes the last `amount` of modals in the stack\n *\n * If closing was prevented by the current modal, it returns false\n */\nexport function closeModals(amount = 1): boolean {\n const modalsLength = get(modals).length;\n const currentModal = get(modals)[modalsLength - 1];\n\n if (get(transitioning)) {\n return false;\n }\n\n if (currentModal?.callbacks?.onBeforeClose) {\n if (currentModal?.callbacks?.onBeforeClose() === false) {\n return false;\n }\n }\n\n if (get(exitBeforeEnter) && modalsLength > 0) {\n transitioning.set(true);\n }\n exitBeforeEnter.set(false);\n\n // Remove overflow-hidden class if no modals are left\n if (modalsLength - amount === 0) {\n document.body.classList.remove('overflow-hidden');\n }\n\n action.set('pop');\n\n pop(amount);\n\n return true;\n}\n\n/**\n * Closes the current modal component\n *\n * If closing was prevented by the current modal, it returns false\n */\nexport function closeModal(): boolean {\n return closeModals(1);\n}\n\n/**\n * Opens a new modal\n */\nexport function openModal = any>(\n component: SvelteModalComponent | LazySvelteModalComponent,\n props?: Omit,\n options?: {\n /**\n * This modal will replace the last modal in the stack\n */\n replace?: boolean\n }\n): void {\n if (get(transitioning)) {\n return;\n }\n\n action.set('push');\n\n if (!document.body.classList.contains('overflow-hidden')) {\n document.body.classList.add('overflow-hidden');\n }\n \n\n if (get(exitBeforeEnter) && get(modals).length) {\n transitioning.set(true);\n }\n exitBeforeEnter.set(false);\n\n if (options?.replace) {\n modals.update(\n (prev) => [...prev.slice(0, prev.length - 1), { component, props }] as IStoredModal[]\n );\n } else {\n modals.update((prev) => [...prev, { component, props }] as IStoredModal[]);\n }\n}\n\n/**\n * Return false to prevent the current modal from being closed\n */\nexport function onBeforeClose(callback: () => boolean | void): void {\n modals.update((prev) => {\n const modal = prev[prev.length - 1];\n modal.callbacks = {\n ...modal.callbacks,\n onBeforeClose: callback\n }\n\n return prev;\n })\n}\n\nfunction pop(amount = 1) {\n modals.update((prev) => prev.slice(0, Math.max(0, prev.length - amount)))\n}\n\nexport type SvelteModalComponent<\n Props extends Record = any,\n Events extends Record = any,\n Slots extends Record = any\n> = new (...args: any) => SvelteComponent\nexport type LazySvelteModalComponent<\n Props extends Record = any,\n Events extends Record = any,\n Slots extends Record = any\n> = () => Promise<{ default: SvelteModalComponent }>","/** Dispatch event on click outside of node */\nexport function clickOutside(node) {\n \n const handleClick = (event) => {\n if (node && !node.contains(event.target) && !event.defaultPrevented) {\n node.dispatchEvent(\n new CustomEvent('click_outside', node)\n )\n }\n }\n\n\tdocument.addEventListener('click', handleClick, true);\n \n return {\n destroy() {\n document.removeEventListener('click', handleClick, true);\n }\n\t}\n}"],"names":["exitBeforeEnter","writable","transitioning","modals","action","closeAllModals","modalsLength","get","currentModal","_a","_b","closeModals","amount","pop","closeModal","openModal","component","props","options","prev","clickOutside","node","handleClick","event"],"mappings":"oFAIa,MAAAA,EAAkBC,EAAS,EAAK,EAKhCC,EAAgBD,EAAyB,IAAI,EAK7CE,EAASF,EAAyB,CAAE,CAAA,EAcpCG,EAASH,EAAgC,IAAI,EAOnD,SAASI,GAA0B,SAClC,MAAAC,EAAeC,EAAIJ,CAAM,EAAE,OAC3BK,EAAeD,EAAIJ,CAAM,EAAEG,EAAe,CAAC,EAE7C,OAAAG,EAAAD,GAAA,YAAAA,EAAc,YAAd,MAAAC,EAAyB,iBACvBC,EAAAF,GAAA,YAAAA,EAAc,YAAd,YAAAE,EAAyB,mBAAoB,GACxC,IAIJP,EAAA,IAAI,EAAE,EAEJ,SAAA,KAAK,UAAU,OAAO,iBAAiB,EAEzC,GACT,CAOgB,SAAAQ,EAAYC,EAAS,EAAY,SACzC,MAAAN,EAAeC,EAAIJ,CAAM,EAAE,OAC3BK,EAAeD,EAAIJ,CAAM,EAAEG,EAAe,CAAC,EAM7C,OAJAC,EAAIL,CAAa,IAIjBO,EAAAD,GAAA,YAAAA,EAAc,YAAd,MAAAC,EAAyB,iBACvBC,EAAAF,GAAA,YAAAA,EAAc,YAAd,YAAAE,EAAyB,mBAAoB,GACxC,IAIPH,EAAIP,CAAe,GAAKM,EAAe,GACzCJ,EAAc,IAAI,EAAI,EAExBF,EAAgB,IAAI,EAAK,EAGrBM,EAAeM,IAAW,GACnB,SAAA,KAAK,UAAU,OAAO,iBAAiB,EAGlDR,EAAO,IAAI,KAAK,EAEhBS,EAAID,CAAM,EAEH,GACT,CAOO,SAASE,GAAsB,CACpC,OAAOH,EAAY,CAAC,CACtB,CAKgB,SAAAI,EACdC,EACAC,EACAC,EAMM,CACFX,EAAIL,CAAa,IAIrBE,EAAO,IAAI,MAAM,EAEZ,SAAS,KAAK,UAAU,SAAS,iBAAiB,GAC5C,SAAA,KAAK,UAAU,IAAI,iBAAiB,EAI3CG,EAAIP,CAAe,GAAKO,EAAIJ,CAAM,EAAE,QACtCD,EAAc,IAAI,EAAI,EAExBF,EAAgB,IAAI,EAAK,EAOhBG,EAAA,OAAQgB,GAAS,CAAC,GAAGA,EAAM,CAAE,UAAAH,EAAW,MAAAC,CAAM,CAAC,CAAmB,EAE7E,CAiBA,SAASJ,EAAID,EAAS,EAAG,CACvBT,EAAO,OAAQgB,GAASA,EAAK,MAAM,EAAG,KAAK,IAAI,EAAGA,EAAK,OAASP,CAAM,CAAC,CAAC,CAC1E,CCvJO,SAASQ,EAAaC,EAAM,CAE3B,MAAAC,EAAeC,GAAU,CACzBF,GAAQ,CAACA,EAAK,SAASE,EAAM,MAAM,GAAK,CAACA,EAAM,kBAC5CF,EAAA,cACH,IAAI,YAAY,gBAAiBA,CAAI,CACvC,CAEJ,EAEQ,gBAAA,iBAAiB,QAASC,EAAa,EAAI,EAE5C,CACL,SAAU,CACC,SAAA,oBAAoB,QAASA,EAAa,EAAI,CAAA,CAE5D,CACD"}