Security News
Supply Chain Attack Detected in @solana/web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
react-swipeable
Advanced tools
The react-swipeable package is a React component that provides easy-to-use swipe event handlers for touch devices. It allows developers to add swipe functionality to their React components, making it ideal for creating touch-friendly user interfaces.
Basic Swipe Detection
This code demonstrates how to use the react-swipeable package to detect basic swipe events. The `useSwipeable` hook is used to create swipe handlers, which are then applied to a div element. When a swipe is detected, a message is logged to the console.
import React from 'react';
import { useSwipeable } from 'react-swipeable';
const SwipeComponent = () => {
const handlers = useSwipeable({
onSwiped: (eventData) => console.log('User Swiped!', eventData)
});
return (
<div {...handlers} style={{ width: '100%', height: '100px', background: 'lightgray' }}>
Swipe here
</div>
);
};
export default SwipeComponent;
Swipe Direction Detection
This code demonstrates how to detect the direction of a swipe using the react-swipeable package. The `useSwipeable` hook is configured with handlers for each swipe direction (left, right, up, down), and logs a message to the console when a swipe in that direction is detected.
import React from 'react';
import { useSwipeable } from 'react-swipeable';
const SwipeDirectionComponent = () => {
const handlers = useSwipeable({
onSwipedLeft: () => console.log('Swiped Left!'),
onSwipedRight: () => console.log('Swiped Right!'),
onSwipedUp: () => console.log('Swiped Up!'),
onSwipedDown: () => console.log('Swiped Down!')
});
return (
<div {...handlers} style={{ width: '100%', height: '100px', background: 'lightblue' }}>
Swipe in any direction
</div>
);
};
export default SwipeDirectionComponent;
Swipe Threshold Configuration
This code demonstrates how to configure a swipe threshold using the react-swipeable package. The `useSwipeable` hook is configured with a `delta` value, which sets the minimum distance (in pixels) that a swipe must cover to be detected.
import React from 'react';
import { useSwipeable } from 'react-swipeable';
const SwipeThresholdComponent = () => {
const handlers = useSwipeable({
onSwiped: (eventData) => console.log('User Swiped!', eventData),
delta: 50 // Minimum distance (in pixels) for a swipe to be detected
});
return (
<div {...handlers} style={{ width: '100%', height: '100px', background: 'lightgreen' }}>
Swipe with a minimum threshold
</div>
);
};
export default SwipeThresholdComponent;
The react-swipe package provides a React component for touch slide navigation. It is similar to react-swipeable in that it allows for swipe detection, but it is more focused on creating swipeable carousels and sliders. It offers a higher-level abstraction compared to react-swipeable.
The react-use-gesture package is a set of hooks for handling gestures in React. It supports a wide range of gestures, including swipes, pinches, and scrolls. Compared to react-swipeable, react-use-gesture offers more comprehensive gesture support and can be used for more complex interactions.
The react-swipeable-views package is a React component for creating swipeable views, such as tabs or carousels. It is similar to react-swipeable in that it provides swipe detection, but it is specifically designed for creating swipeable view containers. It offers built-in support for animations and transitions.
React swipe event handler hook
Use the hook and set your swipe(d) handlers.
const handlers = useSwipeable({
onSwiped: (eventData) => console.log("User Swiped!", evenData),
...config,
});
return <div {...handlers}> You can swipe here </div>;
Spread handlers
onto the element you wish to track swipes on.
{
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
onTap, // Fired after a tap
}
All Event Handlers are called with the below event data.
{
event, // source event
initial, // initial swipe [x,y]
first, // true for first 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 - "absolute velocity" (speed)
vxvy, // [ deltaX/time, deltaY/time] - velocity per axis
dir, // direction of swipe (Left|Right|Up|Down)
}
{
delta: 10, // min 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
}
None of the props/config options are required.
handlers
are currently ref
and onMouseDown
handlers
as the props contained in it could change as react improves event listening capabilitiespreventDefaultTouchmoveEvent
prevents the browser's touchmove event.
Use this to stop scrolling in the browser while a user swipes.
e.preventDefault()
is only called when:
preventDefaultTouchmoveEvent: true
trackTouch: true
onSwiping
or onSwiped
handler/propExample:
<Swipable onSwipedRight={this.userSwipedRight} preventDefaultTouchmoveEvent={true} >
then e.preventDefault()
will be called, but if the user was swiping left then e.preventDefault()
would not be called.Please experiment with the example to test preventDefaultTouchmoveEvent
.
With v6 we've added the passive event listener option by default, setting to it to false
only when preventDefaultTouchmoveEvent
is `true.
When preventDefaultTouchmoveEvent
is:
true
=> { passive: false }
false
=> { passive: true }
With the release of v6 react-swipeable
only supports browsers that support options object for addEventListener
, Browser compatibility. Which mainly means react-swipeable
does not support ie11 by default, you need to polyfill options. For example using event-listener-with-options.
v6 now only exports a hook, useSwipeable
.
If would like something similar to the old <Swipeable>
component you can recreate it from the hook. There are examples in the migration doc.
document
?Example by @merrywhether
const { ref } = useSwipeable({
...
}) as { ref: RefCallback<Document> };
useEffect(() => {
ref(document);
});
Initial set up, with node 10+ & yarn v1, run yarn
.
Make changes/updates to the src/index.ts
file.
Please add/update tests if PR adds/changes functionality.
Build, run, and test examples locally:
yarn 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.ts
and webpack will rebuild, then reload the page so you can test your changes!
MIT
FAQs
React Swipe event handler hook
The npm package react-swipeable receives a total of 388,423 weekly downloads. As such, react-swipeable popularity was classified as popular.
We found that react-swipeable demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 16 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.