{"version":3,"file":"swipe-back-xV20G3Lw.js","sources":["../../../../node_modules/.pnpm/@ionic+core@8.4.1/node_modules/@ionic/core/components/swipe-back.js"],"sourcesContent":["/*!\n * (C) Ionic http://ionicframework.com - MIT License\n */\nimport { k as clamp } from './helpers.js';\nimport { i as isRTL } from './dir.js';\nimport { createGesture } from './index3.js';\n\nconst createSwipeBackGesture = (el, canStartHandler, onStartHandler, onMoveHandler, onEndHandler) => {\n const win = el.ownerDocument.defaultView;\n let rtl = isRTL(el);\n /**\n * Determine if a gesture is near the edge\n * of the screen. If true, then the swipe\n * to go back gesture should proceed.\n */\n const isAtEdge = (detail) => {\n const threshold = 50;\n const { startX } = detail;\n if (rtl) {\n return startX >= win.innerWidth - threshold;\n }\n return startX <= threshold;\n };\n const getDeltaX = (detail) => {\n return rtl ? -detail.deltaX : detail.deltaX;\n };\n const getVelocityX = (detail) => {\n return rtl ? -detail.velocityX : detail.velocityX;\n };\n const canStart = (detail) => {\n /**\n * The user's locale can change mid-session,\n * so we need to check text direction at\n * the beginning of every gesture.\n */\n rtl = isRTL(el);\n return isAtEdge(detail) && canStartHandler();\n };\n const onMove = (detail) => {\n // set the transition animation's progress\n const delta = getDeltaX(detail);\n const stepValue = delta / win.innerWidth;\n onMoveHandler(stepValue);\n };\n const onEnd = (detail) => {\n // the swipe back gesture has ended\n const delta = getDeltaX(detail);\n const width = win.innerWidth;\n const stepValue = delta / width;\n const velocity = getVelocityX(detail);\n const z = width / 2.0;\n const shouldComplete = velocity >= 0 && (velocity > 0.2 || delta > z);\n const missing = shouldComplete ? 1 - stepValue : stepValue;\n const missingDistance = missing * width;\n let realDur = 0;\n if (missingDistance > 5) {\n const dur = missingDistance / Math.abs(velocity);\n realDur = Math.min(dur, 540);\n }\n onEndHandler(shouldComplete, stepValue <= 0 ? 0.01 : clamp(0, stepValue, 0.9999), realDur);\n };\n return createGesture({\n el,\n gestureName: 'goback-swipe',\n /**\n * Swipe to go back should have priority over other horizontal swipe\n * gestures. These gestures have a priority of 100 which is why 101 was chosen here.\n */\n gesturePriority: 101,\n threshold: 10,\n canStart,\n onStart: onStartHandler,\n onMove,\n onEnd,\n });\n};\n\nexport { createSwipeBackGesture };\n"],"names":["createSwipeBackGesture","el","canStartHandler","onStartHandler","onMoveHandler","onEndHandler","win","rtl","isRTL","isAtEdge","detail","startX","getDeltaX","getVelocityX","createGesture","stepValue","delta","width","velocity","z","shouldComplete","missingDistance","realDur","dur","clamp"],"mappings":"sDAAA;AAAA;AAAA,GAOK,MAACA,EAAyB,CAACC,EAAIC,EAAiBC,EAAgBC,EAAeC,IAAiB,CACjG,MAAMC,EAAML,EAAG,cAAc,YAC7B,IAAIM,EAAMC,EAAMP,CAAE,EAMlB,MAAMQ,EAAYC,GAAW,CAEzB,KAAM,CAAE,OAAAC,CAAM,EAAKD,EACnB,OAAIH,EACOI,GAAUL,EAAI,WAAa,GAE/BK,GAAU,EACpB,EACKC,EAAaF,GACRH,EAAM,CAACG,EAAO,OAASA,EAAO,OAEnCG,EAAgBH,GACXH,EAAM,CAACG,EAAO,UAAYA,EAAO,UAkC5C,OAAOI,EAAc,CACjB,GAAAb,EACA,YAAa,eAKb,gBAAiB,IACjB,UAAW,GACX,SAzCcS,IAMdH,EAAMC,EAAMP,CAAE,EACPQ,EAASC,CAAM,GAAKR,EAAiB,GAmC5C,QAASC,EACT,OAlCYO,GAAW,CAGvB,MAAMK,EADQH,EAAUF,CAAM,EACJJ,EAAI,WAC9BF,EAAcW,CAAS,CAC1B,EA8BG,MA7BWL,GAAW,CAEtB,MAAMM,EAAQJ,EAAUF,CAAM,EACxBO,EAAQX,EAAI,WACZS,EAAYC,EAAQC,EACpBC,EAAWL,EAAaH,CAAM,EAC9BS,EAAIF,EAAQ,EACZG,EAAiBF,GAAY,IAAMA,EAAW,IAAOF,EAAQG,GAE7DE,GADUD,EAAiB,EAAIL,EAAYA,GACfE,EAClC,IAAIK,EAAU,EACd,GAAID,EAAkB,EAAG,CACrB,MAAME,EAAMF,EAAkB,KAAK,IAAIH,CAAQ,EAC/CI,EAAU,KAAK,IAAIC,EAAK,GAAG,CACvC,CACQlB,EAAae,EAAgBL,GAAa,EAAI,IAAOS,EAAM,EAAGT,EAAW,KAAM,EAAGO,CAAO,CAC5F,CAcL,CAAK,CACL","x_google_ignoreList":[0]}