Skip to content

Commit f803ac1

Browse files
authored
Don’t pass gesture handler wrapper props to child (#3343)
## Description When using useEvent from Reanimated together with PureNativeButton, I noticed that I would receive duplicate events. Upon further investigation I found that this was because createHandler renames the handlers and when reanimated attaches the worklet it does so twice because the same handler is available under different props. This PR fixes this problem by simply not passing wrapper specific props to the child. ## Test plan <!-- Describe how did you test this change here. -->
1 parent 5f3211d commit f803ac1

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

src/handlers/createNativeWrapper.tsx

+10-4
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,23 @@ export default function createNativeWrapper<P>(
2929
P & NativeViewGestureHandlerProps
3030
>((props, ref) => {
3131
// Filter out props that should be passed to gesture handler wrapper
32-
const gestureHandlerProps = Object.keys(props).reduce(
32+
const { gestureHandlerProps, childProps } = Object.keys(props).reduce(
3333
(res, key) => {
3434
// TS being overly protective with it's types, see https://github.com/microsoft/TypeScript/issues/26255#issuecomment-458013731 for more info
3535
const allowedKeys: readonly string[] = NATIVE_WRAPPER_PROPS_FILTER;
3636
if (allowedKeys.includes(key)) {
3737
// @ts-ignore FIXME(TS)
38-
res[key] = props[key];
38+
res.gestureHandlerProps[key] = props[key];
39+
} else {
40+
// @ts-ignore FIXME(TS)
41+
res.childProps[key] = props[key];
3942
}
4043
return res;
4144
},
42-
{ ...config } // Watch out not to modify config
45+
{
46+
gestureHandlerProps: { ...config }, // Watch out not to modify config
47+
childProps: { enabled: props.enabled } as P,
48+
}
4349
);
4450
const _ref = useRef<React.ComponentType<P>>();
4551
const _gestureHandlerRef = useRef<React.ComponentType<P>>();
@@ -63,7 +69,7 @@ export default function createNativeWrapper<P>(
6369
{...gestureHandlerProps}
6470
// @ts-ignore TODO(TS)
6571
ref={_gestureHandlerRef}>
66-
<Component {...props} ref={_ref} />
72+
<Component {...childProps} ref={_ref} />
6773
</NativeViewGestureHandler>
6874
);
6975
});

0 commit comments

Comments
 (0)