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

easy-swipe-view

v1.1.15

Published

SwipeView is an npm package that lets you create swipeable views that can be easily used in React Native projects.

Downloads

57

Readme

easy-swipe-view

A simple and easy-to-use swipeable list component for React Native projects, built with Reanimated v2 and react-native-gesture-handler.

  • Smooth gesture interactions & snapping animations.
  • Compatible with Reanimated v3
  • Compatible with Expo.
  • FlatList and ScrollView support.
  • Written in TypeScript
  • Predefined Buttons components for swipe actions

Installation

First, make sure you have installed react-native-reanimated v3 and react-native-gesture-handler in your project: Then,

npm install easy-swipe-view

or

yarn add easy-swipe-view

or

pnpm add easy-swipe-view

Usage

SwipeView Component

  1. Import the SwipeView component and the EasySwipe context:
import { SwipeView, EasySwipe, LeftButton, RightButton  } from 'easy-swipe-view';
  1. Wrap your list component (e.g., ScrollView, FlatList or SectionList) with the EasySwipe.Provider:

Note 💡 If you are not going to use the component inside a scrollable element, skip this step.

<EasySwipe.Provider value={ref}>
  <FlatList
    ref={ref}
    ...
  />
</EasySwipe.Provider>
  1. Use the SwipeView component as a wrapper for your list items:
const MyLeftButtonComponent = () => (
  <LeftButton
    onPress={leftButtonAction}
    width={100}
    backgroundColor="#ff0015"
  >
    <Octicons name="trash" size={22} color={"#fff"} />
  </LeftButton>
);

const MyRightButtonComponent = () => (
  <RightButton
    onPress={rightButtonAction}
    width={100}
    backgroundColor="#0088ff"
  >
    <Octicons name="archive" size={22} color={"#fff"} />
  </RightButton>
);
<SwipeView
  ref={swipeRef}
  LeftButton={MyLeftButtonComponent} //If you leave it blank, it will be disabled.
  RightButton={MyRightButtonComponent} //If you leave it blank, it will be disabled.
  leftOffset={100}
  rightOffset={100}
  maxLeft={150}
  maxRight={150}
  onLeftSwipe={() => console.log("On Swipe!")}
  onRightSwipe={() => console.log("On Swipe!")}
  onSwipe={(position) => console.log(position)}
>
  <View 
    style={{
      width: '100%',
      backgroundColor: 'gray',
      paddingTop: 6,
      paddingBottom: 6,
      paddingLeft: 4,
      paddingRight: 4,
      alignItems: 'center'
    }}
  >
    <Text style={{color: "#030303"}}>Swipe me!</Text>
  </View>
</SwipeView>

If you want to reset the position by outside intervention;

<TouchableHighlight onPress={() => swipeRef.current.resetPosition()}>
  <Text>Reset</Text>
</TouchableHighlight>

SwipeList Component

  1. Import the SwipeList component:
import { SwipeList } from 'easy-swipe-view';
  1. Use the SwipeList component as a wrapper for your FlatList:
<SwipeList
  LeftButton={MyLeftButtonComponent}
  RightButton={MyRightButtonComponent}
  leftOffset={myLeftOffset}
  rightOffset={myRightOffset}
  maxLeft={150}
  maxRight={150}
  onLeftSwipe={() => console.log("On Swipe!")}
  onRightSwipe={() => console.log("On Swipe!")}
  onSwipe={(position) => console.log(position)}
  data={yourData}
  renderItem={({item}) => (
    <View 
      style={{
        width: '100%',
        backgroundColor: 'gray',
        paddingTop: 6,
        paddingBottom: 6,
        paddingLeft: 4,
        paddingRight: 4,
        alignItems: 'center'
      }}
    >
      <Text style={{color: "#030303"}}>{item.title}</Text>
    </View>
  )}
  keyExtractor={(item, index) => index.toString()}
/>

Props Documentation

This file contains the props documentation for the SwipeView, Buttons, and SwipeList components.

SwipeView Props

| Prop | Type | Default | Description | |--------------|-------------------------------|---------|--------------------------------------------------------------------------------------------------------------| | LeftButton | Component | null | The component to be rendered when swiping to the right. If not provided, left swipe will be disabled. | | RightButton | Component | null | The component to be rendered when swiping to the left. If not provided, right swipe will be disabled. | | leftOffset | number | 100 | The offset required to trigger a left swipe action. | | rightOffset | number | 100 | The offset required to trigger a right swipe action. | | maxLeft | number | 150 | The maximum distance the item can be swiped to the right. | | maxRight | number | 150 | The maximum distance the item can be swiped to the left. | | onLeftSwipe | (value: number) => void | null | A callback function to be called when a left swipe action is triggered. | | onRightSwipe | (value: number) => void | null | A callback function to be called when a right swipe action is triggered. | | onSwipe | (value: number) => void | null | A callback function to be called when the item is being swiped. | | children | React.ReactNode | null | The content of the SwipeView component. |

Buttons Props

| Prop | Type | Default | Description | |-----------------|-------------------------------|---------|--------------------------------------------------------------------------------------------------------------| | onPress | () => void | () => {}| The callback function to be called when the button is pressed. | | width | number | 100 | The width of the button component. | | backgroundColor | string | '#ff0015' for LeftButton, '#0088ff' for RightButton| The background color of the button component. | | underlayColor | string | '#b00412' for LeftButton, '#0077ff' for RightButton| The background color of the button component for active. | | style | ViewStyle | {} | Additional styles for the button component. | | children | React.ReactNode | <></> | The content of the button component. | | ...props | any | - | Other props to be passed down to the TouchableHighlight component. |

SwipeList Props

| Prop | Type | Default | Description | |---------------|-------------------------------|---------|--------------------------------------------------------------------------------------------------------------| | ...flatListProps | any | - | All other props available for the FlatList component. | | LeftButton | Component | null | The component to be rendered when swiping to the right. If not provided, left swipe will be disabled. | | RightButton | Component | null | The component to be rendered when swiping to the left. If not provided, right swipe will be disabled. | | leftOffset | number | 100 | The offset required to trigger a left swipe action. | | rightOffset | number | 100 | The offset required to trigger a right swipe action. | | maxLeft | number | 150 | The maximum distance the item can be swiped to the right. | | maxRight | number | 150 | The maximum distance the item can be swiped to the left. | | onLeftSwipe | (value: number) => void | null | A callback function to be called when a left swipe action is triggered. | | onRightSwipe | (value: number) => void | null | A callback function to be called when a right swipe action is triggered. | | onSwipe | (value: number) => void | null | A callback function to be called when the item is being swiped. | | renderItem | ({item, index}) => JSX.Element | null | A function that returns the component to be rendered for each item in the list. Must be wrapped with SwipeView. |

Please refer to the examples provided in the repository for detailed usage instructions.

Author

Aras Ors

Kahve

Lisans

MIT