Created
June 11, 2017 10:44
-
-
Save patcito/2c8a66550655ed88b4482a51b39572ff to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from "react"; | |
import { StyleSheet, View, Text, PanResponder } from "react-native"; | |
export default class Swipeable extends Component { | |
state = { | |
dragging: false, | |
offsetTop: 0, | |
offsetLeft: 0 | |
}; | |
panResponder = {}; | |
componentWillMount() { | |
this.panResponder = PanResponder.create({ | |
onStartShouldSetPanResponder: this.handleStartShouldSetPanResponder, | |
onPanResponderGrant: this.handlePanResponderGrant, | |
onPanResponderMove: this.handlePanResponderMove, | |
onPanResponderRelease: this.handlePanResponderEnd, | |
onPanResponderTerminate: this.handlePanResponderEnd | |
}); | |
} | |
render() { | |
const { children } = this.props; | |
const { dragging, offsetTop, offsetLeft } = this.state; | |
// Update style with the state of the drag thus far | |
const style = { | |
top: offsetTop, | |
left: offsetLeft | |
}; | |
return ( | |
<View | |
// Put all panHandlers into the View's props | |
{...this.panResponder.panHandlers} | |
style={[styles.box, style]} | |
> | |
{children} | |
</View> | |
); | |
} | |
// Should we become active when the user presses down on the square? | |
handleStartShouldSetPanResponder = () => { | |
return true; | |
}; | |
// We were granted responder status! Let's update the UI | |
handlePanResponderGrant = () => { | |
this.setState({ dragging: true }); | |
}; | |
// Every time the touch/mouse moves | |
handlePanResponderMove = (e, gestureState) => { | |
// Keep track of how far we've moved in total (dx and dy) | |
this.setState({ | |
offsetTop: gestureState.dy, | |
offsetLeft: gestureState.dx | |
}); | |
}; | |
// When the touch/mouse is lifted | |
handlePanResponderEnd = (e, gestureState) => { | |
// The drag is finished. Set the initialTop and initialLeft so that | |
// the new position sticks. Reset offsetTop and offsetLeft for the next drag. | |
this.setState({ | |
dragging: false, | |
offsetTop: 0, | |
offsetLeft: 0 | |
}); | |
}; | |
} | |
const styles = StyleSheet.create({ | |
box: { | |
// position: 'relative', | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment