-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add refresh controls #116
base: master
Are you sure you want to change the base?
Add refresh controls #116
Conversation
@@ -589,7 +592,10 @@ export default class AutoDragSortableView extends Component{ | |||
render() { | |||
return ( | |||
<ScrollView | |||
bounces={false} | |||
bounces={this.props.onRefresh} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Enable bounces in order for pull to refresh to work
bounces={false} | ||
bounces={this.props.onRefresh} | ||
refreshControl={this.props.onRefresh && ( | ||
<RefreshControl onRefresh={this.props.onRefresh} refreshing={this.props.refreshing} enabled={this.state.scrollEnabled} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Disable RefreshControl when scrollEnabled is false because that means we are processing a drag of an item. The drag can conflict with the pull to refresh gesture if it is left enabled.
@@ -106,6 +108,7 @@ export default class AutoDragSortableView extends Component{ | |||
componentDidMount() { | |||
this.initTag() | |||
this.autoMeasureHeight() | |||
this.isHasMeasure = true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Prevent autoMeasureHeight from running again due to componentDidUpdate(). If we don't do this then before the first reorder (which sets isHasMeasure to true) pull to refresh acts very janky because we are pulling to refresh so the refreshing prop updates but then autoMeasureHeight causes the ScrollView to scroll.
@@ -57,6 +58,7 @@ export default class AutoDragSortableView extends Component{ | |||
onPanResponderMove: (evt, gestureState) => this.moveTouch(evt, gestureState), | |||
onPanResponderRelease: (evt, gestureState) => this.endTouch(evt), | |||
|
|||
onPanResponderTerminate: (evt) => this.endTouch(evt), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixes a problem with some gesture handling when the ScrollView captures the gesture
@@ -42,6 +42,7 @@ export default class AutoDragSortableView extends Component{ | |||
height: Math.ceil(dataSource.length / rowNum) * itemHeight, | |||
itemWidth, | |||
itemHeight, | |||
scrollEnabled: true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Default this to true so refresh control is enabled before an item is dragged
It would be nice if this PR merged 🔥💪 Thanks @avertin 🤚🤚 |
Happy to update the README if these changes look good
Originally written by @annepham25 and @aarondail
Also requested by @eraldoforgoli - issue #107