Skip to content

Commit f52f6f5

Browse files
authored
[docs] Improve Reanimated Swipeable documentation. (#3121)
## Description Fixed the example provided with the `Reanimated Swipeable` docs, it looks like a fragment of it was missing. Also, what's the verdict on [this issue](#2962 (comment))? Today I had to take a look at these docs again and it really occurred to me the way it's currently written can be really confusing. Here's my proposition, it removes the `[0, +]` mapping in favour of a verbose explanation: > ### `renderRightActions` > > accepts a function. > The function receives the following arguments: > > - `progress` value representing swiping progress relative to the width of the returned element. > `progress` is `0` when `swipeable` is closed, `1` when `right` action is fully visible. > > - `translation` horizontal translation of `swipeable` in pixels. > - `swipeable` provides an object exposing the methods listed [here](#methods) > > This function must return a `ReactNode`. side-by-side comparison: old|new ---|--- ![image](https://github.com/user-attachments/assets/0ca633f3-05ce-4486-8310-d355183b7703)|![image](https://github.com/user-attachments/assets/07c9c647-0623-46d5-bce2-e48ee24cb70b) Of course this change applies to both `renderLeftActions` and `renderRightActions`
1 parent 2183711 commit f52f6f5

File tree

2 files changed

+105
-96
lines changed

2 files changed

+105
-96
lines changed

docs/docs/components/reanimated_swipeable.md

+88-82
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ import Swipeable from 'react-native-gesture-handler/ReanimatedSwipeable';
2929

3030
### `friction`
3131

32-
a number that specifies how much the visual interaction will be delayed compared to the gesture distance. e.g. value of 1 will indicate that the swipeable panel should exactly follow the gesture, 2 means it is going to be two times "slower".
32+
a number that specifies how much the visual interaction will be delayed compared to the gesture distance.
33+
e.g. value of `1` will indicate that the swipeable panel should exactly follow the gesture, `2` means it is going to be two times "slower".
3334

3435
### `leftThreshold`
3536

@@ -41,81 +42,86 @@ distance from the right edge at which released panel will animate to the open st
4142

4243
### `dragOffsetFromLeftEdge`
4344

44-
distance that the panel must be dragged from the left edge to be considered a swipe. The default value is 10.
45+
distance that the panel must be dragged from the left edge to be considered a swipe. The default value is `10`.
4546

4647
### `dragOffsetFromRightEdge`
4748

48-
distance that the panel must be dragged from the right edge to be considered a swipe. The default value is 10.
49+
distance that the panel must be dragged from the right edge to be considered a swipe. The default value is `10`.
4950

5051
### `overshootLeft`
5152

52-
a boolean value indicating if the swipeable panel can be pulled further than the left actions panel's width. It is set to `true` by default as long as the left panel render method is present.
53+
a boolean value indicating if the swipeable panel can be pulled further than the left actions panel's width. It is set to `true` by default as long as the left panel render function is present.
5354

5455
### `overshootRight`
5556

56-
a boolean value indicating if the swipeable panel can be pulled further than the right actions panel's width. It is set to `true` by default as long as the right panel render method is present.
57+
a boolean value indicating if the swipeable panel can be pulled further than the right actions panel's width. It is set to `true` by default as long as the right panel render function is present.
5758

5859
### `overshootFriction`
5960

60-
a number that specifies how much the visual interaction will be delayed compared to the gesture distance at overshoot. Default value is 1, it mean no friction, for a native feel, try 8 or above.
61+
a number that specifies how much the visual interaction will be delayed compared to the gesture distance at overshoot. Default value is `1`, it mean no friction, for a native feel, try `8` or above.
6162

6263
### `onSwipeableOpen`
6364

64-
method that is called when action panel gets open (either right or left). Takes swipe direction as
65-
an argument.
65+
a function that is called when `swipeable` is opened (either right or left).
66+
Receives swipe direction as an argument.
6667

6768
### `onSwipeableClose`
6869

69-
method that is called when action panel is closed. Takes swipe direction as
70-
an argument.
70+
a function that is called when `swipeable` is closed.
71+
Receives swipe direction as an argument.
7172

7273
### `onSwipeableWillOpen`
7374

74-
method that is called when action panel starts animating on open (either right or left). Takes swipe direction as
75-
an argument.
75+
a function that is called when `swipeable` starts animating on open (either right or left).
76+
Receives swipe direction as an argument.
7677

7778
### `onSwipeableWillClose`
7879

79-
method that is called when action panel starts animating on close. Takes swipe direction as
80-
an argument.
80+
a function that is called when `swipeable` starts animating on close.
81+
Receives swipe direction as an argument.
8182

8283
### `renderLeftActions`
8384

84-
method that is expected to return an action panel that is going to be revealed from the left side when user swipes right.
85-
This map describes the values to use as inputRange for extra interpolation:
85+
a function that returns a component which will be rendered under the swipeable after swiping it to the right.
86+
The function receives the following arguments:
8687

87-
SharedValue: [startValue, endValue]
88+
- `progress` - a `SharedValue` representing swiping progress relative to the width of the returned element.
89+
- Equals `0` when `swipeable` is closed, `1` when `swipeable` is opened.
90+
- When the element overshoots it's opened position the value tends towards `Infinity`.
91+
- `translation` - a horizontal offset of the `swipeable` relative to its closed position.
92+
- `swipeableMethods` - provides an object exposing the methods listed [here](#methods).
8893

89-
progress: [0, 1]
90-
91-
drag: [0, +]
94+
This function must return a `ReactNode`.
9295

9396
To support `rtl` flexbox layouts use `flexDirection` styling.
9497

9598
### `renderRightActions`
9699

97-
method that is expected to return an action panel that is going to be revealed from the right side when user swipes left.
98-
This map describes the values to use as inputRange for extra interpolation:
99-
100-
SharedValue: [startValue, endValue]
100+
a function that returns a component which will be rendered under the swipeable after swiping it to the left.
101+
The function receives the following arguments:
101102

102-
progress: [0, 1]
103+
- `progress` - a `SharedValue` representing swiping progress relative to the width of the returned element.
104+
- Equals `0` when `swipeable` is closed, `1` when `swipeable` is opened.
105+
- When the element overshoots it's opened position the value tends towards `Infinity`.
106+
- `translation` - a horizontal offset of the `swipeable` relative to its closed position.
107+
- `swipeableMethods` - provides an object exposing the methods listed [here](#methods).
103108

104-
drag: [0, -]
109+
This function must return a `ReactNode`.
105110

106111
To support `rtl` flexbox layouts use `flexDirection` styling.
107112

108113
### `containerStyle`
109114

110-
style object for the container (Animated.View), for example to override `overflow: 'hidden'`.
115+
style object for the container (`Animated.View`), for example to override `overflow: 'hidden'`.
111116

112117
### `childrenContainerStyle`
113118

114-
style object for the children container (Animated.View), for example to apply `flex: 1`.
119+
style object for the children container (`Animated.View`), for example to apply `flex: 1`.
115120

116121
### `enableTrackpadTwoFingerGesture` (iOS only)
117122

118-
Enables two-finger gestures on supported devices, for example iPads with trackpads. If not enabled the gesture will require click + drag, with enableTrackpadTwoFingerGesture swiping with two fingers will also trigger the gesture.
123+
Enables two-finger gestures on supported devices, for example iPads with trackpads.
124+
If not enabled the gesture will require click + drag, with `enableTrackpadTwoFingerGesture` swiping with two fingers will also trigger the gesture.
119125

120126
### `mouseButton(value: MouseButton)` (Web & Android only)
121127

@@ -140,80 +146,80 @@ Using reference to `Swipeable` it's possible to trigger some actions on it
140146

141147
### `close`
142148

143-
method that closes component.
149+
a method that closes component.
144150

145151
### `openLeft`
146152

147-
method that opens component on left side.
153+
a method that opens component on left side.
148154

149155
### `openRight`
150156

151-
method that opens component on right side.
157+
a method that opens component on right side.
152158

153159
### `reset`
154160

155-
method that resets the swiping states of this `Swipeable` component.
161+
a method that resets the swiping states of this `Swipeable` component.
156162

157163
Unlike method `close`, this method does not trigger any animation.
158164

159165
### Example:
160166

161-
See the [swipeable example](https://github.com/software-mansion/react-native-gesture-handler/blob/main/example/src/release_tests/swipeableReanimation/index.tsx) from GestureHandler Example App.
167+
For a more in-depth presentation of differences between the new and the legacy implementations,
168+
see [swipeable example](https://github.com/software-mansion/react-native-gesture-handler/blob/main/example/src/release_tests/swipeableReanimation/index.tsx) from GestureHandler Example App.
162169

163170
```jsx
164-
import React, { Component } from 'react';
165-
import { Animated, StyleSheet, View } from 'react-native';
166-
import { RectButton } from 'react-native-gesture-handler';
167-
import Swipeable from 'react-native-gesture-handler/ReanimatedSwipeable';
171+
import React from 'react';
172+
import { Text, StyleSheet } from 'react-native';
173+
174+
import { GestureHandlerRootView } from 'react-native-gesture-handler';
175+
import ReanimatedSwipeable from 'react-native-gesture-handler/ReanimatedSwipeable';
176+
import Reanimated, {
177+
SharedValue,
178+
useAnimatedStyle,
179+
} from 'react-native-reanimated';
180+
181+
function RightAction(prog: SharedValue<number>, drag: SharedValue<number>) {
182+
const styleAnimation = useAnimatedStyle(() => {
183+
console.log('showRightProgress:', prog.value);
184+
console.log('appliedTranslation:', drag.value);
185+
186+
return {
187+
transform: [{ translateX: drag.value + 50 }],
188+
};
189+
});
168190

169-
const LeftAction = ({ dragX, swipeableRef }: LeftActionsProps) => {
170-
const animatedStyle = useAnimatedStyle(() => ({
171-
transform: [
172-
{
173-
translateX: interpolate(
174-
dragX.value,
175-
[0, 50, 100, 101],
176-
[-20, 0, 0, 1],
177-
Extrapolation.CLAMP
178-
),
179-
},
180-
],
181-
}));
182191
return (
183-
<RectButton
184-
style={{
185-
flex: 1,
186-
backgroundColor: '#497AFC',
187-
justifyContent: 'center',
188-
}}
189-
onPress={() => swipeableRef.current!.close()}>
190-
<Animated.Text>
191-
Archive
192-
</Animated.Text>
193-
</RectButton>
192+
<Reanimated.View style={styleAnimation}>
193+
<Text style={styles.rightAction}>Text</Text>
194+
</Reanimated.View>
194195
);
195-
};
196-
197-
const renderLeftActions = (
198-
_progress: any,
199-
translation: SharedValue<number>,
200-
swipeableRef: React.RefObject<SwipeableMethods>
201-
) => <LeftAction dragX={translation} swipeableRef={swipeableRef} />;
202-
203-
function AppleStyleSwipeableRow({ children }: AppleStyleSwipeableRowProps) {
204-
const swipeableRow = useRef<SwipeableMethods>(null);
196+
}
205197

198+
export default function Example() {
206199
return (
207-
<Swipeable
208-
ref={swipeableRow}
209-
friction={2}
210-
enableTrackpadTwoFingerGesture
211-
leftThreshold={30}
212-
renderLeftActions={(_, progress) =>
213-
renderLeftActions(_, progress, swipeableRow)
214-
}>
215-
<Text>Apple style swipeable</Text>
216-
</Swipeable>
200+
<GestureHandlerRootView>
201+
<ReanimatedSwipeable
202+
containerStyle={styles.swipeable}
203+
friction={2}
204+
enableTrackpadTwoFingerGesture
205+
rightThreshold={40}
206+
renderRightActions={RightAction}>
207+
<Text>Swipe me!</Text>
208+
</ReanimatedSwipeable>
209+
</GestureHandlerRootView>
217210
);
218211
}
212+
213+
const styles = StyleSheet.create({
214+
rightAction: { width: 50, height: 50, backgroundColor: 'purple' },
215+
separator: {
216+
width: '100%',
217+
borderTopWidth: 1,
218+
},
219+
swipeable: {
220+
height: 50,
221+
backgroundColor: 'papayawhip',
222+
alignItems: 'center',
223+
},
224+
});
219225
```

src/components/ReanimatedSwipeable.tsx

+17-14
Original file line numberDiff line numberDiff line change
@@ -144,32 +144,35 @@ export interface SwipeableProps
144144
onSwipeableCloseStartDrag?: (direction: 'left' | 'right') => void;
145145

146146
/**
147+
* `progress`: Equals `0` when `swipeable` is closed, `1` when `swipeable` is opened.
148+
* - When the element overshoots it's opened position the value tends towards `Infinity`.
149+
* - Goes back to `1` when `swipeable` is released.
147150
*
148-
* This map describes the values to use as inputRange for extra interpolation:
149-
* AnimatedValue: [startValue, endValue]
150-
*
151-
* progressAnimatedValue: [0, 1] dragAnimatedValue: [0, +]
151+
* `translation`: a horizontal offset of the `swipeable` relative to its closed position.\
152+
* `swipeableMethods`: provides an object exposing methods for controlling the `swipeable`.
152153
*
153154
* To support `rtl` flexbox layouts use `flexDirection` styling.
154155
* */
155156
renderLeftActions?: (
156-
progressAnimatedValue: SharedValue<number>,
157-
dragAnimatedValue: SharedValue<number>,
158-
swipeable: SwipeableMethods
157+
progress: SharedValue<number>,
158+
translation: SharedValue<number>,
159+
swipeableMethods: SwipeableMethods
159160
) => React.ReactNode;
161+
160162
/**
163+
* `progress`: Equals `0` when `swipeable` is closed, `1` when `swipeable` is opened.
164+
* - When the element overshoots it's opened position the value tends towards `Infinity`.
165+
* - Goes back to `1` when `swipeable` is released.
161166
*
162-
* This map describes the values to use as inputRange for extra interpolation:
163-
* AnimatedValue: [startValue, endValue]
164-
*
165-
* progressAnimatedValue: [0, 1] dragAnimatedValue: [0, -]
167+
* `translation`: a horizontal offset of the `swipeable` relative to its closed position.\
168+
* `swipeableMethods`: provides an object exposing methods for controlling the `swipeable`.
166169
*
167170
* To support `rtl` flexbox layouts use `flexDirection` styling.
168171
* */
169172
renderRightActions?: (
170-
progressAnimatedValue: SharedValue<number>,
171-
dragAnimatedValue: SharedValue<number>,
172-
swipeable: SwipeableMethods
173+
progress: SharedValue<number>,
174+
translation: SharedValue<number>,
175+
swipeableMethods: SwipeableMethods
173176
) => React.ReactNode;
174177

175178
animationOptions?: Record<string, unknown>;

0 commit comments

Comments
 (0)