Buckets:
| import { createContext, createMemo, Show, useContext, type ParentProps, type Accessor } from "solid-js" | |
| export function createSimpleContext<T, Props extends Record<string, any>>( | |
| input: { | |
| name: string | |
| init: ((input: Props) => T) | (() => T) | |
| } & (T extends { ready: unknown } ? { gate: boolean } : { gate?: boolean }), | |
| ) { | |
| const ctx = createContext<T>() | |
| return { | |
| provider: (props: ParentProps<Props>) => { | |
| const init = input.init(props) | |
| const gate = input.gate ?? true | |
| if (!gate) { | |
| return <ctx.Provider value={init}>{props.children}</ctx.Provider> | |
| } | |
| // Access init.ready inside the memo to make it reactive for getter properties | |
| const isReady = createMemo(() => { | |
| // @ts-expect-error | |
| const ready = init.ready as Accessor<boolean> | boolean | undefined | |
| return ready === undefined || (typeof ready === "function" ? ready() : ready) | |
| }) | |
| return ( | |
| <Show when={isReady()}> | |
| <ctx.Provider value={init}>{props.children}</ctx.Provider> | |
| </Show> | |
| ) | |
| }, | |
| use() { | |
| const value = useContext(ctx) | |
| if (!value) throw new Error(`${input.name} context must be used within a context provider`) | |
| return value | |
| }, | |
| } | |
| } | |
Xet Storage Details
- Size:
- 1.26 kB
- Xet hash:
- 87f52118ab1fa069dcc14e91d2f9f0677b7b5c3dad9b744f5794f836a63592db
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.