Swipe Row [](https://travis-ci.org/shiminshen/react-swipe-row) ===
Swipe Row 
===
A React component implement swipe to show actions.
Development
---
npm install
npm start
or use storybook
npm run storybook
then swipe the row by mobile dev tool!
Usage
---
``javascript
import SwipeRow from 'SwipeRow'
const rowId = 1
onTouchStart={(e, { x, y, move, offset, ...rest }) => {}}
rightButtons={[
`
API
---
#### SwipeRow
| name | description | type | default |
|------------------------|------------------------|--------- |---------|
| onTouchStart | | Function | |
| onTouchMove | | Function | |
| onTouchEnd | | Function | |
| leftButtons | Components which reveals on left | Array of React Components | [ ] |
| rightButtons | Components which reveals on right | Array of React Components | [ ] |
| className | ClassName for wrapper div | String |'' |
| deltaThreshold | Threshold of swiping direction track | number | 10 |
| flickThreshold | Threshold of flick swiping comfirmation | number | 200 |
| transitionFunc | CSS transition to complete swipe | String | 'all 0.3s cubic-bezier(0, 0, 0, 1)' |
| disableSwipeLeft | Disable swipe left | Boolean | false |
| disableSwipeRight | Disable swipe right | Boolean | false |
#### Event Props
`onTouchStart`, `onTouchMove` and `onTouchEnd`` are the callback event with corresponding event as the first parameter and the state of each threshold as the second parameter.