Skip to content
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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

avertin
Copy link
Contributor

@avertin avertin commented Feb 4, 2021

Happy to update the README if these changes look good

Originally written by @annepham25 and @aarondail

Also requested by @eraldoforgoli - issue #107

@@ -589,7 +592,10 @@ export default class AutoDragSortableView extends Component{
render() {
return (
<ScrollView
bounces={false}
bounces={this.props.onRefresh}
Copy link
Contributor Author

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} />
Copy link
Contributor Author

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;
Copy link
Contributor Author

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),
Copy link
Contributor Author

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,
Copy link
Contributor Author

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

@eraldoforgoli
Copy link

It would be nice if this PR merged 🔥💪

Thanks @avertin 🤚🤚

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants