64 lines
1.6 KiB
TypeScript
64 lines
1.6 KiB
TypeScript
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() {
|
|
const rPinchDa = useRef<number[] | undefined>(undefined)
|
|
const rPinchPoint = useRef<number[] | undefined>(undefined)
|
|
|
|
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 },
|
|
}
|
|
)
|
|
}
|