tldraw/hooks/useShapeEvents.ts

112 lines
2.9 KiB
TypeScript
Raw Normal View History

2021-06-21 21:35:28 +00:00
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import React, { MutableRefObject, useCallback } from 'react'
2021-05-28 14:37:23 +00:00
import state from 'state'
import inputs from 'state/inputs'
2021-06-30 20:56:42 +00:00
import Vec from 'utils/vec'
2021-05-28 14:37:23 +00:00
export default function useShapeEvents(
id: string,
isCurrentParent: boolean,
2021-05-28 14:37:23 +00:00
rGroup: MutableRefObject<SVGElement>
) {
const handlePointerDown = useCallback(
(e: React.PointerEvent) => {
if (isCurrentParent) return
if (!inputs.canAccept(e.pointerId)) return
2021-06-04 16:08:43 +00:00
e.stopPropagation()
2021-05-28 14:37:23 +00:00
rGroup.current.setPointerCapture(e.pointerId)
const info = inputs.pointerDown(e, id)
2021-06-10 09:49:16 +00:00
if (e.button === 0) {
if (inputs.isDoubleClick() && !(info.altKey || info.metaKey)) {
state.send('DOUBLE_POINTED_SHAPE', info)
2021-06-10 09:49:16 +00:00
}
state.send('POINTED_SHAPE', info)
2021-06-10 09:49:16 +00:00
} else {
state.send('RIGHT_POINTED', info)
2021-06-04 16:08:43 +00:00
}
2021-05-28 14:37:23 +00:00
},
[id, isCurrentParent]
2021-05-28 14:37:23 +00:00
)
const handlePointerUp = useCallback(
(e: React.PointerEvent) => {
if (isCurrentParent) return
if (!inputs.canAccept(e.pointerId)) return
2021-06-04 16:08:43 +00:00
e.stopPropagation()
2021-05-28 14:37:23 +00:00
rGroup.current.releasePointerCapture(e.pointerId)
state.send('STOPPED_POINTING', inputs.pointerUp(e, id))
2021-05-28 14:37:23 +00:00
},
[id, isCurrentParent]
2021-05-28 14:37:23 +00:00
)
const handlePointerEnter = useCallback(
(e: React.PointerEvent) => {
if (isCurrentParent) return
if (!inputs.canAccept(e.pointerId)) return
e.stopPropagation()
2021-06-18 15:19:10 +00:00
state.send('HOVERED_SHAPE', inputs.pointerEnter(e, id))
2021-05-28 14:37:23 +00:00
},
[id, isCurrentParent]
2021-05-28 14:37:23 +00:00
)
const handlePointerMove = useCallback(
(e: React.PointerEvent) => {
if (!inputs.canAccept(e.pointerId)) return
2021-06-30 20:56:42 +00:00
const prev = inputs.pointer?.point
const info = inputs.pointerMove(e)
if (prev && state.isIn('selecting') && inputs.keys[' ']) {
if (!e.currentTarget.hasPointerCapture(e.pointerId)) {
e.currentTarget.setPointerCapture(e.pointerId)
}
state.send('KEYBOARD_PANNED_CAMERA', {
delta: Vec.sub(prev, info.point),
})
return
}
if (isCurrentParent) return
state.send('MOVED_OVER_SHAPE', inputs.pointerEnter(e, id))
2021-05-28 14:37:23 +00:00
},
[id, isCurrentParent]
2021-05-28 14:37:23 +00:00
)
const handlePointerLeave = useCallback(
(e: React.PointerEvent) => {
if (isCurrentParent) return
if (!inputs.canAccept(e.pointerId)) return
e.stopPropagation()
2021-06-18 15:19:10 +00:00
state.send('UNHOVERED_SHAPE', { target: id })
},
[id, isCurrentParent]
2021-05-28 14:37:23 +00:00
)
2021-06-18 13:55:36 +00:00
const handleTouchStart = useCallback((e: React.TouchEvent) => {
e.preventDefault()
}, [])
const handleTouchEnd = useCallback((e: React.TouchEvent) => {
e.preventDefault()
}, [])
2021-05-28 14:37:23 +00:00
return {
onPointerDown: handlePointerDown,
onPointerUp: handlePointerUp,
onPointerEnter: handlePointerEnter,
onPointerMove: handlePointerMove,
onPointerLeave: handlePointerLeave,
2021-06-18 13:55:36 +00:00
onTouchStart: handleTouchStart,
onTouchEnd: handleTouchEnd,
2021-05-28 14:37:23 +00:00
}
}