Files
react/components/use-current-state/use-current-state.ts

25 lines
777 B
TypeScript

import { Dispatch, MutableRefObject, SetStateAction, useEffect, useRef, useState } from 'react'
export type CurrentStateType<S> = [S, Dispatch<SetStateAction<S>>, MutableRefObject<S>]
const useCurrentState = <S>(initialState: S | (() => S)): CurrentStateType<S> => {
const [state, setState] = useState<S>(() => {
return typeof initialState === 'function' ? (initialState as () => S)() : initialState
})
const ref = useRef<S>(initialState as S)
useEffect(() => {
ref.current = state
}, [state])
const setValue = (val: SetStateAction<S>) => {
const result = typeof val === 'function' ? (val as (prevState: S) => S)(ref.current) : val
ref.current = result
setState(result)
}
return [state, setValue, ref]
}
export default useCurrentState