Skip to content

Instantly share code, notes, and snippets.

@christophemarois
Created December 3, 2024 16:10
Show Gist options
  • Save christophemarois/e3d08d1ca3999fe078154c151b947ae7 to your computer and use it in GitHub Desktop.
Save christophemarois/e3d08d1ca3999fe078154c151b947ae7 to your computer and use it in GitHub Desktop.
createTypedContext
/** 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