React Native 使用钩子时如何设置panResponder的偏移量?

qacovj5a  于 2022-12-23  发布在  React
关注(0)|答案(1)|浏览(143)

我找到了一个代码示例,演示了如何在react native中使用panResponder进行拖放操作。您可以尝试以下代码:
https://snack.expo.io/S14RvxJ_L
我面临的问题是,如果你把物品放在拖放区域,然后在之后触摸它,位置会一直被重置。
我希望用户能够将项目拖离拖放区而不出现此问题。因此再次澄清:你把项目拖到拖放区,它会变成红色。现在再次拖动项目,并尝试拖动到任何你想要的地方,位置将被重置。我试着用钩子设置圆圈的初始位置,试着在开始时用start值设置手势的y 0和x 0。到目前为止还没有成功。
到目前为止,我发现我可以在onPanResponderGrant中使用pan.setOffset(),但由于pan是用useRef()创建的,它是可变的,不能更改,或者更好的是我不知道如何更改。
我怎样才能用最好的方式来实现呢?

import React from 'react';
import { StyleSheet, View, Text, Dimensions, Animated, PanResponder } from 'react-native';

export default function Drag() {
  const dropZoneValues = React.useRef(null);
  const pan = React.useRef(new Animated.ValueXY());
  const [bgColor, setBgColor] = React.useState('#2c3e50');

  const isDropZone = React.useCallback((gesture) => {
    const dz = dropZoneValues.current;
    return gesture.moveY > dz.y && gesture.moveY < dz.y + dz.height;
  }, []);

  const onMove = React.useCallback((_, gesture) => {
    if (isDropZone(gesture)) setBgColor('red');
    else setBgColor('#2c3e50');
  }, [isDropZone]);

  const setDropZoneValues = React.useCallback((event) => {
    dropZoneValues.current = event.nativeEvent.layout;
  });

  const panResponder = React.useMemo(() => PanResponder.create({
    onStartShouldSetPanResponder: () => true,

    onPanResponderMove: Animated.event([null, {
      dx  : pan.current.x,
      dy  : pan.current.y
    }], {
      listener: onMove
    }),
    onPanResponderRelease: (e, gesture) => {
      if (!isDropZone(gesture)) {
        Animated.spring(
          pan.current,
          {toValue:{x:0,y:0}}
        ).start();
      }
    }
  }), []);

  return (
    <View style={styles.mainContainer}>
      <View
        onLayout={setDropZoneValues}
        style={[styles.dropZone, {backgroundColor: bgColor}]}
      >
        <Text style={styles.text}>Drop me here!</Text>
      </View>
      <View style={styles.draggableContainer}>
        <Animated.View
          {...panResponder.panHandlers}
          style={[pan.current.getLayout(), styles.circle]}
        >
          <Text style={styles.text}>Drag me!</Text>
        </Animated.View>
      </View>
    </View>
  );
}

let CIRCLE_RADIUS = 36;
let Window = Dimensions.get('window');
let styles = StyleSheet.create({
  mainContainer: {
    flex: 1
  },
  dropZone: {
    height  : 100,
    backgroundColor:'#2c3e50'
  },
  text        : {
    marginTop   : 25,
    marginLeft  : 5,
    marginRight : 5,
    textAlign   : 'center',
    color       : '#fff'
  },
  draggableContainer: {
    position    : 'absolute',
    top         : Window.height/2 - CIRCLE_RADIUS,
    left        : Window.width/2 - CIRCLE_RADIUS,
  },
  circle: {
    backgroundColor     : '#1abc9c',
    width               : CIRCLE_RADIUS*2,
    height              : CIRCLE_RADIUS*2,
    borderRadius        : CIRCLE_RADIUS
  }
});

(Code来源:https://github.com/facebook/react-native/issues/25360#issuecomment-505241400)

gajydyqb

gajydyqb1#

我终于解决了
您可以在此处看到结果:https://snack.expo.io/Bky!LlqbI
你必须在onPanResponderGrant中使用setOffset和setValue。pan是一个可变对象,但仍然可以用pan.current.setOffset()或pan.current.setValue()进行更改。最后,我必须将pan.current. offset添加到onPanResponderRelease中,以便在拖放区中的下一次拖动时保持该位置。

相关问题