File size: 1,342 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
"use client"
import {
createContext as createReactContext,
useContext as useReactContext,
} from "react"
export interface CreateContextOptions<T> {
strict?: boolean | undefined
hookName?: string | undefined
providerName?: string | undefined
errorMessage?: string | undefined
name?: string | undefined
defaultValue?: T | undefined
}
export type CreateContextReturn<T> = [
React.Provider<T>,
() => T,
React.Context<T>,
]
function getErrorMessage(hook: string, provider: string) {
return `${hook} returned \`undefined\`. Seems you forgot to wrap component within ${provider}`
}
export function createContext<T>(options: CreateContextOptions<T> = {}) {
const {
name,
strict = true,
hookName = "useContext",
providerName = "Provider",
errorMessage,
defaultValue,
} = options
const Context = createReactContext<T | undefined>(defaultValue)
Context.displayName = name
function useContext() {
const context = useReactContext(Context)
if (!context && strict) {
const error = new Error(
errorMessage ?? getErrorMessage(hookName, providerName),
)
error.name = "ContextError"
Error.captureStackTrace?.(error, useContext)
throw error
}
return context
}
return [Context.Provider, useContext, Context] as CreateContextReturn<T>
}
|