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

@gfpacheco/react-native-deck-swiper

v2.0.6

Published

Awesome tinder like card swiper for react-native. Highly Customizable!

Downloads

7

Readme

react-native-deck-swiper

contributions welcome npm version

Installation

yarn add react-native-deck-swiper

OR

npm install react-native-deck-swiper --save

Versions info

Version 2.0.0-beta is technically version 1.7.2 of the package. However, npm recommended that due to the change in ownership the version be bumped.

| react-native-deck-swiper | react-native | description | | :---------------------------- | :---------------- | :--------------------------------------------------------------------- | | <= 2.0.3-beta | <= 0.56.x | should install react-native-view-overflow and set useViewOverflow true | | >= 2.0.4 | => 0.57.x | no longer requires react-native-view-overflow; useViewOverflow removed |

Issues

Before submitting a new issue please check if it hasn't already been reported yet. With respect to bugfixes and further developments, please check the To Do board.

Overview

  • [x] Rotation animation
  • [x] Opacity animation
  • [x] Zoom animation
  • [x] Overlay labels
  • [x] Show next card while swiping
  • [x] Swipe event callbacks
  • [x] Trigger swipe animations programmatically
  • [x] Jump to a card index
  • [x] Swipe to previous card
  • [x] Underlaying cards offset
  • [x] Never-ending, animated deck when infinite property is true
  • [x] Swipe back to previous card with a custom animation

Preview

App preview App preview2

Props

Card props

| Props | type | description | required | default | | :-------------- | :------------- | :------------------------------------------------------------------- | :------- | :------ | | cards | array | array of data for the cards to be rendered | required | | renderCard | func(cardData, cardIndex) | function to render the card based on the data | required | | keyExtractor | func(cardData) | function to get the card's react key | | null | | cardIndex | number | cardIndex to start with | | 0 | | infinite | bool | keep swiping indefinitely | | false | | horizontalSwipe | bool | enable/disable horizontal swiping | | true | | verticalSwipe | bool | enable/disable vertical swiping | | true | | showSecondCard | bool | enable/disable second card while swiping | | true | | stackSize | number | number of underlaying cards to show (showSecondCard must be enabled) | | 1 |

Event callbacks

| Props | type | description | default | | :---------------- | :----- | :------------------------------------------------------------------------------------ | :------ | | onSwipedAll | func | function to be called when all cards have been swiped | | () => {} | | onSwiped | func | function to be called when a card is swiped. it receives the swiped card index | | (cardIndex) => {} | | onSwipedAborted | func | function to be called when a card is released before reaching the threshold | | () => {} | | onSwipedLeft | func | function to be called when a card is swiped left. it receives the swiped card index | | (cardIndex) => {} | | onSwipedRight | func | function to be called when a card is swiped right. it receives the swiped card index | | (cardIndex) => {} | | onSwipedTop | func | function to be called when a card is swiped top. it receives the swiped card index | | (cardIndex) => {} | | onSwipedBottom | func | function to be called when a card is swiped bottom. it receives the swiped card index | | (cardIndex) => {} | | onSwiping | func | function to be called when a card is being moved. it receives X and Y positions | | (x, y) => {} | | dragStart | func | function to be called when drag start | | | dragEnd | func | function to be called when drag end | onTapCard | func | function to be called when tapping a card. it receives the tapped card index | | (cardIndex) => {} | | onTapCardDeadZone | number | maximum amount of movement before a tap is no longer recognized as a tap | 5 |

Swipe animation props

| Props | type | description | default | | :--------------------- | :----- | :------------------------------ | :--------- | | verticalThreshold | number | vertical swipe threshold | height / 5 | | horizontalThreshold | number | horizontal swipe threshold | width / 4 | | swipeAnimationDuration | number | duration of the swipe animation | 350 | | disableBottomSwipe | bool | disable bottom swipe | false | | disableLeftSwipe | bool | disable left swipe | false | | disableRightSwipe | bool | disable right swipe | false | | disableTopSwipe | bool | disable top swipe | false |

Stack props

| Props | type | description | default | | :--------------------- | :----- | :----------------------------------------------------- | :------ | | stackSeparation | number | vertical separation between underlaying cards | 10 | | stackScale | number | percentage to reduce the size of each underlaying card | 3 | | stackAnimationFriction | number | spring animation friction (bounciness) | 7 | | stackAnimationTension | number | spring animation tension (speed) | 40 |

Rotation animation props

| Props | type | description | default | | :------------------ | :---- | :----------------------------------------------------- | :-------------------------- | | inputRotationRange | array | x values range for the rotation output | [-width / 2, 0, width / 2] | | outputRotationRange | array | rotation values for the x values in inputRotationRange | ["-10deg", "0deg", "10deg"] |

Opacity animation props

| Props | type | description | default | | :-------------------------------- | :----- | :--------------------------------------------------------------- | :---------------------------------------------------- | | animateCardOpacity | bool | animate card opacity | false | | inputCardOpacityRangeX | array | pan x card opacity input range | [-width / 2, -width / 3, 0, width / 3, width / 2] | | outputCardOpacityRangeX | array | opacity values for the values in inputCardOpacityRangeX | [0.8, 1, 1, 1, 0.8] | | inputCardOpacityRangeY | array | pan y card opacity input range | [-height / 2, -height / 3, 0, height / 3, height / 2] | | outputCardOpacityRangeY | array | opacity values for the values in inputCardOpacityRangeY | [0.8, 1, 1, 1, 0.8] | | animateOverlayLabelsOpacity | bool | animate card overlay labels opacity | false | | inputOverlayLabelsOpacityRangeX | array | pan x overlay labels opacity input range | [-width / 3, -width / 4, 0, width / 4, width / 3] | | outputOverlayLabelsOpacityRangeX | array | opacity values for the values in inputOverlayLabelsOpacityRangeX | [1, 0, 0, 0, 1] | | inputOverlayLabelsOpacityRangeY | array | pan x overlay labels opacity input range | [-height / 4, -height / 5, 0, height / 5, height / 4] | | outputOverlayLabelsOpacityRangeY | array | opacity values for the values in inputOverlayLabelsOpacityRangeY | [1, 0, 0, 0, 1] | | overlayOpacityVerticalThreshold | number | vertical threshold for overlay label | height / 5 | | overlayOpacityHorizontalThreshold | number | horizontal threshold for overlay label | width / 4 |

2 steps of inputOverlayLabelsOpacityRangeX and inputOverlayLabelsOpacityRangeY should match horizontalThreshold and verticalThreshold, respectively.

Swipe overlay labels

| Props | type | description | default | | :----------------------- | :----- | :--------------------------- | :------------------------- | | overlayLabels | object | swipe labels title and style | null, see below for format | | overlayLabelStyle | object | swipe labels style | null, see below for format | | overlayLabelWrapperStyle | object | overlay label wrapper style | see below for default |

overlayLabelStyle

{
  fontSize: 45,
  fontWeight: 'bold',
  borderRadius: 10,
  padding: 10,
  overflow: 'hidden'
}

overlayLabelWrapperStyle default props:

{
  position: 'absolute',
  backgroundColor: 'transparent',
  zIndex: 2,
  flex: 1,
  width: '100%',
  height: '100%'
}

overlayLabels default props :

{
  bottom: {
	element: <Text>BLEAH</Text> /* Optional */
	title: 'BLEAH',
    style: {
      label: {
        backgroundColor: 'black',
        borderColor: 'black',
        color: 'white',
        borderWidth: 1
      },
      wrapper: {
        flexDirection: 'column',
        alignItems: 'center',
        justifyContent: 'center'
      }
    }
  },
  left: {
	element: <Text>NOPE</Text> /* Optional */
	title: 'NOPE',
    style: {
      label: {
        backgroundColor: 'black',
        borderColor: 'black',
        color: 'white',
        borderWidth: 1
      },
      wrapper: {
        flexDirection: 'column',
        alignItems: 'flex-end',
        justifyContent: 'flex-start',
        marginTop: 30,
        marginLeft: -30
      }
    }
  },
  right: {
	element: <Text>LIKE</Text> /* Optional */
	title: 'LIKE',
    style: {
      label: {
        backgroundColor: 'black',
        borderColor: 'black',
        color: 'white',
        borderWidth: 1
      },
      wrapper: {
        flexDirection: 'column',
        alignItems: 'flex-start',
        justifyContent: 'flex-start',
        marginTop: 30,
        marginLeft: 30
      }
    }
  },
  top: {
	element: <Text>SUPER</Text> /* Optional */
	title: 'SUPER LIKE',
    style: {
      label: {
        backgroundColor: 'black',
        borderColor: 'black',
        color: 'white',
        borderWidth: 1
      },
      wrapper: {
        flexDirection: 'column',
        alignItems: 'center',
        justifyContent: 'center'
      }
    }
  }
}

Swipe back to previous card props

Make sure you set showSecondCard={false} for smoother and proper transitions while going back to previous card.

| Props | type | description | default | | :-------------------------------- | :--- | :---------------------------------------- | :------ | | goBackToPreviousCardOnSwipeLeft | bool | previous card is rendered on left swipe | false | | goBackToPreviousCardOnSwipeRight | bool | previous card is rendered on right swipe | false | | goBackToPreviousCardOnSwipeTop | bool | previous card is rendered on top swipe | false | | goBackToPreviousCardOnSwipeBottom | bool | previous card is rendered on bottom swipe | false |

Style props

| Props | type | description | default | | :------------------- | :----- | :------------------------------------------------- | :-------- | | backgroundColor | string | background color for the view containing the cards | '#4FD0E9' | | marginTop | number | marginTop for the swiper container | 0 | | marginBottom | number | marginBottom for the swiper container | 0 | | cardVerticalMargin | number | card vertical margin | 60 | | cardHorizontalMargin | number | card horizontal margin | 20 | | childrenOnTop | bool | render children on top or not | false | | cardStyle | node | override swipable card style | {} | | containerStyle | node | overrides for the containing style | {} | | pointerEvents | string | pointerEvents prop for the containing | 'auto' | | useViewOverflow | bool | use ViewOverflow instead of View for the Swiper component | true |

Swipe back method info

Method

| Name | type | description | | :------------------- | :----- | :------------------------------------------------- | | swipeBack | callback | swipe back into deck last swiped card. stacksize should be 2 cards or more |

Props

| Props | type | description | default | | :------------------- | :----- | :------------------------------------------------- | :-------- | | previousCardDefaultPositionX | number | Animation start position oX when card swipes back into deck | -width | | previousCardDefaultPositionY | number | Animation start position oY when card swipes back into deck | -height | | stackAnimationFriction | number | spring animation friction (bounciness) | 7 | | stackAnimationTension | number | spring animation tension (speed) | 40 | | stackAnimationTension | number | spring animation tension (speed) | 40 | | swipeBackCard | bool | renders swipe back card, in order to animate it | false |

Methods

To trigger imperative animations, you can use a reference to the Swiper component.

| Name | arguments | description | | :-------------- | :----------------------------- | :---------------------------- | | swipeLeft | mustDecrementCardIndex = false | swipe left to the next card | | swipeRight | mustDecrementCardIndex = false | swipe right to the next card | | swipeTop | mustDecrementCardIndex = false | swipe top to the next card | | swipeBottom | mustDecrementCardIndex = false | swipe bottom to the next card | | jumpToCardIndex | cardIndex | set the current card index |

Usage example

render () {
    <View style={styles.container}>
        <Swiper
            cards={['DO', 'MORE', 'OF', 'WHAT', 'MAKES', 'YOU', 'HAPPY']}
            renderCard={(card) => {
                return (
                    <View style={styles.card}>
                        <Text style={styles.text}>{card}</Text>
                    </View>
                )
            }}
            onSwiped={(cardIndex) => {console.log(cardIndex)}}
            onSwipedAll={() => {console.log('onSwipedAll')}}
            cardIndex={0}
            backgroundColor={'#4FD0E9'}
            stackSize= {3}>
            <Button
                onPress={() => {console.log('oulala')}}
                title="Press me">
                You can press me
            </Button>
        </Swiper>
    </View>
}

Demo inside the Example Folder

Stylesheet example

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: "#F5FCFF"
  },
  card: {
    flex: 1,
    borderRadius: 4,
    borderWidth: 2,
    borderColor: "#E8E8E8",
    justifyContent: "center",
    backgroundColor: "white"
  },
  text: {
    textAlign: "center",
    fontSize: 50,
    backgroundColor: "transparent"
  }
});

Updating props on card content? (dynamic card content)

Card properties may change, including on already swiped cards, which would yield no effects to users as the cards would no longer be displayed [based on initial issue].

A possible fix for the situation is setting the cardIndex on the parent component whenever deck re-renders are needed.

const { cardIndex } = this.props;
return (<Swiper
  ref={swiper => {
    this.swiper = swiper;
  }}
  {...customSwiperProps}
  cardIndex={cardIndex}
/>)

Passing along the cardIndex to the swiper will allow external changes on the property, thus triggering a re-render of the deck of cards. All onSwipe callbacks return the cardIndex that can be used to push the updated cardIndex to app state (redux or something else).

By making sure that external changes on the cardIndex match those the swiper performs (increment on swipes, decrement on swipeBack) one can ensure no re-renders occur when not needed.

Development

If you've encountered issues while running the example app located in the example folder, try the following steps:

If you're using yarn

  1. rm -rf node_modules && rm yarn.lock
  2. yarn cache clean
  3. yarn
  4. react-native run-ios
  5. react-native run-android

If you're using npm

  1. rm -rf node_modules && rm package-lock.json
  2. npm cache clean --force
  3. npm install
  4. react-native run-ios
  5. react-native run-android

If bundler doesn't automatically start Simply run yarn start or npm start in the Example folder.

Don't forget to bump project and example versions in package.json whenever you submit a PR.