File size: 853 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
import { useCallback, useEffect, useRef } from 'react'
import { ReactEditor } from '../plugin/react-editor'
import { useSlateStatic } from './use-slate-static'
export function useTrackUserInput() {
const editor = useSlateStatic()
const receivedUserInput = useRef<boolean>(false)
const animationFrameIdRef = useRef<number>(0)
const onUserInput = useCallback(() => {
if (receivedUserInput.current) {
return
}
receivedUserInput.current = true
const window = ReactEditor.getWindow(editor)
window.cancelAnimationFrame(animationFrameIdRef.current)
animationFrameIdRef.current = window.requestAnimationFrame(() => {
receivedUserInput.current = false
})
}, [editor])
useEffect(() => () => cancelAnimationFrame(animationFrameIdRef.current), [])
return {
receivedUserInput,
onUserInput,
}
}
|