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(false) const animationFrameIdRef = useRef(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, } }