react-native-gesture-handler
Version:
Declarative API exposing native platform touch and gesture system to React Native
52 lines (44 loc) • 1.43 kB
text/typescript
import { ContinousBaseGesture } from './gesture';
import type { RotationGestureHandlerEventPayload } from '../GestureHandlerEventPayload';
import { GestureUpdateEvent } from '../gestureHandlerCommon';
type RotationGestureChangeEventPayload = {
rotationChange: number;
};
function changeEventCalculator(
current: GestureUpdateEvent<RotationGestureHandlerEventPayload>,
previous?: GestureUpdateEvent<RotationGestureHandlerEventPayload>
) {
'worklet';
let changePayload: RotationGestureChangeEventPayload;
if (previous === undefined) {
changePayload = {
rotationChange: current.rotation,
};
} else {
changePayload = {
rotationChange: current.rotation - previous.rotation,
};
}
return { ...current, ...changePayload };
}
export class RotationGesture extends ContinousBaseGesture<
RotationGestureHandlerEventPayload,
RotationGestureChangeEventPayload
> {
constructor() {
super();
this.handlerName = 'RotationGestureHandler';
}
onChange(
callback: (
event: GestureUpdateEvent<
RotationGestureHandlerEventPayload & RotationGestureChangeEventPayload
>
) => void
) {
// @ts-ignore TS being overprotective, RotationGestureHandlerEventPayload is Record
this.handlers.changeEventCalculator = changeEventCalculator;
return super.onChange(callback);
}
}
export type RotationGestureType = InstanceType<typeof RotationGesture>;