1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- import React, { useEffect, useRef } from 'react'
- import state from 'state'
- import inputs from 'state/inputs'
- import * as vec from 'utils/vec'
- import { useGesture } from 'react-use-gesture'
-
- /**
- * Capture zoom gestures (pinches, wheels and pans) and send to the state.
- * @param ref
- * @returns
- */
- export default function useZoomEvents(
- ref: React.MutableRefObject<SVGSVGElement>
- ) {
- const rPinchDa = useRef<number[] | undefined>(undefined)
- const rPinchPoint = useRef<number[] | undefined>(undefined)
-
- const bind = useGesture(
- {
- onWheel: ({ event, delta }) => {
- if (event.ctrlKey) {
- state.send('ZOOMED_CAMERA', {
- delta: delta[1],
- ...inputs.wheel(event as WheelEvent),
- })
- return
- }
-
- state.send('PANNED_CAMERA', {
- delta,
- ...inputs.wheel(event as WheelEvent),
- })
- },
- onPinch: ({ pinching, da, origin }) => {
- if (!pinching) {
- state.send('STOPPED_PINCHING')
- rPinchDa.current = undefined
- rPinchPoint.current = undefined
- return
- }
-
- if (rPinchPoint.current === undefined) {
- state.send('STARTED_PINCHING')
- rPinchDa.current = da
- rPinchPoint.current = origin
- }
-
- const [distanceDelta, angleDelta] = vec.sub(rPinchDa.current, da)
-
- state.send('PINCHED', {
- delta: vec.sub(rPinchPoint.current, origin),
- point: origin,
- distanceDelta,
- angleDelta,
- })
-
- rPinchDa.current = da
- rPinchPoint.current = origin
- },
- },
- {
- domTarget: document.body,
- eventOptions: { passive: false },
- }
- )
-
- return { ...bind() }
- }
|