Package Exports
- react-swipeable
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-swipeable) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
React Swipeable
React swipe and touch event handler component & hook
Installation
$ npm install --save react-swipeableApi
import { useSwipeable, Swipeable } from 'react-swipeable'Use React-hooks or a Component and set your swipe(d) handlers.
// hook with event handler
const hanlders = useSwipeable({ onSwiped: (eventData) => eventHandler, ...config })
return (<div {...handlers}> You can swipe here </div>)
// Component
<Swipeable onSwiped={(eventData) => eventHandler} {...config} >
You can swipe here!
</Swipeable>The Component <Swipeable> uses an element (<div> by default) under the hood and attaches event hanlders to it that are used to fire the swipe(d) handlers.
Props / Config Options
Event Handler Props
{
onSwiped, // Fired after any swipe
onSwipedLeft, // Fired after LEFT swipe
onSwipedRight, // Fired after RIGHT swipe
onSwipedUp, // Fired after UP swipe
onSwipedDown, // Fired after DOWN swipe
onSwiping, // Fired during any swipe
}Event data
All Event Handlers are called with the below event data.
{
event, // source event
deltaX, // x offset (current.x - initial.x)
deltaY, // y offset (current.y - initial.y)
absX, // absolute deltaX
absY, // absolute deltaY
velocity, // √(absX^2 + absY^2) / time
dir, // direction of swipe (Left|Right|Up|Down)
}Configuration Props
{
delta: 10, // minimum distance(px) before a swipe starts
preventDefaultTouchmoveEvent: false, // preventDefault on touchmove, *See Details*
trackTouch: true, // track touch input
trackMouse: false, // track mouse input
rotationAngle: 0, // set a rotation angle
touchHandlerOption: { // overwrite touch handler 3rd argument
passive: true|false // defaults opposite of preventDefaultTouchmoveEvent *See Details*
},
}Component Specific Props
{
nodeName: 'div', // dom node the component attaches handlers to
innerRef // access the components dom node
}None of the props are required.
preventDefaultTouchmoveEvent Details
preventDefaultTouchmoveEvent prevents the browser's touchmove event. Can use this to stop the browser from scrolling while a user swipe is being tracked.
e.preventDefault()is only called when:preventDefaultTouchmoveEvent: truetrackTouch: true- the currently tracked swipe has an associated
onSwipingoronSwipedhandler/prop
- if
preventDefaultTouchmoveEvent: truethentouchHandlerOptiondefaults to{ passive: false } - if
preventDefaultTouchmoveEvent: falsethentouchHandlerOptiondefaults to{ passive: true }
Example:
- If a user is swiping right with
<Swipable onSwipedRight={this.userSwipedRight} preventDefaultTouchmoveEvent={true} >thene.preventDefault()will be called, but if the user was swiping left thene.preventDefault()would not be called.
Please experiment with the example to test preventDefaultTouchmoveEvent.
Development
Initial set up, with node 10+, run npm install.
Make changes/updates to the src/index.js file.
Please add tests if PR adds/changes functionality.
Verify updates with the examples
Build, run, and test examples locally:
npm run start:examples
After the server starts you can then view the examples page with your changes at http://localhost:3000.
You can now make updates/changes to src/index.js and webpack will rebuild, then reload the page so you can test your changes!
License
MIT