123456789101112131415161718192021 |
- import { useEffect, useState, useCallback } from 'react'
- const useSyncCallback = (callback:Function)=> {
- const [proxyState, setProxyState] = useState({ current: false })
- const Func = useCallback(() => {
- setProxyState({ current: true })
- }, [proxyState])
- useEffect(() => {
- if (proxyState.current === true) setProxyState({ current: false })
- }, [proxyState])
- useEffect(() => {
- proxyState.current && callback()
- })
- return Func
- }
- export default useSyncCallback
|