2025-12-07 19:32:53 +02:00
|
|
|
import React, { useEffect } from 'react';
|
|
|
|
|
import {
|
|
|
|
|
Tooltip,
|
|
|
|
|
TooltipContent,
|
|
|
|
|
TooltipTrigger,
|
|
|
|
|
} from '@/components/ui/tooltip';
|
2025-12-15 14:07:18 +02:00
|
|
|
|
2026-01-25 15:52:02 +02:00
|
|
|
import { RiArrowLeftSLine, RiChat4Line, RiCodeLine, RiCommandLine, RiFileTextLine, RiFolder6Line, RiGitBranchLine, RiLayoutLeftLine, RiPlayListAddLine, RiQuestionLine, RiSettings3Line, RiTerminalBoxLine, type RemixiconComponentType } from '@remixicon/react';
|
2025-12-07 19:32:53 +02:00
|
|
|
import { useUIStore, type MainTab } from '@/stores/useUIStore';
|
2025-12-20 01:04:32 +02:00
|
|
|
import { useUpdateStore } from '@/stores/useUpdateStore';
|
2025-12-07 19:32:53 +02:00
|
|
|
import { useConfigStore } from '@/stores/useConfigStore';
|
|
|
|
|
import { useSessionStore } from '@/stores/useSessionStore';
|
2026-01-25 15:52:02 +02:00
|
|
|
import { useDirectoryStore } from '@/stores/useDirectoryStore';
|
|
|
|
|
import { useRuntimeAPIs } from '@/hooks/useRuntimeAPIs';
|
2025-12-07 19:32:53 +02:00
|
|
|
import { ContextUsageDisplay } from '@/components/ui/ContextUsageDisplay';
|
|
|
|
|
import { useDeviceInfo } from '@/lib/device';
|
2026-01-03 01:18:57 +01:00
|
|
|
import { cn, getModifierLabel, hasModifier } from '@/lib/utils';
|
2025-12-07 19:32:53 +02:00
|
|
|
import { useDiffFileCount } from '@/components/views/DiffView';
|
2026-01-08 23:14:29 +02:00
|
|
|
import { McpDropdown } from '@/components/mcp/McpDropdown';
|
2025-12-07 19:32:53 +02:00
|
|
|
|
2026-01-25 15:52:02 +02:00
|
|
|
const normalize = (value: string): string => {
|
|
|
|
|
if (!value) return '';
|
|
|
|
|
const replaced = value.replace(/\\/g, '/');
|
|
|
|
|
return replaced === '/' ? '/' : replaced.replace(/\/+$/, '');
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const joinPath = (base: string, segment: string): string => {
|
|
|
|
|
const normalizedBase = normalize(base);
|
|
|
|
|
const cleanSegment = segment.replace(/\\/g, '/').replace(/^\/+/, '').replace(/\/+$/, '');
|
|
|
|
|
if (!normalizedBase || normalizedBase === '/') {
|
|
|
|
|
return `/${cleanSegment}`;
|
|
|
|
|
}
|
|
|
|
|
return `${normalizedBase}/${cleanSegment}`;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const buildRepoPlansDirectory = (directory: string): string => {
|
|
|
|
|
return joinPath(joinPath(directory, '.opencode'), 'plans');
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const buildHomePlansDirectory = (): string => {
|
|
|
|
|
return '~/.opencode/plans';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const resolveTilde = (path: string, homeDir: string | null): string => {
|
|
|
|
|
const trimmed = path.trim();
|
|
|
|
|
if (!trimmed.startsWith('~')) return trimmed;
|
|
|
|
|
if (trimmed === '~') return homeDir || trimmed;
|
|
|
|
|
if (trimmed.startsWith('~/') || trimmed.startsWith('~\\')) {
|
|
|
|
|
return homeDir ? `${homeDir}${trimmed.slice(1)}` : trimmed;
|
|
|
|
|
}
|
|
|
|
|
return trimmed;
|
|
|
|
|
};
|
|
|
|
|
|
2025-12-07 19:32:53 +02:00
|
|
|
interface TabConfig {
|
|
|
|
|
id: MainTab;
|
|
|
|
|
label: string;
|
|
|
|
|
icon: RemixiconComponentType;
|
|
|
|
|
badge?: number;
|
2025-12-28 14:03:20 +02:00
|
|
|
showDot?: boolean;
|
2025-12-07 19:32:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const Header: React.FC = () => {
|
|
|
|
|
const setSessionSwitcherOpen = useUIStore((state) => state.setSessionSwitcherOpen);
|
|
|
|
|
const toggleSidebar = useUIStore((state) => state.toggleSidebar);
|
2025-12-17 23:12:59 +02:00
|
|
|
const setSettingsDialogOpen = useUIStore((state) => state.setSettingsDialogOpen);
|
2025-12-19 16:48:25 +02:00
|
|
|
const toggleCommandPalette = useUIStore((state) => state.toggleCommandPalette);
|
|
|
|
|
const toggleHelpDialog = useUIStore((state) => state.toggleHelpDialog);
|
2025-12-07 19:32:53 +02:00
|
|
|
const activeMainTab = useUIStore((state) => state.activeMainTab);
|
|
|
|
|
const setActiveMainTab = useUIStore((state) => state.setActiveMainTab);
|
|
|
|
|
|
|
|
|
|
const { getCurrentModel } = useConfigStore();
|
2026-01-25 15:52:02 +02:00
|
|
|
const runtimeApis = useRuntimeAPIs();
|
2025-12-07 19:32:53 +02:00
|
|
|
|
|
|
|
|
const getContextUsage = useSessionStore((state) => state.getContextUsage);
|
2026-01-25 15:52:02 +02:00
|
|
|
const currentSessionId = useSessionStore((state) => state.currentSessionId);
|
|
|
|
|
const sessions = useSessionStore((state) => state.sessions);
|
|
|
|
|
const homeDirectory = useDirectoryStore((state) => state.homeDirectory);
|
2025-12-07 19:32:53 +02:00
|
|
|
const { isMobile } = useDeviceInfo();
|
|
|
|
|
const diffFileCount = useDiffFileCount();
|
2025-12-20 01:04:32 +02:00
|
|
|
const updateAvailable = useUpdateStore((state) => state.available);
|
2025-12-07 19:32:53 +02:00
|
|
|
|
|
|
|
|
const headerRef = React.useRef<HTMLElement | null>(null);
|
|
|
|
|
|
|
|
|
|
const [isDesktopApp, setIsDesktopApp] = React.useState<boolean>(() => {
|
|
|
|
|
if (typeof window === 'undefined') {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return typeof (window as typeof window & { opencodeDesktop?: unknown }).opencodeDesktop !== 'undefined';
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const isMacPlatform = React.useMemo(() => {
|
|
|
|
|
if (typeof navigator === 'undefined') {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return /Macintosh|Mac OS X/.test(navigator.userAgent || '');
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
if (typeof window === 'undefined') {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
const detected = typeof (window as typeof window & { opencodeDesktop?: unknown }).opencodeDesktop !== 'undefined';
|
|
|
|
|
setIsDesktopApp(detected);
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
const currentModel = getCurrentModel();
|
|
|
|
|
const limit = currentModel && typeof currentModel.limit === 'object' && currentModel.limit !== null
|
|
|
|
|
? (currentModel.limit as Record<string, unknown>)
|
|
|
|
|
: null;
|
|
|
|
|
const contextLimit = (limit && typeof limit.context === 'number' ? limit.context : 0);
|
|
|
|
|
const outputLimit = (limit && typeof limit.output === 'number' ? limit.output : 0);
|
|
|
|
|
const contextUsage = getContextUsage(contextLimit, outputLimit);
|
|
|
|
|
const isSessionSwitcherOpen = useUIStore((state) => state.isSessionSwitcherOpen);
|
|
|
|
|
|
2026-01-25 15:52:02 +02:00
|
|
|
const currentSession = React.useMemo(() => {
|
|
|
|
|
if (!currentSessionId) return null;
|
|
|
|
|
return sessions.find((s) => s.id === currentSessionId) ?? null;
|
|
|
|
|
}, [currentSessionId, sessions]);
|
|
|
|
|
|
|
|
|
|
const sessionDirectory = React.useMemo(() => {
|
|
|
|
|
const raw = typeof currentSession?.directory === 'string' ? currentSession.directory : '';
|
|
|
|
|
return normalize(raw || '');
|
|
|
|
|
}, [currentSession?.directory]);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const [planTabAvailable, setPlanTabAvailable] = React.useState(false);
|
|
|
|
|
const showPlanTab = planTabAvailable;
|
|
|
|
|
const lastPlanSessionKeyRef = React.useRef<string>('');
|
|
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
|
let cancelled = false;
|
|
|
|
|
|
|
|
|
|
const checkExists = async (directory: string, fileName: string): Promise<boolean> => {
|
|
|
|
|
if (!directory || !fileName) return false;
|
|
|
|
|
if (!runtimeApis.files?.listDirectory) return false;
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
const listing = await runtimeApis.files.listDirectory(directory);
|
|
|
|
|
const entries = Array.isArray(listing?.entries) ? listing.entries : [];
|
|
|
|
|
return entries.some((entry) => entry?.name === fileName && !entry?.isDirectory);
|
|
|
|
|
} catch {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const runOnce = async () => {
|
|
|
|
|
if (cancelled) return;
|
|
|
|
|
|
|
|
|
|
if (!currentSession?.slug || !currentSession?.time?.created || !sessionDirectory) {
|
|
|
|
|
setPlanTabAvailable(false);
|
|
|
|
|
if (useUIStore.getState().activeMainTab === 'plan') {
|
|
|
|
|
useUIStore.getState().setActiveMainTab('chat');
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const fileName = `${currentSession.time.created}-${currentSession.slug}.md`;
|
|
|
|
|
const repoDir = buildRepoPlansDirectory(sessionDirectory);
|
|
|
|
|
const homeDir = resolveTilde(buildHomePlansDirectory(), homeDirectory || null);
|
|
|
|
|
|
|
|
|
|
const [repoExists, homeExists] = await Promise.all([
|
|
|
|
|
checkExists(repoDir, fileName),
|
|
|
|
|
checkExists(homeDir, fileName),
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
if (cancelled) return;
|
|
|
|
|
|
|
|
|
|
const available = repoExists || homeExists;
|
|
|
|
|
setPlanTabAvailable(available);
|
|
|
|
|
if (!available && useUIStore.getState().activeMainTab === 'plan') {
|
|
|
|
|
useUIStore.getState().setActiveMainTab('chat');
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const sessionKey = `${currentSessionId || 'none'}:${sessionDirectory || 'none'}:${currentSession?.time?.created || 0}:${currentSession?.slug || 'none'}`;
|
|
|
|
|
if (lastPlanSessionKeyRef.current !== sessionKey) {
|
|
|
|
|
lastPlanSessionKeyRef.current = sessionKey;
|
|
|
|
|
setPlanTabAvailable(false);
|
|
|
|
|
}
|
|
|
|
|
void runOnce();
|
|
|
|
|
|
|
|
|
|
const interval = window.setInterval(() => {
|
|
|
|
|
void runOnce();
|
|
|
|
|
}, 3000);
|
|
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
|
cancelled = true;
|
|
|
|
|
window.clearInterval(interval);
|
|
|
|
|
};
|
|
|
|
|
}, [
|
|
|
|
|
sessionDirectory,
|
|
|
|
|
currentSession?.slug,
|
|
|
|
|
currentSession?.time?.created,
|
|
|
|
|
currentSessionId,
|
|
|
|
|
homeDirectory,
|
|
|
|
|
runtimeApis.files,
|
|
|
|
|
]);
|
|
|
|
|
|
2025-12-18 11:20:37 +02:00
|
|
|
const blurActiveElement = React.useCallback(() => {
|
|
|
|
|
if (typeof document === 'undefined') {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const active = document.activeElement as HTMLElement | null;
|
|
|
|
|
if (!active) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const tagName = active.tagName;
|
|
|
|
|
const isInput = tagName === 'INPUT' || tagName === 'TEXTAREA' || tagName === 'SELECT';
|
|
|
|
|
|
|
|
|
|
if (isInput || active.isContentEditable) {
|
|
|
|
|
active.blur();
|
|
|
|
|
}
|
|
|
|
|
}, []);
|
|
|
|
|
|
2025-12-07 19:32:53 +02:00
|
|
|
const handleOpenSessionSwitcher = React.useCallback(() => {
|
|
|
|
|
if (isMobile) {
|
2025-12-18 11:20:37 +02:00
|
|
|
blurActiveElement();
|
2025-12-07 19:32:53 +02:00
|
|
|
setSessionSwitcherOpen(!isSessionSwitcherOpen);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
toggleSidebar();
|
2025-12-18 11:20:37 +02:00
|
|
|
}, [blurActiveElement, isMobile, isSessionSwitcherOpen, setSessionSwitcherOpen, toggleSidebar]);
|
2025-12-07 19:32:53 +02:00
|
|
|
|
2025-12-17 23:12:59 +02:00
|
|
|
const handleOpenSettings = React.useCallback(() => {
|
2025-12-18 11:20:37 +02:00
|
|
|
if (isMobile) {
|
|
|
|
|
blurActiveElement();
|
|
|
|
|
}
|
2025-12-17 23:12:59 +02:00
|
|
|
setSessionSwitcherOpen(false);
|
|
|
|
|
setSettingsDialogOpen(true);
|
2025-12-18 11:20:37 +02:00
|
|
|
}, [blurActiveElement, isMobile, setSessionSwitcherOpen, setSettingsDialogOpen]);
|
2025-12-17 23:12:59 +02:00
|
|
|
|
2026-01-22 12:21:19 +02:00
|
|
|
const headerIconButtonClass = 'app-region-no-drag inline-flex h-9 w-9 items-center justify-center gap-2 p-2 rounded-md typography-ui-label font-medium text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary disabled:pointer-events-none disabled:opacity-50 hover:text-foreground hover:bg-secondary/50 transition-colors';
|
2025-12-07 19:32:53 +02:00
|
|
|
|
|
|
|
|
const desktopPaddingClass = React.useMemo(() => {
|
|
|
|
|
if (isDesktopApp && isMacPlatform) {
|
2026-01-22 14:12:19 +02:00
|
|
|
// Always reserve space for Mac traffic lights since header is always on top
|
|
|
|
|
return 'pl-[5.75rem]';
|
2025-12-07 19:32:53 +02:00
|
|
|
}
|
|
|
|
|
return 'pl-3';
|
2026-01-22 14:12:19 +02:00
|
|
|
}, [isDesktopApp, isMacPlatform]);
|
2025-12-07 19:32:53 +02:00
|
|
|
|
|
|
|
|
const updateHeaderHeight = React.useCallback(() => {
|
|
|
|
|
if (typeof document === 'undefined') {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const height = headerRef.current?.getBoundingClientRect().height;
|
|
|
|
|
if (height) {
|
|
|
|
|
document.documentElement.style.setProperty('--oc-header-height', `${height}px`);
|
|
|
|
|
}
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
if (typeof window === 'undefined') {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
updateHeaderHeight();
|
|
|
|
|
|
|
|
|
|
const node = headerRef.current;
|
|
|
|
|
if (!node || typeof ResizeObserver === 'undefined') {
|
|
|
|
|
return () => {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const observer = new ResizeObserver(() => {
|
|
|
|
|
updateHeaderHeight();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
observer.observe(node);
|
|
|
|
|
window.addEventListener('resize', updateHeaderHeight);
|
|
|
|
|
window.addEventListener('orientationchange', updateHeaderHeight);
|
|
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
|
observer.disconnect();
|
|
|
|
|
window.removeEventListener('resize', updateHeaderHeight);
|
|
|
|
|
window.removeEventListener('orientationchange', updateHeaderHeight);
|
|
|
|
|
};
|
|
|
|
|
}, [updateHeaderHeight]);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
updateHeaderHeight();
|
2025-12-15 14:07:18 +02:00
|
|
|
}, [updateHeaderHeight, isMobile]);
|
2025-12-07 19:32:53 +02:00
|
|
|
|
|
|
|
|
const handleDragStart = React.useCallback(async (e: React.MouseEvent) => {
|
|
|
|
|
if ((e.target as HTMLElement).closest('button, a, input, select, textarea')) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (e.button !== 0) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (isDesktopApp) {
|
|
|
|
|
try {
|
|
|
|
|
const { getCurrentWindow } = await import('@tauri-apps/api/window');
|
|
|
|
|
const window = getCurrentWindow();
|
|
|
|
|
await window.startDragging();
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error('Failed to start window dragging:', error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, [isDesktopApp]);
|
|
|
|
|
|
|
|
|
|
const handleActiveTabDragStart = React.useCallback(async (e: React.MouseEvent) => {
|
|
|
|
|
if (e.button !== 0) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (isDesktopApp) {
|
|
|
|
|
try {
|
|
|
|
|
const { getCurrentWindow } = await import('@tauri-apps/api/window');
|
|
|
|
|
const window = getCurrentWindow();
|
|
|
|
|
await window.startDragging();
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error('Failed to start window dragging:', error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, [isDesktopApp]);
|
|
|
|
|
|
2026-01-25 15:52:02 +02:00
|
|
|
const tabs: TabConfig[] = React.useMemo(() => {
|
|
|
|
|
const base: TabConfig[] = [
|
|
|
|
|
{ id: 'chat', label: 'Chat', icon: RiChat4Line },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
if (showPlanTab) {
|
|
|
|
|
base.push({ id: 'plan', label: 'Plan', icon: RiFileTextLine });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
base.push(
|
|
|
|
|
{
|
|
|
|
|
id: 'diff',
|
|
|
|
|
label: 'Diff',
|
|
|
|
|
icon: RiCodeLine,
|
|
|
|
|
badge: !isMobile && diffFileCount > 0 ? diffFileCount : undefined,
|
|
|
|
|
},
|
|
|
|
|
{ id: 'files', label: 'Files', icon: RiFolder6Line },
|
|
|
|
|
{ id: 'terminal', label: 'Terminal', icon: RiTerminalBoxLine },
|
|
|
|
|
{
|
|
|
|
|
id: 'git',
|
|
|
|
|
label: 'Git',
|
|
|
|
|
icon: RiGitBranchLine,
|
|
|
|
|
showDot: isMobile && diffFileCount > 0,
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return base;
|
|
|
|
|
}, [diffFileCount, isMobile, showPlanTab]);
|
2025-12-07 19:32:53 +02:00
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
const handleKeyDown = (e: KeyboardEvent) => {
|
2026-01-03 01:18:57 +01:00
|
|
|
if (hasModifier(e) && !e.shiftKey && !e.altKey) {
|
2025-12-07 19:32:53 +02:00
|
|
|
const num = parseInt(e.key, 10);
|
|
|
|
|
if (num >= 1 && num <= tabs.length) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
setActiveMainTab(tabs[num - 1].id);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
window.addEventListener('keydown', handleKeyDown);
|
|
|
|
|
return () => window.removeEventListener('keydown', handleKeyDown);
|
|
|
|
|
}, [tabs, setActiveMainTab]);
|
|
|
|
|
|
2026-01-22 12:21:19 +02:00
|
|
|
const renderTab = (tab: TabConfig) => {
|
2025-12-07 19:32:53 +02:00
|
|
|
const isActive = activeMainTab === tab.id;
|
|
|
|
|
const Icon = tab.icon;
|
|
|
|
|
const isChatTab = tab.id === 'chat';
|
|
|
|
|
|
|
|
|
|
return (
|
2026-01-22 12:21:19 +02:00
|
|
|
<button
|
|
|
|
|
key={tab.id}
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={() => setActiveMainTab(tab.id)}
|
|
|
|
|
onMouseDown={isActive ? handleActiveTabDragStart : undefined}
|
|
|
|
|
className={cn(
|
|
|
|
|
'relative flex h-8 items-center gap-2 px-3 rounded-md typography-ui-label font-medium transition-colors',
|
|
|
|
|
isActive ? 'app-region-drag bg-secondary text-foreground shadow-sm' : 'app-region-no-drag text-muted-foreground hover:bg-secondary/50 hover:text-foreground',
|
|
|
|
|
'focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary',
|
|
|
|
|
isChatTab && !isMobile && 'min-w-[100px] justify-center'
|
|
|
|
|
)}
|
|
|
|
|
aria-label={tab.label}
|
|
|
|
|
aria-selected={isActive}
|
|
|
|
|
role="tab"
|
|
|
|
|
>
|
|
|
|
|
{isMobile ? (
|
|
|
|
|
<Icon size={20} />
|
|
|
|
|
) : (
|
|
|
|
|
<>
|
|
|
|
|
<Icon size={16} />
|
|
|
|
|
<span className="header-tab-label">{tab.label}</span>
|
|
|
|
|
</>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
{isChatTab && !isMobile && contextUsage && contextUsage.totalTokens > 0 && (
|
|
|
|
|
<span className="ml-1">
|
|
|
|
|
<ContextUsageDisplay
|
|
|
|
|
totalTokens={contextUsage.totalTokens}
|
|
|
|
|
percentage={contextUsage.percentage}
|
|
|
|
|
contextLimit={contextUsage.contextLimit}
|
|
|
|
|
outputLimit={contextUsage.outputLimit ?? 0}
|
|
|
|
|
size="compact"
|
|
|
|
|
/>
|
|
|
|
|
</span>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
{tab.badge !== undefined && tab.badge > 0 && (
|
|
|
|
|
<span className="ml-1 flex h-4 min-w-4 items-center justify-center rounded-full bg-primary/10 px-1 text-[10px] font-bold text-primary">
|
|
|
|
|
{tab.badge}
|
|
|
|
|
</span>
|
2025-12-07 19:32:53 +02:00
|
|
|
)}
|
2026-01-22 12:21:19 +02:00
|
|
|
</button>
|
2025-12-07 19:32:53 +02:00
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const renderDesktop = () => (
|
|
|
|
|
<div
|
|
|
|
|
onMouseDown={handleDragStart}
|
|
|
|
|
className={cn(
|
|
|
|
|
'app-region-drag relative flex h-12 select-none items-center',
|
|
|
|
|
desktopPaddingClass
|
|
|
|
|
)}
|
|
|
|
|
role="tablist"
|
|
|
|
|
aria-label="Main navigation"
|
|
|
|
|
>
|
2026-01-22 14:12:19 +02:00
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={handleOpenSessionSwitcher}
|
|
|
|
|
aria-label="Open sessions"
|
|
|
|
|
className={`${headerIconButtonClass} mr-2`}
|
|
|
|
|
>
|
|
|
|
|
<RiLayoutLeftLine className="h-5 w-5" />
|
|
|
|
|
</button>
|
2025-12-07 19:32:53 +02:00
|
|
|
|
2026-01-22 12:21:19 +02:00
|
|
|
<div className="flex items-center gap-1 p-1 bg-background/50 rounded-lg">
|
|
|
|
|
{tabs.map((tab) => renderTab(tab))}
|
2025-12-07 19:32:53 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="flex-1" />
|
2025-12-19 16:48:25 +02:00
|
|
|
|
2026-01-08 23:14:29 +02:00
|
|
|
<div className="flex items-center gap-1 pr-3">
|
|
|
|
|
<Tooltip delayDuration={500}>
|
|
|
|
|
<TooltipTrigger asChild>
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={toggleCommandPalette}
|
|
|
|
|
aria-label="Open command palette"
|
|
|
|
|
className={headerIconButtonClass}
|
|
|
|
|
>
|
|
|
|
|
<RiCommandLine className="h-5 w-5" />
|
|
|
|
|
</button>
|
|
|
|
|
</TooltipTrigger>
|
|
|
|
|
<TooltipContent>
|
|
|
|
|
<p>Command Palette ({getModifierLabel()}+K)</p>
|
|
|
|
|
</TooltipContent>
|
|
|
|
|
</Tooltip>
|
|
|
|
|
|
|
|
|
|
<McpDropdown headerIconButtonClass={headerIconButtonClass} />
|
|
|
|
|
|
2025-12-19 16:48:25 +02:00
|
|
|
<Tooltip delayDuration={500}>
|
|
|
|
|
<TooltipTrigger asChild>
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={toggleHelpDialog}
|
|
|
|
|
aria-label="Keyboard shortcuts"
|
|
|
|
|
className={headerIconButtonClass}
|
|
|
|
|
>
|
|
|
|
|
<RiQuestionLine className="h-5 w-5" />
|
|
|
|
|
</button>
|
|
|
|
|
</TooltipTrigger>
|
|
|
|
|
<TooltipContent>
|
2026-01-03 02:27:10 +02:00
|
|
|
<p>Keyboard Shortcuts ({getModifierLabel()}+.)</p>
|
2025-12-19 16:48:25 +02:00
|
|
|
</TooltipContent>
|
|
|
|
|
</Tooltip>
|
|
|
|
|
</div>
|
2025-12-07 19:32:53 +02:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const renderMobile = () => (
|
2025-12-15 14:07:18 +02:00
|
|
|
<div className="app-region-drag relative flex items-center justify-between gap-2 px-3 py-2 select-none">
|
|
|
|
|
<div className="flex items-center gap-2">
|
2026-01-22 14:12:19 +02:00
|
|
|
{/* Show back button when sessions sidebar is open, otherwise show sessions toggle */}
|
|
|
|
|
{isSessionSwitcherOpen ? (
|
|
|
|
|
<button
|
|
|
|
|
onClick={() => setSessionSwitcherOpen(false)}
|
|
|
|
|
className="app-region-no-drag h-9 w-9 p-2 text-muted-foreground hover:text-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary rounded-md active:bg-secondary"
|
|
|
|
|
aria-label="Back"
|
|
|
|
|
>
|
|
|
|
|
<RiArrowLeftSLine className="h-5 w-5" />
|
|
|
|
|
</button>
|
|
|
|
|
) : (
|
|
|
|
|
<button
|
|
|
|
|
onClick={handleOpenSessionSwitcher}
|
|
|
|
|
className="app-region-no-drag h-9 w-9 p-2 text-muted-foreground hover:text-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary rounded-md active:bg-secondary"
|
|
|
|
|
aria-label="Open sessions"
|
|
|
|
|
>
|
|
|
|
|
<RiPlayListAddLine className="h-5 w-5" />
|
|
|
|
|
</button>
|
|
|
|
|
)}
|
|
|
|
|
{!isSessionSwitcherOpen && contextUsage && contextUsage.totalTokens > 0 && activeMainTab === 'chat' && (
|
2025-12-15 14:07:18 +02:00
|
|
|
<ContextUsageDisplay
|
|
|
|
|
totalTokens={contextUsage.totalTokens}
|
|
|
|
|
percentage={contextUsage.percentage}
|
|
|
|
|
contextLimit={contextUsage.contextLimit}
|
|
|
|
|
outputLimit={contextUsage.outputLimit ?? 0}
|
|
|
|
|
size="compact"
|
|
|
|
|
isMobile={true}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
2026-01-22 14:12:19 +02:00
|
|
|
{isSessionSwitcherOpen && (
|
|
|
|
|
<span className="typography-ui-label font-semibold text-foreground">Sessions</span>
|
|
|
|
|
)}
|
2025-12-07 19:32:53 +02:00
|
|
|
</div>
|
|
|
|
|
|
2026-01-22 14:12:19 +02:00
|
|
|
{/* Hide tabs and right-side buttons when sessions sidebar is open */}
|
|
|
|
|
{!isSessionSwitcherOpen && (
|
|
|
|
|
<div className="app-region-no-drag flex items-center gap-1">
|
|
|
|
|
<div className="flex items-center gap-0.5" role="tablist" aria-label="Main navigation">
|
|
|
|
|
{tabs.map((tab) => {
|
|
|
|
|
const isActive = activeMainTab === tab.id;
|
|
|
|
|
const Icon = tab.icon;
|
|
|
|
|
return (
|
|
|
|
|
<Tooltip key={tab.id} delayDuration={500}>
|
|
|
|
|
<TooltipTrigger asChild>
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={() => {
|
|
|
|
|
if (isMobile) {
|
|
|
|
|
blurActiveElement();
|
|
|
|
|
}
|
|
|
|
|
setActiveMainTab(tab.id);
|
|
|
|
|
}}
|
|
|
|
|
aria-label={tab.label}
|
|
|
|
|
aria-selected={isActive}
|
|
|
|
|
role="tab"
|
|
|
|
|
className={cn(
|
|
|
|
|
headerIconButtonClass,
|
|
|
|
|
'relative',
|
|
|
|
|
isActive && 'text-foreground bg-secondary'
|
|
|
|
|
)}
|
|
|
|
|
>
|
|
|
|
|
<Icon className="h-5 w-5" />
|
|
|
|
|
{tab.badge !== undefined && tab.badge > 0 && (
|
|
|
|
|
<span className="absolute -top-1 -right-1 text-[10px] font-semibold text-primary">
|
|
|
|
|
{tab.badge}
|
|
|
|
|
</span>
|
|
|
|
|
)}
|
|
|
|
|
{tab.showDot && (
|
|
|
|
|
<span
|
|
|
|
|
className="absolute top-1.5 right-1.5 h-2 w-2 rounded-full bg-primary"
|
|
|
|
|
aria-label="Changes available"
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
</button>
|
|
|
|
|
</TooltipTrigger>
|
|
|
|
|
<TooltipContent>
|
|
|
|
|
<p>{tab.label}</p>
|
|
|
|
|
</TooltipContent>
|
|
|
|
|
</Tooltip>
|
|
|
|
|
);
|
|
|
|
|
})}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<McpDropdown headerIconButtonClass={headerIconButtonClass} />
|
|
|
|
|
|
|
|
|
|
<Tooltip delayDuration={500}>
|
|
|
|
|
<TooltipTrigger asChild>
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={handleOpenSettings}
|
|
|
|
|
aria-label="Open settings"
|
|
|
|
|
className={cn(headerIconButtonClass, 'relative')}
|
|
|
|
|
>
|
|
|
|
|
<RiSettings3Line className="h-5 w-5" />
|
|
|
|
|
{updateAvailable && (
|
|
|
|
|
<span
|
|
|
|
|
className="absolute top-1.5 right-1.5 h-2 w-2 rounded-full bg-primary"
|
|
|
|
|
aria-label="Update available"
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
</button>
|
|
|
|
|
</TooltipTrigger>
|
|
|
|
|
<TooltipContent>
|
|
|
|
|
<p>{updateAvailable ? 'Settings (Update available)' : 'Settings'}</p>
|
|
|
|
|
</TooltipContent>
|
|
|
|
|
</Tooltip>
|
2025-12-07 19:32:53 +02:00
|
|
|
</div>
|
2026-01-22 14:12:19 +02:00
|
|
|
)}
|
2025-12-07 19:32:53 +02:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const headerClassName = cn(
|
2026-01-22 12:21:19 +02:00
|
|
|
'header-safe-area border-b border-border/50 relative z-10',
|
2025-12-07 19:32:53 +02:00
|
|
|
isDesktopApp ? 'bg-background' : 'bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/80'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<header
|
|
|
|
|
ref={headerRef}
|
|
|
|
|
className={headerClassName}
|
2026-01-22 12:21:19 +02:00
|
|
|
style={{ ['--padding-scale' as string]: '1' } as React.CSSProperties}
|
2025-12-07 19:32:53 +02:00
|
|
|
>
|
|
|
|
|
{isMobile ? renderMobile() : renderDesktop()}
|
|
|
|
|
</header>
|
|
|
|
|
);
|
|
|
|
|
};
|