What is react-easy-swipe?
The react-easy-swipe package is a lightweight React component that provides easy-to-use swipe detection for touch devices. It allows developers to handle swipe events such as swiping left, right, up, and down, making it useful for implementing features like carousels, sliders, and other touch-based interactions.
What are react-easy-swipe's main functionalities?
Swipe Detection
This feature allows you to detect swipe movements in different directions. The code sample demonstrates how to use the Swipe component to handle swipe left, swipe right, and swipe move events.
```jsx
import React from 'react';
import Swipe from 'react-easy-swipe';
class SwipeComponent extends React.Component {
onSwipeMove(position, event) {
console.log('Moved to:', position);
}
onSwipeLeft(event) {
console.log('Swiped left!');
}
onSwipeRight(event) {
console.log('Swiped right!');
}
render() {
return (
<Swipe
onSwipeMove={this.onSwipeMove}
onSwipeLeft={this.onSwipeLeft}
onSwipeRight={this.onSwipeRight}
>
<div style={{ width: '100%', height: '100px', background: 'lightgray' }}>
Swipe me!
</div>
</Swipe>
);
}
}
export default SwipeComponent;
```
Other packages similar to react-easy-swipe
react-swipeable
react-swipeable is a React component that provides similar swipe detection capabilities. It offers more customization options and supports additional swipe events like swipe up and swipe down. Compared to react-easy-swipe, react-swipeable has a more extensive API and better documentation.
react-swipe
react-swipe is another alternative for handling swipe events in React. It is specifically designed for creating touch-enabled carousels and sliders. While it is more focused on carousel functionality, it can still be used for general swipe detection. It is slightly heavier than react-easy-swipe but offers more built-in features for carousel implementations.
REACT EASY SWIPE
Add swipe interactions to your react component.
Demo
http://leandrowd.github.io/react-easy-swipe/
- Open your console;
- Swipe over the content and check your console;
- This is a touch component so make sure your browser is emulating touch.
Tip: To prevent scroll during swipe, return true from the handler passed to onSwipeMove
Instalation
npm install react-easy-swipe --save
Usage
import React, {Component} from 'react';
import ReactDOM from 'react-dom';
import Swipe from './react-swipe';
class MyComponent extends Component {
onSwipeStart() {
console.log('Start swiping...');
}
onSwipeMove(position) {
console.log(`Moved ${position.x} pixels horizontally`);
console.log(`Moved ${position.y} pixels vertically`);
}
onSwipeEnd() {
console.log('End swiping...');
}
render() {
const boxStyle = {
width: '100%',
height: '300px',
border: '1px solid black',
background: '#ccc',
padding: '20px',
fontSize: '3em'
};
return (
<Swipe
onSwipeStart={this.onSwipeStart}
onSwipeMove={this.onSwipeMove}
onSwipeEnd={this.onSwipeEnd}>
<div style={boxStyle}>Open the console and swipe me</div>
</Swipe>
);
}
}
ReactDOM.render(<MyComponent/>, document.getElementById('root'));
Properties
{
tagName: PropTypes.string,
className: PropTypes.string,
style: PropTypes.object,
children: PropTypes.node,
onSwipeUp: PropTypes.func,
onSwipeDown: PropTypes.func,
onSwipeLeft: PropTypes.func,
onSwipeRight: PropTypes.func,
onSwipeStart: PropTypes.func,
onSwipeMove: PropTypes.func,
onSwipeEnd: PropTypes.func
}
Contributing
Please, feel free to contribute. You may open a bug, request a feature, submit a pull request or whatever you want!
TODOs