Skip to content

Commit 502f92d

Browse files
authored
Merge pull request tongyy#58 from tongyy/tongyy-patch-3
tongyy#57 get bounds
2 parents b12e0ca + 08edeb3 commit 502f92d

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

Draggable.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export default function Draggable(props) {
9393
(e, gestureState) => {
9494
isDragging.current = false;
9595
if (onDragRelease) {
96-
onDragRelease(e, gestureState);
96+
onDragRelease(e, gestureState, getBounds());
9797
onRelease(e, true);
9898
}
9999
if (!shouldReverse) {
@@ -102,7 +102,7 @@ export default function Draggable(props) {
102102
reversePosition();
103103
}
104104
},
105-
[onDragRelease, shouldReverse, onRelease, reversePosition],
105+
[onDragRelease, shouldReverse, onRelease, reversePosition, getBounds],
106106
);
107107

108108
const onPanResponderGrant = React.useCallback(

README.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ return (
8585
| :------------ |:---------------:|:---------------:|:-----|
8686
| onDrag | func | event, gestureState | called every frame component is moved |
8787
| onShortPressRelease | func | event | called when a press is released that isn't a long press or drag |
88-
| onDragRelease | func | event, gestureState | called when a drag is released |
88+
| onDragRelease | func | event, gestureState, bounds | called when a drag is released |
8989
| onLongPress | func | event | called when a long press is started |
9090
| onPressIn | func | event | called when a press is started |
9191
| onPressOut | func | event | called when a press is stopped, or the component is dragged |
@@ -119,12 +119,18 @@ return (
119119
| vy | current velocity of the gesture |
120120
| numberActiveTouches | Number of touches currently on screen |
121121
| gestureState | called at the end of interaction, regardless if press or drag |
122-
122+
#### bounds
123+
| Argument | Description |
124+
| :------------ |:---------------|
125+
| left | as x at the top left corner |
126+
| top | as y at the top left corner |
127+
| right | as x at the bottom right corner |
128+
| bottom | as y at the bottom right corner |
123129
## Methods (not supported above V2.0.0)
124130
| Method | Params | Description |
125131
| :------------ |:---------------:|:-----|
126132
| reversePosition | --- | **use onReverse callback instead.** manually reset Draggable to start position |
127-
| getPosition| --- |**use onDragRelease callback instead.** get the value of pageX, pageY|
133+
| getPosition| --- |**use onDragRelease callback instead.** get the accurate coordinates x,y from the bounds|
128134

129135
# What's next?
130136

example/DraggableDemo/Draggable.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export default function Draggable(props) {
9393
(e, gestureState) => {
9494
isDragging.current = false;
9595
if (onDragRelease) {
96-
onDragRelease(e, gestureState);
96+
onDragRelease(e, gestureState, getBounds());
9797
onRelease(e, true);
9898
}
9999
if (!shouldReverse) {
@@ -102,7 +102,7 @@ export default function Draggable(props) {
102102
reversePosition();
103103
}
104104
},
105-
[onDragRelease, shouldReverse, onRelease, reversePosition],
105+
[onDragRelease, shouldReverse, onRelease, reversePosition, getBounds],
106106
);
107107

108108
const onPanResponderGrant = React.useCallback(

index.d.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ export interface IDraggableProps {
2020
touchableOpacityProps?: object;
2121
onDrag?: (event: GestureResponderEvent, gestureState: PanResponderGestureState) => void;
2222
onShortPressRelease?: (event: GestureResponderEvent) => void;
23-
onDragRelease?: (event: GestureResponderEvent, gestureState: PanResponderGestureState) => void;
23+
onDragRelease?: (event: GestureResponderEvent, gestureState: PanResponderGestureState, bounds:
24+
{left: number, top: number, right: number, bottom: number}) => void;
2425
onLongPress?: (event: GestureResponderEvent) => void;
2526
onPressIn?: (event: GestureResponderEvent) => void;
2627
onPressOut?: (event: GestureResponderEvent) => void;

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-draggable",
3-
"version": "3.2.0",
3+
"version": "3.3.0",
44
"description": "draggable",
55
"main": "index.js",
66
"types": "index.d.ts",

0 commit comments

Comments
 (0)