forked from Zakaria/hermes-agent
56 lines
2.0 KiB
TypeScript
56 lines
2.0 KiB
TypeScript
import { atom, computed } from 'nanostores'
|
|
|
|
import type { OverlayState } from './interfaces.js'
|
|
|
|
const buildOverlayState = (): OverlayState => ({
|
|
agents: false,
|
|
agentsInitialHistoryIndex: 0,
|
|
approval: null,
|
|
clarify: null,
|
|
confirm: null,
|
|
modelPicker: false,
|
|
pager: null,
|
|
pluginsHub: false,
|
|
secret: null,
|
|
sessions: false,
|
|
skillsHub: false,
|
|
sudo: null
|
|
})
|
|
|
|
export const $overlayState = atom<OverlayState>(buildOverlayState())
|
|
|
|
export const $isBlocked = computed(
|
|
$overlayState,
|
|
({ agents, approval, clarify, confirm, modelPicker, pager, pluginsHub, secret, sessions, skillsHub, sudo }) =>
|
|
Boolean(
|
|
agents || approval || clarify || confirm || modelPicker || pager || pluginsHub || secret || sessions || skillsHub || sudo
|
|
)
|
|
)
|
|
|
|
export const getOverlayState = () => $overlayState.get()
|
|
|
|
export const patchOverlayState = (next: Partial<OverlayState> | ((state: OverlayState) => OverlayState)) =>
|
|
$overlayState.set(typeof next === 'function' ? next($overlayState.get()) : { ...$overlayState.get(), ...next })
|
|
|
|
/** Full reset — used by session/turn teardown and tests. */
|
|
export const resetOverlayState = () => $overlayState.set(buildOverlayState())
|
|
|
|
/**
|
|
* Soft reset: drop FLOW-scoped overlays (approval / clarify / confirm / sudo
|
|
* / secret / pager) but PRESERVE user-toggled ones — agents dashboard, model
|
|
* picker, skills hub, sessions overlay. Those are opened deliberately and
|
|
* shouldn't vanish when a turn ends. Called from turnController.idle() on
|
|
* every turn completion / interrupt; the old "reset everything" behaviour
|
|
* silently closed /agents the moment delegation finished.
|
|
*/
|
|
export const resetFlowOverlays = () =>
|
|
$overlayState.set({
|
|
...buildOverlayState(),
|
|
agents: $overlayState.get().agents,
|
|
agentsInitialHistoryIndex: $overlayState.get().agentsInitialHistoryIndex,
|
|
modelPicker: $overlayState.get().modelPicker,
|
|
pluginsHub: $overlayState.get().pluginsHub,
|
|
sessions: $overlayState.get().sessions,
|
|
skillsHub: $overlayState.get().skillsHub
|
|
})
|