This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
2021-04-02 02:24:13 +03:00

34 lines
773 B
JavaScript

import GestureHandler from './GestureHandler';
/**
* The base class for **Rotation** and **Pinch** gesture handlers.
*/
class IndiscreteGestureHandler extends GestureHandler {
get shouldEnableGestureOnSetup() {
return false;
}
updateGestureConfig({ minPointers = 2, maxPointers = 2, ...props }) {
return super.updateGestureConfig({
minPointers,
maxPointers,
...props,
});
}
isGestureEnabledForEvent(
{ minPointers, maxPointers },
recognizer,
{ maxPointers: pointerLength }
) {
if (pointerLength > maxPointers) {
return { failed: true };
}
const validPointerCount = pointerLength >= minPointers;
return {
success: validPointerCount,
};
}
}
export default IndiscreteGestureHandler;