Created
May 8, 2024 11:11
-
-
Save fport/5c8aae3f937660ac2eb07a2556f7dbe0 to your computer and use it in GitHub Desktop.
Swipeable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use client' | |
import React, {useState, ReactNode} from "react"; | |
// https://stackoverflow.com/questions/70612769/how-do-i-recognize-swipe-events-in-react | |
export default function Swipeable(props:SwipeableProps) { | |
const [touchStartX, setTouchStartX] = useState(null) | |
const [touchEndX, setTouchEndX] = useState(null) | |
const [touchStartY, setTouchStartY] = useState(null) | |
const [touchEndY, setTouchEndY] = useState(null) | |
const minSwipeDistance = 50 | |
function onTouchStart(e) { | |
setTouchEndX(null) | |
setTouchStartX(e.targetTouches[0].clientX) | |
setTouchEndY(null) | |
setTouchStartY(e.targetTouches[0].clientY) | |
} | |
function onTouchMove(e) { | |
setTouchEndX(e.targetTouches[0].clientX) | |
setTouchEndY(e.targetTouches[0].clientY) | |
} | |
function onTouchEnd() { | |
if (touchStartX && touchEndX) swipeHorizontal() | |
if (touchStartY && touchEndY) swipeVertical() | |
} | |
function swipeHorizontal() { | |
const xDistance = touchStartX - touchEndX | |
const yDistance = touchStartY - touchEndY | |
if (Math.abs(yDistance) >= Math.abs(xDistance)) { | |
return; | |
} | |
const isLeftSwipe = xDistance > minSwipeDistance | |
const isRightSwipe = xDistance < -minSwipeDistance | |
if (isLeftSwipe && props.onSwipeLeft) { | |
props.onSwipeLeft(); | |
} | |
if (isRightSwipe && props.onSwipeRight) { | |
props.onSwipeRight(); | |
} | |
} | |
function swipeVertical() { | |
const xDistance = touchStartX - touchEndX | |
const yDistance = touchStartY - touchEndY | |
if (Math.abs(xDistance) >= Math.abs(yDistance)) { | |
return; | |
} | |
const isUpSwipe = yDistance > minSwipeDistance | |
const isDownSipe = yDistance < -minSwipeDistance | |
if (isDownSipe && props.onSwipeDown) { | |
props.onSwipeDown(); | |
} | |
if (isUpSwipe && props.onSwipeUp) { | |
props.onSwipeUp(); | |
} | |
} | |
return ( | |
<div onTouchStart={onTouchStart} onTouchMove={onTouchMove} onTouchEnd={onTouchEnd}> | |
{props.children} | |
</div> | |
) | |
} | |
export interface SwipeableProps { | |
children:ReactNode, | |
onSwipeLeft?: () => void, | |
onSwipeRight?: () => void, | |
onSwipeUp?: () => void, | |
onSwipeDown?: () => void | |
} | |
<Swipeable onSwipeLeft={left} onSwipeRight={right} onSwipeUp={up} onSwipeDown={down}> | |
Children Go Here | |
</Swipeable> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://codesandbox.io/p/sandbox/react-swipeable-list-example-9hhdt?file=%2Fsrc%2FApp.js%3A32%2C19-32%2C42