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

Fix swipeable swiping to left when no renderRightActions is set #3145

Merged
merged 2 commits into from
Oct 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 18 additions & 10 deletions src/components/ReanimatedSwipeable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ const Swipeable = forwardRef<SwipeableMethods, SwipeableProps>(
const rowWidth = useSharedValue<number>(0);
const leftWidth = useSharedValue<number>(0);
const rightWidth = useSharedValue<number>(0);
const rightOffset = useSharedValue<number>(0);
const rightOffset = useSharedValue<number | null>(null);

const leftActionTranslate = useSharedValue<number>(0);
const rightActionTranslate = useSharedValue<number>(0);
Expand Down Expand Up @@ -266,19 +266,28 @@ const Swipeable = forwardRef<SwipeableMethods, SwipeableProps>(
const overshootLeftProp = overshootLeft;
const overshootRightProp = overshootRight;

const calculateCurrentOffset = useCallback(() => {
const updateRightElementWidth = () => {
'worklet';
if (rowState.value === 1) {
return leftWidth.value;
} else if (rowState.value === -1) {
return -rowWidth.value - rightOffset.value;
if (rightOffset.value === null) {
rightOffset.value = rowWidth.value;
}
return 0;
rightWidth.value = Math.max(0, rowWidth.value - rightOffset.value);
};

const calculateCurrentOffset = useCallback(() => {
'worklet';
updateRightElementWidth();
return rowState.value === 1
? leftWidth.value
: rowState.value === -1
? -rowWidth.value - rightOffset.value!
: 0;
}, [leftWidth, rightOffset, rowState, rowWidth]);

const updateAnimatedEvent = () => {
'worklet';
rightWidth.value = Math.max(0, rowWidth.value - rightOffset.value);

updateRightElementWidth();

const overshootLeft = overshootLeftProp ?? leftWidth.value > 0;
const overshootRight = overshootRightProp ?? rightWidth.value > 0;
Expand Down Expand Up @@ -446,7 +455,6 @@ const Swipeable = forwardRef<SwipeableMethods, SwipeableProps>(
},
openRight() {
'worklet';
rightWidth.value = rowWidth.value - rightOffset.value;
m-bert marked this conversation as resolved.
Show resolved Hide resolved
animateRow(calculateCurrentOffset(), -rightWidth.value);
},
reset() {
Expand Down Expand Up @@ -520,7 +528,7 @@ const Swipeable = forwardRef<SwipeableMethods, SwipeableProps>(
const { velocityX } = event;
userDrag.value = event.translationX;

rightWidth.value = rowWidth.value - rightOffset.value;
updateRightElementWidth();

const leftThreshold = leftThresholdProp ?? leftWidth.value / 2;
const rightThreshold = rightThresholdProp ?? rightWidth.value / 2;
Expand Down
Loading