@solid-primitives/context

Primitives simplifying the creation and use of SolidJS Context Providers.
Installation
npm install @solid-primitives/context
yarn add @solid-primitives/context
createContextProvider
Create the Context Provider component and useContext function with types inferred from the factory function.
Import
import { createContextProvider } from "@solid-primitives/context";
Creating the Context Provider
Given a factory function, createContextProvider creates a SolidJS Context and returns both a Provider component for setting the context, and a useContext helper for getting the context. The factory function gets called when the provider component gets executed; all props of the provider component get passed into the factory function, and what it returns will be available in the contexts for all the underlying components. The types of the provider props and context are inferred from the factory function.
const [CounterProvider, useCounter] = createContextProvider((props: { initial: number }) => {
const [count, setCount] = createSignal(props.initial);
const increment = () => setCount(count() + 1);
return { count, increment };
});
Set Context using the Provider
The provider component takes props declared as arguments of the factory functions.
<CounterProvider initial={1}>
<App />
</CounterProvider>
Use context in children components
The context will by default be T | undefined.
const ctx = useCounter();
ctx?.count();
Providing context fallback
The createContextProvider primitive takes a second, optional argument for providing context defaults for when the context wouldn't be provided higher in the component tree.
Providing a fallback also removes undefined from T | undefined return type of the useContext function.
const [CounterProvider, useCounter] = createContextProvider(
() => {
const [count, setCount] = createSignal(0);
const increment = () => setCount(count() + 1);
return { count, increment };
},
{
count: () => 0,
increment: () => {}
}
);
const { count } = useCounter();
Definite context types without defaults:
const useDefiniteCounter = () => useCounter()!;
Type Definition
function createContextProvider<T, P extends ContextProviderProps>(
factoryFn: (props: P) => T,
defaults: T
): [provider: ContextProvider<P>, useContext: () => T];
function createContextProvider<T, P extends ContextProviderProps>(
factoryFn: (props: P) => T
): [provider: ContextProvider<P>, useContext: () => T | undefined];
type ContextProviderProps = {
children?: JSX.Element;
} & Record<string, unknown>;
type ContextProvider<T extends ContextProviderProps> = (
props: { children: JSX.Element } & T
) => JSX.Element;
Demo
https://codesandbox.io/s/solid-primitives-context-demo-oqyie2?file=/index.tsx
Changelog
See CHANGELOG.md