The data layer no longer depends on the React glue package, and business plugins no longer depend on web-react at all: - The store engine (zustand vanilla + immer + persist + dev freeze), defineStore, and shallowEqual move to @deepseek-ai/dsh-client-runtime, exported from the ./client main entry — no ./store subpath survives on either package (the web-react one is deleted, none is opened on runtime). - Store products are bare snapshot sources: useSelector leaves SnapshotStore/StoreInstance and Session; every hook is composed at the binding site in web-react's renderer (per-source cached uSES binding). The SlotRendererHost sessions face carries bare observables only. - SessionProvider becomes a standard-kit seat: an entry whose children declare a session-scope slot receives the framework component as a prop, retiring the last value import of web-react from plugin packages. UseSession and the session-area types now live in ui-slots. - web-react shrinks to the shell-only React glue (renderer, providers, uSES bridge); zustand/immer belong to runtime alone; the module-table seed and tsdown externals drop the web-react/store seat. - NODE_ENV replacement is defined once in the shared tsdown client preset (browser bundles inline the engine and lost vite's define); the 3-line process.env typecheck shim moves to runtime with the engine. - Stray tsc artifacts (.js/.d.ts/.d.ts.map beside sources under src/) swept repo-wide; they shadow real sources under vitest resolution. Verified: both aggregate typecheck programs at zero; 604 client tests green; repo-wide grep for web-react/store at zero; real-host playwright run 7/7 including persist round-trip. ci: fix test/docs
95 lines
3.8 KiB
TypeScript
95 lines
3.8 KiB
TypeScript
/**
|
|
* SessionProvider (framework-wired render prop, slot terminal design §7) plus
|
|
* the two internal channels the render machinery shares: the renderer host
|
|
* context (written once by createSlotRenderer's root) and the per-session
|
|
* binding context (written here, read by session-scope outlets). Both
|
|
* contexts are in-package machinery — they are NOT exported from the package
|
|
* index; business components see zero React contexts.
|
|
*/
|
|
import { createContext, useContext, type ReactNode } from 'react'
|
|
import type {
|
|
HostObservable, SessionCell, SlotRendererHost, SnapshotSelectorHook,
|
|
} from '@deepseek-ai/dsh-client-ui-slots'
|
|
import { bindSnapshotSelector } from './bind.ts'
|
|
|
|
/**
|
|
* A missing-provider assembly error: the shell wired the tree wrong. The slot
|
|
* error boundary rethrows this class so misassembly stays fail-loud while
|
|
* registrant errors (inject factories, entry components) are contained
|
|
* per entry.
|
|
*/
|
|
export class SlotAssemblyError extends Error {}
|
|
|
|
/** Renderer host channel: written by createSlotRenderer's root element (in-package machinery only). */
|
|
export const HostContext = createContext<SlotRendererHost | null>(null)
|
|
|
|
/**
|
|
* Read the installed renderer host; throws outside the rendered root tree
|
|
* (framework components must not render detached from the renderer).
|
|
* @returns the host surface.
|
|
*/
|
|
export function useHost(): SlotRendererHost {
|
|
const host = useContext(HostContext)
|
|
if (!host) throw new SlotAssemblyError('slot machinery rendered outside the installed renderer tree')
|
|
return host
|
|
}
|
|
|
|
/** Per-session binding channel for the subtree under SessionProvider (in-package machinery only). */
|
|
const BindingContext = createContext<SessionCell | null>(null)
|
|
|
|
/**
|
|
* Read the enclosing session cell; throws outside a SessionProvider subtree
|
|
* (session slots must not render without a session).
|
|
* @returns the enclosing cell.
|
|
*/
|
|
export function useSessionCell(): SessionCell {
|
|
const cell = useContext(BindingContext)
|
|
if (!cell) throw new SlotAssemblyError('session slot rendered outside SessionProvider')
|
|
return cell
|
|
}
|
|
|
|
/**
|
|
* Identity-stable selector hook per host observable. uSES resubscribes when
|
|
* the subscribe reference changes, so the bound hook must be created once per
|
|
* source — cached here by source identity (sources are host-owned singletons).
|
|
* @param source - host-provided observable.
|
|
* @returns the cached selector hook.
|
|
*/
|
|
export function observableHook<T>(source: HostObservable<T>): SnapshotSelectorHook<T> {
|
|
let hook = hookCache.get(source)
|
|
if (hook === undefined) {
|
|
hook = bindSnapshotSelector(source)
|
|
hookCache.set(source, hook)
|
|
}
|
|
return hook as SnapshotSelectorHook<T>
|
|
}
|
|
const hookCache = new WeakMap<object, unknown>()
|
|
|
|
/** SessionProvider surface: render-prop body plus the no-session branch. */
|
|
export interface SessionProviderProps {
|
|
/** No-session body (also covers a current id whose session cannot be resolved). */
|
|
empty?: (() => ReactNode) | undefined
|
|
/** Session body; remounted per session via key={sessionId}. */
|
|
children: (sessionId: string) => ReactNode
|
|
}
|
|
|
|
/**
|
|
* Framework-wired session area: subscribes to the host's current-session
|
|
* source (design fiat ① — selection authority lives with runtime sessions),
|
|
* resolves the session cell, and remounts the body under key={sessionId} so
|
|
* a session switch rebuilds the whole session subtree. Ids speak plain
|
|
* string at this dependency-inverted layer; branding lands on the component
|
|
* props seam (PropsRuntime).
|
|
*/
|
|
export function SessionProvider({ empty, children }: SessionProviderProps) {
|
|
const host = useHost()
|
|
const id = observableHook(host.sessions.current)((s) => s)
|
|
const cell = id === undefined ? undefined : host.sessions.cell(id)
|
|
if (id === undefined || cell === undefined) return <>{empty?.() ?? null}</>
|
|
return (
|
|
<BindingContext.Provider value={cell} key={id}>
|
|
{children(id)}
|
|
</BindingContext.Provider>
|
|
)
|
|
}
|