npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-swipeable-list

v1.9.3

Published

Swipeable list component for React

Downloads

32,461

Readme

You like it? Buy me a coffee :) or a 🍺

Actions Status codecov GitHub Release Date

All Contributors

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

This repository contains new version of 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

Demo

Check working example page

Edit react-swipeable-list

Installation

npm install react-swipeable-list
# or via yarn
yarn add react-swipeable-list

Usage

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.

When set to false actions are only opened and they need to be clicked to trigger action.

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

IOS

MS

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.

maxSwipe

Type: 'number' (optional, default: 1.0)

Limit the swipe to percent of width, e.g.: 0.5 will make swipe possible only for 50% of elements's width

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):

This project follows the all-contributors specification. Contributions of any kind welcome!