Files
ClawX/src/components/layout/Sidebar.tsx
T

815 lines
33 KiB
TypeScript

/**
* Sidebar Component
* Navigation sidebar with menu items.
* No longer fixed - sits inside the flex layout below the title bar.
*/
import { useCallback, useEffect, useMemo, useRef, useState } from 'react';
import { NavLink, useLocation, useNavigate } from 'react-router-dom';
import {
Network,
Bot,
Puzzle,
Clock,
Settings as SettingsIcon,
PanelLeftClose,
PanelLeft,
Plus,
Terminal,
ExternalLink,
Trash2,
Pencil,
Check,
X,
Cpu,
ImagePlus,
Moon,
ChevronRight,
ChevronsUpDown,
ChevronsDownUp,
Loader2,
} from 'lucide-react';
import { cn } from '@/lib/utils';
import { isGatewayRestarting } from '@/lib/gateway-status';
import { rendererExtensionRegistry } from '@/extensions/registry';
import { useSettingsStore } from '@/stores/settings';
import { useChatStore } from '@/stores/chat';
import { useGatewayStore } from '@/stores/gateway';
import { useAgentsStore } from '@/stores/agents';
import { groupSessionsByWorkspace } from './session-buckets';
import { shouldIncludeSessionInSidebarList } from '@/stores/chat/session-key-utils';
import { CHANNEL_NAMES } from '@shared/types/channel';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import { Badge } from '@/components/ui/badge';
import { ConfirmDialog } from '@/components/ui/confirm-dialog';
import { hostApi } from '@/lib/host-api';
import { formatSessionRelativeTime } from '@/lib/relative-time';
import { SIDEBAR_COLLAPSED_WIDTH, MAC_SIDEBAR_CHROME_HEIGHT } from '@shared/sidebar-layout';
import { useTranslation } from 'react-i18next';
import logoSvg from '@/assets/logo.svg';
import { useNewChatAction } from './use-new-chat-action';
interface NavItemProps {
to: string;
icon: React.ReactNode;
label: string;
badge?: string;
collapsed?: boolean;
onClick?: () => void;
testId?: string;
}
function NavItem({ to, icon, label, badge, collapsed, onClick, testId }: NavItemProps) {
return (
<NavLink
to={to}
onClick={onClick}
data-testid={testId}
className={({ isActive }) =>
cn(
'sidebar-nav-text flex items-center gap-2 rounded-lg px-2.5 py-1.5 transition-colors',
'hover:bg-black/5 dark:hover:bg-white/5 text-foreground/80',
isActive ? 'bg-black/5 dark:bg-white/10 text-foreground' : '',
collapsed && 'justify-center px-0',
)
}
>
<>
<div className="flex shrink-0 items-center justify-center text-current [&_svg]:size-4">{icon}</div>
{!collapsed && (
<>
<span className="flex-1 overflow-hidden text-ellipsis whitespace-nowrap">{label}</span>
{badge && (
<Badge variant="secondary" className="ml-auto shrink-0">
{badge}
</Badge>
)}
</>
)}
</>
</NavLink>
);
}
const INITIAL_NOW_MS = Date.now();
const INITIAL_WORKSPACE_SESSION_LIMIT = 5;
const WORKSPACE_SESSION_LIMIT_INCREMENT = 5;
function getWorkspaceTestIdSegment(workspacePath: string): string {
return encodeURIComponent(workspacePath.trim() || 'workspace');
}
export function getWorkspaceGroupStateKey(workspacePath: string): string {
return workspacePath;
}
export function getWorkspaceGroupTestId(workspacePath: string): string {
return `workspace-session-group-${getWorkspaceTestIdSegment(workspacePath)}`;
}
export function getWorkspaceGroupToggleTestId(workspacePath: string): string {
return `workspace-session-group-toggle-${getWorkspaceTestIdSegment(workspacePath)}`;
}
function getWorkspaceLoadMoreTestId(workspacePath: string): string {
return `workspace-session-load-more-${getWorkspaceTestIdSegment(workspacePath)}`;
}
function getAgentIdFromSessionKey(sessionKey: string): string {
if (!sessionKey.startsWith('agent:')) return 'main';
const [, agentId] = sessionKey.split(':');
return agentId || 'main';
}
export function Sidebar() {
const isMac = window.electron?.platform === 'darwin';
const sidebarCollapsed = useSettingsStore((state) => state.sidebarCollapsed);
const setSidebarCollapsed = useSettingsStore((state) => state.setSidebarCollapsed);
const sidebarWidth = useSettingsStore((state) => state.sidebarWidth);
const setSidebarWidth = useSettingsStore((state) => state.setSidebarWidth);
const devModeUnlocked = useSettingsStore((state) => state.devModeUnlocked);
const chatWorkspacePath = useSettingsStore((state) => state.chatWorkspacePath);
const [isResizing, setIsResizing] = useState(false);
const stopResizeRef = useRef<(() => void) | null>(null);
const sessions = useChatStore((s) => s.sessions);
const currentSessionKey = useChatStore((s) => s.currentSessionKey);
const sessionLabels = useChatStore((s) => s.sessionLabels);
const sessionLastActivity = useChatStore((s) => s.sessionLastActivity);
const switchSession = useChatStore((s) => s.switchSession);
const deleteSession = useChatStore((s) => s.deleteSession);
const renameSession = useChatStore((s) => s.renameSession);
const loadSessions = useChatStore((s) => s.loadSessions);
const loadHistory = useChatStore((s) => s.loadHistory);
const handleNewChat = useNewChatAction();
const gatewayStatus = useGatewayStore((s) => s.status);
const isGatewayRunning = gatewayStatus.state === 'running';
const isGatewayReady = isGatewayRunning && gatewayStatus.gatewayReady !== false;
const gatewayRestarting = isGatewayRestarting(gatewayStatus);
const gatewayRuntimeKey = `${gatewayStatus.pid ?? 'none'}:${gatewayStatus.connectedAt ?? 'none'}:${gatewayStatus.port}`;
const hasLoadedCurrentRuntimeRef = useRef(false);
useEffect(() => {
hasLoadedCurrentRuntimeRef.current = false;
}, [gatewayRuntimeKey]);
useEffect(() => {
if (!isGatewayReady) return;
let cancelled = false;
(async () => {
await loadSessions();
if (cancelled) return;
if (hasLoadedCurrentRuntimeRef.current) return;
hasLoadedCurrentRuntimeRef.current = true;
await loadHistory(false);
})();
return () => {
cancelled = true;
};
}, [gatewayRuntimeKey, isGatewayReady, loadHistory, loadSessions]);
const agents = useAgentsStore((s) => s.agents);
const fetchAgents = useAgentsStore((s) => s.fetchAgents);
useEffect(() => {
if (!isMac) return;
void hostApi.window.syncTrafficLightPosition(sidebarCollapsed);
}, [isMac, sidebarCollapsed]);
const navigate = useNavigate();
const isOnChat = useLocation().pathname === '/';
const getSessionLabel = (key: string, displayName?: string, label?: string) =>
sessionLabels[key] ?? (label?.trim() ? label : displayName ?? key);
const openControlUi = async (view?: 'dreams', label = 'OpenClaw Page') => {
try {
const result = await hostApi.gateway.controlUi(view);
if (result.success && result.url) {
await window.electron.openExternal(result.url);
} else {
console.error(`Failed to get ${label} URL:`, result.error);
}
} catch (err) {
console.error(`Error opening ${label}:`, err);
}
};
const openDevConsole = async () => {
await openControlUi(undefined, 'OpenClaw Page');
};
const { t, i18n } = useTranslation(['common', 'chat']);
const [sessionToDelete, setSessionToDelete] = useState<{ key: string; label: string } | null>(null);
const [deleteDialogOpen, setDeleteDialogOpen] = useState(false);
const [editingSessionKey, setEditingSessionKey] = useState<string | null>(null);
const [editingLabel, setEditingLabel] = useState('');
const [nowMs, setNowMs] = useState(INITIAL_NOW_MS);
const [collapsedWorkspaceGroups, setCollapsedWorkspaceGroups] = useState<Record<string, boolean>>({});
const [workspaceVisibleSessionCounts, setWorkspaceVisibleSessionCounts] = useState<Record<string, number>>({});
useEffect(() => {
const timer = window.setInterval(() => {
setNowMs(Date.now());
}, 60 * 1000);
return () => window.clearInterval(timer);
}, []);
useEffect(() => {
void fetchAgents();
}, [fetchAgents]);
useEffect(() => {
if (deleteDialogOpen || !sessionToDelete) return;
const timer = window.setTimeout(() => setSessionToDelete(null), 160);
return () => window.clearTimeout(timer);
}, [deleteDialogOpen, sessionToDelete]);
const handleStartRename = (key: string, currentLabel: string) => {
setEditingSessionKey(key);
setEditingLabel(currentLabel);
};
const handleRenameSubmit = async () => {
if (!editingSessionKey || !editingLabel.trim()) {
setEditingSessionKey(null);
return;
}
try {
await renameSession(editingSessionKey, editingLabel.trim());
} catch (err) {
console.error('Failed to rename session:', err);
}
setEditingSessionKey(null);
};
const handleRenameCancel = () => {
setEditingSessionKey(null);
};
const handleRenameBlur = (event: React.FocusEvent<HTMLDivElement>) => {
if (event.currentTarget.contains(event.relatedTarget as Node | null)) return;
void handleRenameSubmit();
};
const handleRenameKeyDown = (e: React.KeyboardEvent) => {
if (e.key === 'Enter') {
e.preventDefault();
void handleRenameSubmit();
} else if (e.key === 'Escape') {
handleRenameCancel();
}
};
const toggleWorkspaceGroup = (workspacePath: string) => {
const stateKey = getWorkspaceGroupStateKey(workspacePath);
setCollapsedWorkspaceGroups((current) => ({
...current,
[stateKey]: !(current[stateKey] ?? false),
}));
};
const loadMoreWorkspaceSessions = (workspacePath: string) => {
const stateKey = getWorkspaceGroupStateKey(workspacePath);
setWorkspaceVisibleSessionCounts((current) => ({
...current,
[stateKey]: (current[stateKey] ?? INITIAL_WORKSPACE_SESSION_LIMIT) + WORKSPACE_SESSION_LIMIT_INCREMENT,
}));
};
const stopResizing = useCallback(() => {
stopResizeRef.current?.();
stopResizeRef.current = null;
setIsResizing(false);
document.body.style.cursor = '';
document.body.style.userSelect = '';
}, []);
const handleResizePointerDown = useCallback(
(event: React.PointerEvent<HTMLDivElement>) => {
if (sidebarCollapsed) return;
event.preventDefault();
event.stopPropagation();
try {
event.currentTarget.setPointerCapture(event.pointerId);
} catch {
// Window listeners below keep dragging reliable even if capture is unavailable.
}
const onMove = (moveEvent: PointerEvent) => {
setSidebarWidth(moveEvent.clientX);
};
const onUp = () => stopResizing();
stopResizeRef.current = () => {
window.removeEventListener('pointermove', onMove);
window.removeEventListener('pointerup', onUp);
};
window.addEventListener('pointermove', onMove);
window.addEventListener('pointerup', onUp);
setIsResizing(true);
document.body.style.cursor = 'col-resize';
document.body.style.userSelect = 'none';
},
[setSidebarWidth, sidebarCollapsed, stopResizing],
);
useEffect(() => stopResizing, [stopResizing]);
const agentNameById = useMemo(
() => Object.fromEntries((agents ?? []).map((agent) => [agent.id, agent.name])),
[agents],
);
const sidebarSessions = useMemo(
() => sessions.filter((session) => shouldIncludeSessionInSidebarList(session)),
[sessions],
);
const workspaceSessionGroups = groupSessionsByWorkspace(
sidebarSessions,
sessionLastActivity,
t('chat:workspace.defaultLabel'),
chatWorkspacePath,
);
const allWorkspaceGroupsCollapsed = workspaceSessionGroups.length > 0
&& workspaceSessionGroups.every((group) => collapsedWorkspaceGroups[getWorkspaceGroupStateKey(group.workspacePath)] ?? false);
const toggleAllWorkspaceGroups = () => {
const nextCollapsed = !allWorkspaceGroupsCollapsed;
setCollapsedWorkspaceGroups((current) => {
const next = { ...current };
for (const group of workspaceSessionGroups) {
next[getWorkspaceGroupStateKey(group.workspacePath)] = nextCollapsed;
}
return next;
});
};
const hiddenRoutes = rendererExtensionRegistry.getHiddenRoutes();
const extraNavItems = rendererExtensionRegistry.getExtraNavItems();
const coreNavItems = [
{
to: '/models',
icon: <Cpu className="h-4 w-4" strokeWidth={2} />,
label: t('sidebar.models'),
testId: 'sidebar-nav-models',
},
{
to: '/agents',
icon: <Bot className="h-4 w-4" strokeWidth={2} />,
label: t('sidebar.agents'),
testId: 'sidebar-nav-agents',
},
{
to: '/channels',
icon: <Network className="h-4 w-4" strokeWidth={2} />,
label: t('sidebar.channels'),
testId: 'sidebar-nav-channels',
},
{
to: '/skills',
icon: <Puzzle className="h-4 w-4" strokeWidth={2} />,
label: t('sidebar.skills'),
testId: 'sidebar-nav-skills',
},
{
to: '/cron',
icon: <Clock className="h-4 w-4" strokeWidth={2} />,
label: t('sidebar.cronTasks'),
testId: 'sidebar-nav-cron',
},
...(devModeUnlocked
? [
{
to: '/image-generation',
icon: <ImagePlus className="h-4 w-4" strokeWidth={2} />,
label: t('common:sidebar.imageGeneration'),
testId: 'sidebar-nav-image-generation',
},
{
to: '/dreams',
icon: <Moon className="h-4 w-4" strokeWidth={2} />,
label: t('common:sidebar.openClawDreams'),
testId: 'sidebar-nav-dreams',
},
]
: []),
];
const navItems = [
...coreNavItems.filter((item) => !hiddenRoutes.has(item.to)),
...extraNavItems.map((item) => ({
to: item.to,
icon: <item.icon className="h-4 w-4" strokeWidth={2} />,
label: item.labelI18nKey ? t(item.labelI18nKey) : item.label,
testId: item.testId,
})),
];
return (
<aside
data-testid="sidebar"
className={cn(
'relative flex min-h-0 shrink-0 flex-col overflow-hidden bg-surface-sidebar',
isResizing ? 'transition-none' : 'transition-[width] duration-300',
)}
style={{ width: sidebarCollapsed ? SIDEBAR_COLLAPSED_WIDTH : sidebarWidth }}
>
{isMac && (
<div
aria-hidden="true"
data-testid="mac-sidebar-chrome"
className="drag-region shrink-0"
style={{ height: MAC_SIDEBAR_CHROME_HEIGHT }}
/>
)}
{/* Top Header Toggle */}
<div
className={cn('flex shrink-0 items-center p-2 h-8', sidebarCollapsed ? 'justify-center' : 'justify-between')}
>
{!sidebarCollapsed && (
<div className="flex items-center gap-2 px-2 overflow-hidden">
<img src={logoSvg} alt="ClawX" className="h-5 w-auto shrink-0" />
<span className="text-sm font-semibold truncate whitespace-nowrap text-foreground/90">ClawX</span>
</div>
)}
<Button
data-testid="sidebar-collapse-toggle"
variant="ghost"
size="icon"
className={cn(
'no-drag h-8 w-8 shrink-0 rounded-lg text-foreground/80',
'hover:bg-black/5 hover:text-foreground/80 dark:hover:bg-white/5',
)}
onClick={() => setSidebarCollapsed(!sidebarCollapsed)}
>
{sidebarCollapsed ? (
<PanelLeft className="h-[18px] w-[18px]" />
) : (
<PanelLeftClose className="h-[18px] w-[18px]" />
)}
</Button>
</div>
{/* Navigation */}
<nav className="flex flex-col gap-1 px-2 mt-2">
<button
type="button"
data-testid="sidebar-new-chat"
onClick={handleNewChat}
className={cn(
'sidebar-nav-text flex items-center gap-2 rounded-lg px-2.5 py-1.5 transition-colors',
'hover:bg-black/5 dark:hover:bg-white/5 text-foreground/80',
sidebarCollapsed && 'justify-center px-0',
)}
>
<div className="flex shrink-0 items-center justify-center text-current [&_svg]:size-4">
<Plus className="h-4 w-4" strokeWidth={2} />
</div>
{!sidebarCollapsed && (
<span className="flex-1 text-left overflow-hidden text-ellipsis whitespace-nowrap">
{t('sidebar.newChat')}
</span>
)}
</button>
{navItems.map((item) => (
<NavItem key={item.to} {...item} collapsed={sidebarCollapsed} />
))}
</nav>
{/* Session list — below Settings, only when expanded */}
{!sidebarCollapsed && sidebarSessions.length > 0 && (
<div className="mt-4 flex-1 overflow-y-auto overflow-x-hidden px-2 pb-2">
<div className="mb-1 flex items-center justify-between gap-2 pl-2.5">
<span className="text-tiny font-semibold uppercase tracking-[0.08em] text-muted-foreground/70">
{t('chat:sessionList.title')}
</span>
<button
type="button"
data-testid="session-list-toggle-all"
aria-label={allWorkspaceGroupsCollapsed ? t('chat:sessionList.expandAll') : t('chat:sessionList.collapseAll')}
title={allWorkspaceGroupsCollapsed ? t('chat:sessionList.expandAll') : t('chat:sessionList.collapseAll')}
onClick={toggleAllWorkspaceGroups}
className="inline-flex h-6 w-6 items-center justify-center rounded-md text-muted-foreground transition-colors hover:bg-black/5 hover:text-foreground dark:hover:bg-white/10"
>
<span aria-hidden="true" className="flex h-3.5 w-3.5 items-center justify-center">
{allWorkspaceGroupsCollapsed ? (
<ChevronsUpDown className="h-3.5 w-3.5" />
) : (
<ChevronsDownUp className="h-3.5 w-3.5" />
)}
</span>
</button>
</div>
<div className="space-y-1.5">
{workspaceSessionGroups.map((workspaceGroup) => {
const workspaceStateKey = getWorkspaceGroupStateKey(workspaceGroup.workspacePath);
const collapsed = collapsedWorkspaceGroups[workspaceStateKey] ?? false;
const visibleCount = workspaceVisibleSessionCounts[workspaceStateKey] ?? INITIAL_WORKSPACE_SESSION_LIMIT;
const visibleSessions = workspaceGroup.sessions.slice(0, visibleCount);
const hiddenCount = Math.max(0, workspaceGroup.sessions.length - visibleSessions.length);
const loadMoreCount = Math.min(WORKSPACE_SESSION_LIMIT_INCREMENT, hiddenCount);
return (
<div
key={workspaceGroup.workspacePath}
data-testid={getWorkspaceGroupTestId(workspaceGroup.workspacePath)}
className="space-y-1"
>
<button
type="button"
data-testid={getWorkspaceGroupToggleTestId(workspaceGroup.workspacePath)}
aria-expanded={!collapsed}
aria-label={t('chat:sessionList.workspaceToggle', { workspace: workspaceGroup.label })}
onClick={() => toggleWorkspaceGroup(workspaceGroup.workspacePath)}
className="flex w-full items-center gap-1.5 rounded-lg px-2.5 py-1.5 text-left text-meta font-semibold text-foreground/75 transition-colors hover:bg-black/5 hover:text-foreground dark:hover:bg-white/5"
title={workspaceGroup.label}
>
<ChevronRight
className={cn(
'h-3.5 w-3.5 shrink-0 text-muted-foreground transition-transform',
!collapsed && 'rotate-90',
)}
/>
<span className="min-w-0 flex-1 truncate">{workspaceGroup.label}</span>
<span className="shrink-0 text-2xs font-medium text-muted-foreground/60">
{workspaceGroup.sessions.length}
</span>
</button>
{!collapsed && (
<div className="space-y-0.5">
{visibleSessions.map(({ session: s, activityMs }) => {
const agentId = getAgentIdFromSessionKey(s.key);
const agentName = agentNameById[agentId] || agentId;
const isEditing = editingSessionKey === s.key;
const isCurrentSession = isOnChat && currentSessionKey === s.key;
const sessionLabel = getSessionLabel(s.key, s.displayName, s.label);
const relativeTime = formatSessionRelativeTime(activityMs, nowMs, i18n.language);
const channelType = s.channel && s.channel !== 'webchat' ? s.channel : null;
const channelName = channelType
? (CHANNEL_NAMES[channelType as keyof typeof CHANNEL_NAMES] ?? channelType)
: null;
return (
<div
key={s.key}
className={cn(
'group flex items-center rounded-lg transition-colors',
'hover:bg-black/5 focus-within:bg-black/5 dark:hover:bg-white/5 dark:focus-within:bg-white/5',
!isEditing && isCurrentSession
? 'bg-black/5 dark:bg-white/10'
: '',
)}
>
{isEditing ? (
<div className="flex w-full items-center gap-1 px-1.5 py-1" onBlur={handleRenameBlur}>
<Input
autoFocus
value={editingLabel}
onChange={(e) => setEditingLabel(e.target.value)}
onKeyDown={handleRenameKeyDown}
className="h-7 min-w-0 flex-1 text-meta"
aria-label={t('common:sidebar.renameSessionPlaceholder')}
/>
<button
type="button"
aria-label={t('common:sidebar.saveSessionRename')}
onMouseDown={(e) => e.preventDefault()}
onClick={() => void handleRenameSubmit()}
className="flex shrink-0 items-center justify-center rounded p-0.5 text-muted-foreground hover:text-foreground"
>
<Check className="h-3.5 w-3.5" />
</button>
<button
type="button"
aria-label={t('common:sidebar.cancelSessionRename')}
onMouseDown={(e) => e.preventDefault()}
onClick={handleRenameCancel}
className="flex shrink-0 items-center justify-center rounded p-0.5 text-muted-foreground hover:text-destructive"
>
<X className="h-3.5 w-3.5" />
</button>
</div>
) : (
<>
<button
data-testid={`sidebar-session-${s.key}`}
aria-current={isCurrentSession ? 'page' : undefined}
onClick={() => {
if (currentSessionKey === s.key) {
void loadHistory(false);
} else {
switchSession(s.key);
}
navigate('/');
}}
onDoubleClick={() => handleStartRename(s.key, sessionLabel)}
className={cn(
'flex-1 min-w-0 text-left px-2.5 py-1.5 text-meta',
isCurrentSession
? 'text-foreground font-medium'
: 'text-foreground/75',
)}
>
<div className="flex min-w-0 items-center gap-2">
<span className="shrink-0 rounded-full bg-black/[0.04] px-2 py-0.5 text-2xs font-medium text-foreground/70 dark:bg-white/[0.08]">
{agentName}
</span>
{channelType && channelName && (
<span
title={channelName}
aria-label={channelName}
className="shrink-0 truncate rounded-full bg-blue-500/10 px-2 py-0.5 text-2xs font-medium text-blue-700 dark:bg-blue-400/10 dark:text-blue-400"
>
{channelName}
</span>
)}
<span className="truncate">{sessionLabel}</span>
</div>
</button>
{relativeTime && (
<span
title={new Date(activityMs).toLocaleString()}
className="shrink-0 pr-2 text-2xs font-medium text-muted-foreground/55 group-hover:hidden group-focus-within:hidden"
>
{relativeTime}
</span>
)}
<div className="hidden items-center gap-0.5 pr-1.5 group-hover:flex group-focus-within:flex">
<button
aria-label={t('common:sidebar.renameSession')}
onClick={(e) => {
e.stopPropagation();
handleStartRename(s.key, sessionLabel);
}}
className="flex items-center justify-center rounded p-0.5 text-muted-foreground hover:bg-black/5 hover:text-foreground dark:hover:bg-white/10"
>
<Pencil className="h-3.5 w-3.5" />
</button>
<button
data-testid={`sidebar-session-delete-${s.key}`}
aria-label={t('common:sidebar.deleteSession')}
onClick={(e) => {
e.stopPropagation();
setSessionToDelete({
key: s.key,
label: sessionLabel,
});
setDeleteDialogOpen(true);
}}
className="flex items-center justify-center rounded p-0.5 text-muted-foreground hover:bg-destructive/10 hover:text-destructive"
>
<Trash2 className="h-3.5 w-3.5" />
</button>
</div>
</>
)}
</div>
);
})}
{hiddenCount > 0 && (
<button
type="button"
data-testid={getWorkspaceLoadMoreTestId(workspaceGroup.workspacePath)}
aria-label={t('chat:sessionList.loadMoreForWorkspace', {
count: loadMoreCount,
workspace: workspaceGroup.label,
})}
onClick={() => loadMoreWorkspaceSessions(workspaceGroup.workspacePath)}
className="ml-2 rounded-md px-2 py-1 text-tiny font-medium text-muted-foreground transition-colors hover:bg-black/5 hover:text-foreground dark:hover:bg-white/10"
>
{t('chat:sessionList.loadMore')}
</button>
)}
</div>
)}
</div>
);
})}
</div>
</div>
)}
{/* Footer */}
<div className="mt-auto flex flex-col gap-1 p-2">
<div
data-testid="sidebar-gateway-restarting"
data-state={gatewayRestarting ? 'visible' : 'hidden'}
aria-hidden={!gatewayRestarting}
className={cn(
'overflow-hidden transition-[max-height,opacity,transform] duration-200 ease-out',
gatewayRestarting ? 'max-h-12 translate-y-0 opacity-100' : 'max-h-0 translate-y-1 opacity-0',
)}
>
<div
aria-live="polite"
aria-label={t('common:gateway.restarting')}
title={t('common:gateway.restarting')}
className={cn(
'sidebar-nav-text flex items-center gap-2 rounded-lg px-2.5 py-1.5',
'border border-yellow-500/20 bg-yellow-500/10 text-yellow-700 dark:text-yellow-400',
sidebarCollapsed && 'justify-center px-0',
)}
>
<Loader2 className="h-4 w-4 shrink-0 animate-spin" />
{!sidebarCollapsed && (
<span className="flex-1 overflow-hidden text-ellipsis whitespace-nowrap">
{t('common:gateway.restarting')}
</span>
)}
</div>
</div>
<NavLink
to="/settings"
data-testid="sidebar-nav-settings"
className={({ isActive }) =>
cn(
'sidebar-nav-text flex items-center gap-2 rounded-lg px-2.5 py-1.5 transition-colors',
'hover:bg-black/5 dark:hover:bg-white/5 text-foreground/80',
isActive && 'bg-black/5 dark:bg-white/10 text-foreground',
sidebarCollapsed ? 'justify-center px-0' : '',
)
}
>
<>
<div className="flex shrink-0 items-center justify-center text-current [&_svg]:size-4">
<SettingsIcon className="h-4 w-4" strokeWidth={2} />
</div>
{!sidebarCollapsed && (
<span className="flex-1 overflow-hidden text-ellipsis whitespace-nowrap">{t('sidebar.settings')}</span>
)}
</>
</NavLink>
{devModeUnlocked && (
<Button
data-testid="sidebar-open-dev-console"
variant="ghost"
className={cn(
'sidebar-nav-text flex h-auto w-full items-center gap-2 rounded-lg px-2.5 py-1.5 transition-colors',
'hover:bg-black/5 dark:hover:bg-white/5 text-foreground/80',
sidebarCollapsed ? 'justify-center px-0' : 'justify-start',
)}
onClick={openDevConsole}
>
<div className="flex shrink-0 items-center justify-center text-current [&_svg]:size-4">
<Terminal className="h-4 w-4" strokeWidth={2} />
</div>
{!sidebarCollapsed && (
<>
<span className="flex-1 text-left overflow-hidden text-ellipsis whitespace-nowrap">
{t('common:sidebar.openClawPage')}
</span>
<ExternalLink className="ml-auto h-3 w-3 shrink-0 opacity-50 text-current" />
</>
)}
</Button>
)}
</div>
{!sidebarCollapsed && (
<div
data-testid="sidebar-resize-handle"
role="separator"
aria-orientation="vertical"
aria-valuemin={220}
aria-valuemax={420}
aria-valuenow={sidebarWidth}
title="Drag to resize sidebar"
onPointerDown={handleResizePointerDown}
className="no-drag group absolute inset-y-0 right-0 z-20 w-2 translate-x-1/2 cursor-col-resize select-none"
>
<span
aria-hidden
className="pointer-events-none absolute inset-y-0 left-1/2 w-px -translate-x-1/2 bg-transparent transition-colors group-hover:bg-primary/40"
/>
</div>
)}
<ConfirmDialog
open={deleteDialogOpen}
title={t('common:actions.confirm')}
message={t('common:sidebar.deleteSessionConfirm', { label: sessionToDelete?.label ?? '' })}
confirmLabel={t('common:actions.delete')}
cancelLabel={t('common:actions.cancel')}
variant="destructive"
onConfirm={async () => {
const targetSession = sessionToDelete;
if (!targetSession) return;
await deleteSession(targetSession.key);
if (currentSessionKey === targetSession.key) navigate('/');
setDeleteDialogOpen(false);
}}
onCancel={() => setDeleteDialogOpen(false)}
/>
</aside>
);
}