-
-
Save hunghg255/fd8328ad910e47b4f4d27cd79ffbb549 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Dispatch, SetStateAction, useCallback, useState } from "react"; | |
| /** | |
| * Returns a stateful value, its previous value, and a function to update it. | |
| */ | |
| export function useStateWithPrev<S>( | |
| initialState: S | (() => S), | |
| initialPrevState: S | (() => S) | |
| ): [prevState: S, state: S, setState: Dispatch<SetStateAction<S>>]; | |
| // convenience overload when second argument is omitted | |
| /** | |
| * Returns a stateful value, its previous value, and a function to update it. | |
| */ | |
| export function useStateWithPrev<S>( | |
| initialState: S | (() => S) | |
| ): [prevState: S | void, state: S, setState: Dispatch<SetStateAction<S>>]; | |
| // convenience overload when the first two arguments are omitted | |
| /** | |
| * Returns a stateful value, its previous value, and a function to update it. | |
| */ | |
| export function useStateWithPrev<S = undefined>(): [ | |
| prevState: S | void, | |
| state: S | void, | |
| setState: Dispatch<SetStateAction<S>> | |
| ]; | |
| /** | |
| * Returns a stateful value, its previous value, and a function to update it. | |
| */ | |
| export function useStateWithPrev<S>( | |
| initialState?: S | (() => S) | void, | |
| initialPrevState?: S | (() => S) | void | |
| ): [ | |
| prevState: S | void, | |
| state: S | void, | |
| setState: Dispatch<SetStateAction<S>> | |
| ] { | |
| let [[prevState, state], setStateInner] = useState<[S | void, S | void]>( | |
| () => { | |
| let prevState = | |
| typeof initialPrevState === "function" | |
| ? // @ts-expect-error | |
| initialPrevState() | |
| : initialPrevState; | |
| let state = | |
| typeof initialState === "function" | |
| ? // @ts-expect-error | |
| initialState() | |
| : initialState; | |
| return [prevState, state]; | |
| } | |
| ); | |
| let setState: Dispatch<SetStateAction<S>> = useCallback((updater) => { | |
| setStateInner(([, state]) => { | |
| let value; | |
| if (typeof updater === "function") { | |
| // @ts-expect-error | |
| value = updater(state); | |
| } else { | |
| value = updater; | |
| } | |
| return [state, value]; | |
| }); | |
| }, []); | |
| return [prevState, state, setState]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment