beautiful-react-hooks
Version:
A collection of beautiful (and hopefully useful) React hooks to speed-up your components and hooks development
31 lines (30 loc) • 1.28 kB
JavaScript
import useEvent from './useEvent';
/**
* Returns a frozen object of callback setters to handle the touch events.<br/>
* It accepts a DOM ref representing the events target. <br/>
* If a target is not provided the events will be globally attached to the document object.
* <br/>
* ### Shall the `useTouchEvents` callbacks replace the standard mouse handler props?
*
* **They shall not!**<br />
* **useTouchEvents is meant to be used to abstract more complex hooks that need to control mouse**, for instance:
* a drag n drop hook.<br />
* Using useTouchEvents handlers instead of the classic props approach it's just as bad as it sounds since you'll
* lose the React SyntheticEvent performance boost.<br />
* If you were doing something like the following:
*
*/
const useTouchEvents = (targetRef) => {
const target = targetRef || { current: window.document }; // hackish but works
const onTouchStart = useEvent(target, 'touchstart');
const onTouchEnd = useEvent(target, 'touchend');
const onTouchCancel = useEvent(target, 'touchcancel');
const onTouchMove = useEvent(target, 'touchmove');
return Object.freeze({
onTouchStart,
onTouchEnd,
onTouchCancel,
onTouchMove,
});
};
export default useTouchEvents;