import { useCallback, useEffect, useState } from 'react' import { Button } from '@/components/ui/button' import { Tip } from '@/components/ui/tooltip' import { deleteSession, listAllProfileSessions, setSessionArchived } from '@/hermes' import { useI18n } from '@/i18n' import { sessionTitle } from '@/lib/chat-runtime' import { triggerHaptic } from '@/lib/haptics' import { Archive, ArchiveOff, FolderOpen, Loader2, Trash2 } from '@/lib/icons' import { notify, notifyError } from '@/store/notifications' import { applyConfiguredDefaultProjectDir, ensureDefaultWorkspaceCwd, setSessions } from '@/store/session' import type { SessionInfo } from '@/types/hermes' import { EmptyState, ListRow, LoadingState, SectionHeading, SettingsContent } from './primitives' import { useDeepLinkHighlight } from './use-deep-link-highlight' const ARCHIVED_FETCH_LIMIT = 200 function workspaceLabel(cwd: null | string | undefined): string { const path = cwd?.trim() if (!path) { return '' } return ( path .replace(/[/\\]+$/, '') .split(/[/\\]/) .filter(Boolean) .pop() ?? path ) } export function SessionsSettings() { const { t } = useI18n() const s = t.settings.sessions const [sessions, setLocalSessions] = useState([]) const [loading, setLoading] = useState(true) const [busyId, setBusyId] = useState(null) const load = useCallback(async () => { setLoading(true) try { const result = await listAllProfileSessions(ARCHIVED_FETCH_LIMIT, 0, 'only') setLocalSessions(result.sessions) } catch (err) { notifyError(err, s.failedLoad) } finally { setLoading(false) } }, [s.failedLoad]) useEffect(() => { void load() }, [load]) const unarchive = useCallback(async (session: SessionInfo) => { setBusyId(session.id) try { await setSessionArchived(session.id, false, session.profile) setLocalSessions(prev => prev.filter(s => s.id !== session.id)) // Surface it again in the sidebar without waiting for a full refresh. setSessions(prev => [{ ...session, archived: false }, ...prev.filter(s => s.id !== session.id)]) triggerHaptic('selection') notify({ durationMs: 2_000, kind: 'success', message: s.restored }) } catch (err) { notifyError(err, s.unarchiveFailed) } finally { setBusyId(null) } }, [s]) const remove = useCallback(async (session: SessionInfo) => { if (!window.confirm(s.deleteConfirm(sessionTitle(session)))) { return } setBusyId(session.id) try { await deleteSession(session.id, session.profile) setLocalSessions(prev => prev.filter(s => s.id !== session.id)) triggerHaptic('warning') } catch (err) { notifyError(err, s.deleteFailed) } finally { setBusyId(null) } }, [s]) useDeepLinkHighlight({ elementId: id => `archived-session-${id}`, param: 'session', ready: id => !loading && sessions.some(session => session.id === id) }) if (loading) { return } return (

{s.archivedIntro}

{sessions.length === 0 ? ( ) : (
{sessions.map(session => { const label = workspaceLabel(session.cwd) const busy = busyId === session.id return (
} description={session.preview || undefined} hint={label ? `${label} ยท ${s.messages(session.message_count)}` : s.messages(session.message_count)} title={sessionTitle(session)} />
) })} )}
) } // Lets the user pin the default cwd for new sessions. Without this, packaged // builds on Windows used to spawn sessions in the install dir (`win-unpacked` // / Program Files), which buried any files Hermes wrote there. function DefaultProjectDirSetting() { const { t } = useI18n() const s = t.settings.sessions const [dir, setDir] = useState(null) const [fallback, setFallback] = useState('') const [busy, setBusy] = useState(false) useEffect(() => { // The bridge is only present when running inside Electron. In a Vitest // / Storybook / non-Electron context `window.hermesDesktop` is // undefined, so guard the WHOLE call chain rather than chaining // `?.settings.getDefaultProjectDir().then(...)` (the latter would // short-circuit to `undefined.then(...)` and throw at runtime). const settings = window.hermesDesktop?.settings if (!settings) { return } let alive = true void settings.getDefaultProjectDir().then(result => { if (!alive) { return } setDir(result.dir) setFallback(result.defaultLabel) applyConfiguredDefaultProjectDir(result.dir) }) return () => { alive = false } }, []) const choose = useCallback(async () => { const settings = window.hermesDesktop?.settings if (!settings) { return } setBusy(true) try { const picked = await settings.pickDefaultProjectDir() if (picked.canceled || !picked.dir) { return } const result = await settings.setDefaultProjectDir(picked.dir) setDir(result.dir) applyConfiguredDefaultProjectDir(result.dir) notify({ durationMs: 4_000, kind: 'success', message: s.defaultDirUpdated }) } catch (err) { notifyError(err, s.updateDirFailed) } finally { setBusy(false) } }, [s]) const clear = useCallback(async () => { const settings = window.hermesDesktop?.settings if (!settings) { return } setBusy(true) try { await settings.setDefaultProjectDir(null) setDir(null) applyConfiguredDefaultProjectDir(null) await ensureDefaultWorkspaceCwd() } catch (err) { notifyError(err, s.clearDirFailed) } finally { setBusy(false) } }, [s]) return (

{s.defaultDirDesc}

{dir && ( )}
} description={dir || s.defaultsTo(fallback || '~')} title={dir ? dir : s.notSet} /> ) }