lemonoq-react-swipeable-list
Version:
Swipeable list component for React
303 lines (184 loc) • 12 kB
Markdown
<h1 align="center">react-swipeable-list</h1>
<h4 align="center">A configurable react component to render list with swipeable items.</h4>
<p align="center">
<img src="docs/main.gif"></img>
</p>
<p align="center">
<a href="#demo">Demo</a> •
<a href="#installation">Installation</a> •
<a href="#usage">Usage</a>
</p>
<hr />
[](https://github.com/marekrozmus/react-swipeable-list/actions)
[](https://codecov.io/gh/marekrozmus/react-swipeable-list)

<!-- prettier-ignore-start -->
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
[](#contributors-)
<!-- ALL-CONTRIBUTORS-BADGE:END -->
<!-- prettier-ignore-end -->
## React Swipeable List component
A react component to render list with swipeable items. Items can have one or more actions on left (leading) and right (trailing) swipe and different behavior depending on props. [See examples](#type)
This repository contains new version of [sandstreamdev/react-swipeable-list/](https://github.com/sandstreamdev/react-swipeable-list). Whole component was reimplemented to support buttons in revealed content and different swipe behaviors. More information can be found in this issue: [Clarify relationship with @sandstreamdev/react-swipeable-list](https://github.com/marekrozmus/react-swipeable-list/issues/6)
## Demo
Check [working example page](https://marekrozmus.github.io/react-swipeable-list/)
[](https://codesandbox.io/s/github/marekrozmus/react-swipeable-list/tree/main/examples)
## Installation
```bash
npm install react-swipeable-list
# or via yarn
yarn add react-swipeable-list
```
## Usage
```jsx
import {
LeadingActions,
SwipeableList,
SwipeableListItem,
SwipeAction,
TrailingActions,
} from 'react-swipeable-list';
import 'react-swipeable-list/dist/styles.css';
const leadingActions = () => (
<LeadingActions>
<SwipeAction onClick={() => console.info('swipe action triggered')}>
Action name
</SwipeAction>
</LeadingActions>
);
const trailingActions = () => (
<TrailingActions>
<SwipeAction
destructive={true}
onClick={() => console.info('swipe action triggered')}
>
Delete
</SwipeAction>
</TrailingActions>
);
<SwipeableList>
<SwipeableListItem
leadingActions={leadingActions()}
trailingActions={trailingActions()}
>
Item content
</SwipeableListItem>
</SwipeableList>;
```
## SwipeableList Props
### actionDelay
Type: `milliseconds` (optional, default: `0`)
Time in milliseconds after which swipe action and animation should be called after trigggering swipe action.
It can be set for the whole list or for every item. See `actionDelay` for `SwipeableListItem`. Value from the `SwipeableListItem` takes precedence.
### fullSwipe
Type: `boolean` (optional, default: `false`)
Changes behavior of `IOS` list type.
When `true` and swipe is done beyond `threshold` and released the action is triggered.
<img src="docs/ios_fullswipe_on.gif"></img>
When set to `false` actions are only opened and they need to be clicked to trigger action.
<img src="docs/ios_fullswipe_off.gif"></img>
### destructiveCallbackDelay
Type: `milliseconds` (optional, default: `1000`)
Time in milliseconds after which swipe action should be called for `destructive` swipe action (item deletion).
It can be set for the whole list or for every item. See `destructiveCallbackDelay` for `SwipeableListItem`. Value from the `SwipeableListItem` takes precedence.
### style
Type: `object` (optional, default: `undefined`)
Additional styles for list tag.
### type
Type: `ListType (ANDROID | IOS | MS)` (optional, default: `ANDROID`)
Changes behavior of swipeable items.
#### `ANDROID`
<img src="docs/android.gif"></img>
#### `IOS`
<img src="docs/main.gif"></img>
#### `MS`
<img src="docs/ms.gif"></img>
### Tag
Type: `string` (optional, default: `div`)
HTML tag that is used to create this component.
### scrollStartThreshold
Type: `number` (optional, default: `10`)
How far in pixels scroll needs to be done to block swiping. After scrolling is started and goes beyond the threshold, swiping is blocked.
It can be set for the whole list or for every item. See `scrollStartThreshold` for `SwipeableListItem`. Value from the `SwipeableListItem` takes precedence.
### swipeStartThreshold
Type: `number` (optional, default: `10`)
How far in pixels swipe needs to be done to start swiping on list item. After a swipe is started and goes beyond the threshold, scrolling is blocked.
It can be set for the whole list or for every item. See `swipeStartThreshold` for `SwipeableListItem`. Value from the `SwipeableListItem` takes precedence.
### threshold
Type: `number` (optional, default: `0.5`)
How far swipe needs to be done to trigger attached action. `0.5` means that item needs to be swiped to half of its width, `0.25` - one-quarter of width.
It can be set for the whole list or for every item. See `threshold` for `SwipeableListItem`. Value from the `SwipeableListItem` takes precedence.
## SwipeableListItem Props
### actionDelay
Type: `milliseconds` (optional, default: `0`)
Time in milliseconds after which swipe action and animation should be called after trigggering swipe action.
It can be set for the whole list or for every item. See `actionDelay` for `SwipeableList`. Value from the `SwipeableListItem` takes precedence.
### blockSwipe
Type: `boolean` (optional, default: `false`)
If set to `true` all defined swipe actions are blocked.
### destructiveCallbackDelay
Type: `milliseconds` (optional, default: `1000`)
Time in milliseconds after which swipe action should be called for `destructive` swipe action (item deletion).
It can be set for the whole list or for every item. See `destructiveCallbackDelay` for `SwipeableList`. Value from the `SwipeableListItem` takes precedence.
### leadingActions
Type: `LeadingActions component`
Container component that sets up correct props in `SwipeAction`. See examples for usage.
### onClick
Type: `function` (optional)
Callback function that should be call after list item is clicked.
### onSwipeStart
Type: `(dragDirection: string) => void`
Fired after swipe has started (after drag gesture passes the `swipeStartThreshold` distance in pixels). `dragDirection` can have value of `left` or `right`.
### onSwipeEnd
Type: `(dragDirection: string) => void`
Fired after swipe has ended. `dragDirection` can have value of `left` or `right`.
### onSwipeProgress
Type: `(progress: number, dragDirection: string) => void`
Fired every time swipe progress changes. The reported `progress` value is always an integer in range 0 to 100 inclusive. `dragDirection` can have value of `left` or `right`.
### scrollStartThreshold
Type: `number` (default: `10`)
How far in pixels scroll needs to be done to block swiping. After scrolling is started and goes beyond the threshold, swiping is blocked.
It can be set for the whole list or for every item. See `scrollStartThreshold` for `SwipeableList`. Value from the `SwipeableListItem` takes precedence.
### swipeStartThreshold
Type: `number` (default: `10`)
How far in pixels swipe needs to be done to start swiping on list item. After a swipe is started and goes beyond the threshold, scrolling is blocked.
It can be set for the whole list or for every item. See `swipeStartThreshold` for `SwipeableList`. Value from the `SwipeableListItem` takes precedence.
### threshold
Type: `number` (default: `0.5`)
How far swipe needs to be done to trigger action. `0.5` means that item needs to be swiped to half of its width, `0.25` - one-quarter of width.
It can be set for the whole list or for every item. See `threshold` for `SwipeableList`. Value from the `SwipeableListItem` takes precedence.
### trailingActions
Type: `TrailingActions component`
Container component that sets up correct props in `SwipeAction`. See examples for usage.
## SwipeAction Props
### destructive
Type: `boolean` (optional, default: `false`)
If set to `true` then remove animation is played and callback is called after `destructiveCallbackDelay`.
### onClick
Type: `function` (required)
Callback function that should be call after swipe action is triggered.
### Tag
Type: `string` (optional, default: `span`)
HTML tag that is used to create this component.
## Contributors ✨
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tbody>
<tr>
<td align="center"><a href="https://marek-rozmus.medium.com/"><img src="https://avatars.githubusercontent.com/u/26272040?v=4?s=100" width="100px;" alt="Marek Rozmus"/><br /><sub><b>Marek Rozmus</b></sub></a><br /><a href="https://github.com/marekrozmus/react-swipeable-list/commits?author=marekrozmus" title="Code">💻</a> <a href="https://github.com/marekrozmus/react-swipeable-list/commits?author=marekrozmus" title="Documentation">📖</a> <a href="https://github.com/marekrozmus/react-swipeable-list/commits?author=marekrozmus" title="Tests">⚠️</a> <a href="#example-marekrozmus" title="Examples">💡</a> <a href="#ideas-marekrozmus" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-marekrozmus" title="Maintenance">🚧</a> <a href="#design-marekrozmus" title="Design">🎨</a></td>
<td align="center"><a href="https://adamlaycock.ca"><img src="https://avatars.githubusercontent.com/u/894797?v=4?s=100" width="100px;" alt="Adam Laycock"/><br /><sub><b>Adam Laycock</b></sub></a><br /><a href="https://github.com/marekrozmus/react-swipeable-list/issues?q=author%3Aalaycock" title="Bug reports">🐛</a></td>
<td align="center"><a href="https://www.rathes.me"><img src="https://avatars.githubusercontent.com/u/6367520?v=4?s=100" width="100px;" alt="Rathes Sachchithananthan"/><br /><sub><b>Rathes Sachchithananthan</b></sub></a><br /><a href="#ideas-rathesDot" title="Ideas, Planning, & Feedback">🤔</a></td>
<td align="center"><a href="https://nielssegers.be"><img src="https://avatars.githubusercontent.com/u/10974647?v=4?s=100" width="100px;" alt="Niels"/><br /><sub><b>Niels</b></sub></a><br /><a href="#ideas-segersniels" title="Ideas, Planning, & Feedback">🤔</a></td>
<td align="center"><a href="https://github.com/harrisgca"><img src="https://avatars.githubusercontent.com/u/5953554?v=4?s=100" width="100px;" alt="Glenn Harris"/><br /><sub><b>Glenn Harris</b></sub></a><br /><a href="#maintenance-harrisgca" title="Maintenance">🚧</a></td>
<td align="center"><a href="https://github.com/v-zdorovcev"><img src="https://avatars.githubusercontent.com/u/72477415?v=4?s=100" width="100px;" alt="Zdorovtsev Viktor"/><br /><sub><b>Zdorovtsev Viktor</b></sub></a><br /><a href="#ideas-v-zdorovcev" title="Ideas, Planning, & Feedback">🤔</a></td>
<td align="center"><a href="https://github.com/elmesaoudee"><img src="https://avatars.githubusercontent.com/u/18504843?v=4?s=100" width="100px;" alt="Zakaria EL Mesaoudi"/><br /><sub><b>Zakaria EL Mesaoudi</b></sub></a><br /><a href="https://github.com/marekrozmus/react-swipeable-list/commits?author=elmesaoudee" title="Code">💻</a></td>
</tr>
</tbody>
</table>
<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->
<!-- ALL-CONTRIBUTORS-LIST:END -->
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!