Socket
Socket
Sign inDemoInstall

react-swipezor

Package Overview
Dependencies
3
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-swipezor

A beautiful react swipe button compatible with both desktop and mobile.


Version published
Weekly downloads
142
increased by19.33%
Maintainers
1
Install size
19.8 MB
Created
Weekly downloads
 

Readme

Source

react-swipezor

A beautiful react swipe button compatible with both desktop and mobile. This button uses react-swipeable to detect the swipe action.

Installation

npm install --save react-swipezor

or

yarn add react-swipezor

Demo / Example

Click here

Options

KeyTypeDefaultDescription
mainTextstring | react nodeElement that appears on button
overlayTextstring | react nodeElement that appears on swipe overlay
onSwipeDonefunctionCallback that gets called when the button is swipped
resetintegerIf this value changes, the button is resseted to initial state, i.e., non-swiped state.
caretstring | react nodeElement to serve as new caret, default is an image of arrow.
classListstring''Class names that gets appended to main button element
overlayClassListstring''Class names that gets appended to overlay element
caretClassListstring''Class names that gets appended to caret element
deltainteger10Minimum distance to swipe before swiping animation starts
minSwipeWidthfloat0.6Minimum width that a user needs to swipe till to change the button state to swipped state. Value ranges from 0-1. For example, 0.6 means user needs to swipe atleast till 60% of total width of button to set it to swiped state.
minSwipeVelocityfloat0.6Other way to change button state to swiped is to swipe it quickly. If the swipe velocity is above this value then button is set to swiped state.

Note: Even if user swipes to lesser distance than the one specified by minSwipeWidth option, if his swipe velocity is above minSwipeVelocity the button state will be changed to swiped.


Development

Firstly install the dependencies with npm install or yarn install.

Now make sure you are in root of the folder, use the following command to create a link locally, which is to be used in example project, using the following command

npm link

Now start the automatic rebuild for hot reloading purpose using the command:

npm start

Keep this terminal opened and move onto next step.

Now you need to start the example project, to do this make sure your current directory is /example, install its dependencies too using npm install or yarn install command. Now link react-swipezor to the example project using the command:

npm link react-swipezor

Now you can start the example project by running the command:

npm start

Now you are ready to make changes to /src/index.js file.

Keywords

FAQs

Last updated on 22 Oct 2021

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc