Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | 2x 8x 8x 8x 8x 8x | import { useRef } from 'react';
import { PanResponder, Animated } from 'react-native';
import { useSafeAreaInsets } from 'react-native-safe-area-context';
import { ScreenHelper } from '../utils/screenHelper';
export const usePetDrag = (
initialX: number,
initialY: number,
petWidth: number,
petHeight: number,
onPress?: () => void,
onLongPress?: () => void
) => {
const insets = useSafeAreaInsets();
const pan = useRef(new Animated.ValueXY({ x: initialX, y: initialY })).current;
const isDragging = useRef(false);
const panResponder = useRef(
PanResponder.create({
onStartShouldSetPanResponder: () => true,
onMoveShouldSetPanResponder: (_, gestureState) => {
// 只有移动距离超过一定阈值才认为是拖拽,否则可能是点击
return Math.abs(gestureState.dx) > 5 || Math.abs(gestureState.dy) > 5;
},
onPanResponderGrant: () => {
pan.setOffset({
x: (pan.x as any)._value,
y: (pan.y as any)._value,
});
pan.setValue({ x: 0, y: 0 });
isDragging.current = false;
},
onPanResponderMove: (_, gestureState) => {
isDragging.current = true;
Animated.event([null, { dx: pan.x, dy: pan.y }], { useNativeDriver: false })(
_,
gestureState
);
},
onPanResponderRelease: (_, gestureState) => {
pan.flattenOffset();
// 边界检查与吸附
const currentX = (pan.x as any)._value;
const currentY = (pan.y as any)._value;
const clamped = ScreenHelper.clampPosition(currentX, currentY, petWidth, petHeight, insets);
Animated.spring(pan, {
toValue: clamped,
useNativeDriver: false,
friction: 5,
}).start();
// 如果没有发生拖拽,则视为点击
if (!isDragging.current && Math.abs(gestureState.dx) < 5 && Math.abs(gestureState.dy) < 5) {
// 简单的长按检测逻辑:如果按下时间较长,可以视为长按
// 但 PanResponder 没有直接的长按回调,通常结合 setTimeout 实现
// 这里简化处理,如果需要精确长按,建议在组件层使用 TouchableOpacity 或 Pressable 包裹
onPress?.();
}
},
})
).current;
return {
pan,
panResponder,
};
};
|