Created
December 3, 2024 16:10
-
-
Save christophemarois/e3d08d1ca3999fe078154c151b947ae7 to your computer and use it in GitHub Desktop.
createTypedContext
This file contains 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
/** Typed context creation helper | |
* @example | |
* export const [useLevel, LevelProvider] = createTypedContext<{ level: number }>('LevelContext') | |
*/ | |
export function createTypedContext<T>(name: string) { | |
const Context = createContext<T | null>(null) | |
function useEnsuredContext() { | |
const ctx = useContext(Context) | |
if (ctx === null) { | |
throw new Error(`Missing parent ${name} context provider`) | |
} | |
return ctx | |
} | |
return [useEnsuredContext, Context.Provider] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment