UNPKG

@ark-ui/solid

Version:

A collection of unstyled, accessible UI components for Solid, utilizing state machines for seamless interaction.

27 lines (24 loc) 1.01 kB
import { hasProp, isFunction } from '@zag-js/utils'; import { createContext as createContext$1, useContext } from 'solid-js'; // src/utils/create-context.ts function getErrorMessage(hook, provider) { return `${hook} returned \`undefined\`. Seems you forgot to wrap component within ${provider}`; } function createContext(options = {}) { const { strict = true, hookName = "useContext", providerName = "Provider", errorMessage, defaultValue } = options; const Context = createContext$1(defaultValue); function useContext$1() { const context = useContext(Context); if (!context && strict) { const error = new Error(errorMessage ?? getErrorMessage(hookName, providerName)); error.name = "ContextError"; if (hasProp(Error, "captureStackTrace") && isFunction(Error.captureStackTrace)) { Error.captureStackTrace(error, useContext$1); } throw error; } return context; } return [Context.Provider, useContext$1, Context]; } export { createContext };