Files
openchamber/packages/ui/src/sync/viewport-store.ts
T
Bohdan Triapitsyn 2031e3b4a8 Decouple bundled UI from runtime API and add remote instance tooling (#1228)
Add a packaged-client runtime boundary so the shared UI can talk to local,
desktop, remote, and VS Code runtimes through the right transport instead of
assuming one same-origin web server.

Centralize OpenChamber-owned API access behind RuntimeAPIs, runtimeFetch, and
runtime URL helpers, while keeping official OpenCode traffic on the SDK path.
Support runtime switching, remote host selection, desktop client credentials,
and headless connection links for pairing packaged clients with remote
OpenChamber servers.

Harden the new auth model by moving long-lived client tokens out of browser
URLs, introducing short-lived scoped URL tokens for browser-owned transports,
restricting URL-token access to explicit readable/realtime routes, and making
client-token management session-scoped or self-scoped as appropriate.

Update browser-owned assets and preview proxy flows to work with the split
runtime model, including authenticated project icons, preview token propagation,
CSP-safe preview bridge injection, and preview proxy auth that survives
short-lived URL-token expiry.

Tighten Electron security boundaries for packaged clients by gating privileged
preload state to trusted origins and requiring explicit confirmation before
connect deep-links import or switch remote runtimes.

Also refresh agent guidance and project skills so future runtime/API, auth,
preview, UI, CLI, settings, locale, and drag-to-reorder work follows the new
architecture.
2026-06-02 00:43:05 +03:00

70 lines
2.1 KiB
TypeScript

/**
* Viewport Store — per-session scroll anchors, streaming state, memory.
* Extracted from session-ui-store for subscription isolation.
*/
import { create } from "zustand"
import { getRuntimeKey } from "@/lib/runtime-switch"
export type SessionMemoryState = {
viewportAnchor: number
/** Last known scrollbar pixel state — saved on every scroll event. */
scrollPosition?: {
scrollTop: number
scrollHeight: number
clientHeight: number
}
isStreaming: boolean
streamStartTime?: number
lastAccessedAt: number
backgroundMessageCount: number
loadedTurnCount?: number
hasMoreAbove?: boolean
hasMoreTurnsAbove?: boolean
historyLoading?: boolean
historyComplete?: boolean
historyLimit?: number
totalAvailableMessages?: number
streamingCooldownUntil?: number
isZombie?: boolean
lastUserMessageAt?: number
}
export type ViewportState = {
sessionMemoryState: Map<string, SessionMemoryState>
isSyncing: boolean
updateViewportAnchor: (sessionId: string, anchor: number, scrollPosition?: SessionMemoryState['scrollPosition']) => void
}
export const viewportSessionKey = (sessionId: string, runtimeKey = getRuntimeKey()): string => `${runtimeKey}\n${sessionId}`
export const getViewportSessionMemory = (sessionId: string): SessionMemoryState | undefined => {
const state = useViewportStore.getState()
return state.sessionMemoryState.get(viewportSessionKey(sessionId)) ?? state.sessionMemoryState.get(sessionId)
}
export const useViewportStore = create<ViewportState>()((set) => ({
sessionMemoryState: new Map(),
isSyncing: false,
updateViewportAnchor: (sessionId, anchor, scrollPosition) =>
set((s) => {
const map = new Map(s.sessionMemoryState)
const key = viewportSessionKey(sessionId)
const existing = map.get(key) ?? map.get(sessionId) ?? {
viewportAnchor: 0,
isStreaming: false,
lastAccessedAt: Date.now(),
backgroundMessageCount: 0,
}
map.set(key, {
...existing,
viewportAnchor: anchor,
...(scrollPosition ? { scrollPosition } : {}),
lastAccessedAt: Date.now(),
})
return { sessionMemoryState: map }
}),
}))