import React, { useRef, useEffect } from 'react'; import { animate, motion, useMotionValue } from 'motion/react'; import { Header } from './Header'; import { Sidebar } from './Sidebar'; import { SidebarTopBar } from './SidebarTopBar'; import { TitlebarLeftControls } from './TitlebarLeftControls'; import { ProjectContextPanel } from './RightSidebarTabs'; import { ContextPanel } from './ContextPanel'; import { ContextPanelRail } from './ContextPanelRail'; import { ErrorBoundary } from '../ui/ErrorBoundary'; import { CommandPalette } from '../ui/CommandPalette'; import { HelpDialog } from '../ui/HelpDialog'; import { OpenCodeStatusDialog } from '../ui/OpenCodeStatusDialog'; import { SessionSidebar } from '@/components/session/SessionSidebar'; import { SessionDialogs } from '@/components/session/SessionDialogs'; import { ScheduledTasksDialog } from '@/components/session/ScheduledTasksDialog'; import { ArchiveView } from '@/components/views/ArchiveView'; import { WorktreesView } from '@/components/views/WorktreesView'; import { DiffWorkerProvider } from '@/contexts/DiffWorkerProvider'; import { MultiRunLauncher } from '@/components/multirun'; import { TerminalView } from '@/components/views/TerminalView'; import { DrawerProvider } from '@/contexts/DrawerContext'; import { useUIStore } from '@/stores/useUIStore'; import { useSessionUIStore } from '@/sync/session-ui-store'; import { useUpdatePolling } from '@/hooks/useUpdatePolling'; import { useDeviceInfo } from '@/lib/device'; import { cn } from '@/lib/utils'; import { lazyWithChunkRecovery } from '@/lib/chunkLoadRecovery'; import { ChatView } from '@/components/views/ChatView'; import { DiffView } from '@/components/views/DiffView'; import { FilesView } from '@/components/views/FilesView'; import { GitView } from '@/components/views/GitView'; import { PlanView } from '@/components/views/PlanView'; // Keep TerminalView eager: the bottom dock reserves its height immediately, so // suspending here leaves a large blank panel on slower machines. // Other heavy views stay on-demand to reduce initial bundle parse time. const DiagramView = lazyWithChunkRecovery(() => import('@/components/views/DiagramView').then(m => ({ default: m.DiagramView }))); const SettingsView = lazyWithChunkRecovery(() => import('@/components/views/SettingsView').then(m => ({ default: m.SettingsView }))); const SettingsWindow = lazyWithChunkRecovery(() => import('@/components/views/SettingsWindow').then(m => ({ default: m.SettingsWindow }))); export const MainLayout: React.FC = () => { const isSidebarOpen = useUIStore((state) => state.isSidebarOpen); const activeMainTab = useUIStore((state) => state.activeMainTab); const setIsMobile = useUIStore((state) => state.setIsMobile); const isSessionSwitcherOpen = useUIStore((state) => state.isSessionSwitcherOpen); const isSettingsDialogOpen = useUIStore((state) => state.isSettingsDialogOpen); const setSettingsDialogOpen = useUIStore((state) => state.setSettingsDialogOpen); const isMultiRunLauncherOpen = useUIStore((state) => state.isMultiRunLauncherOpen); const setMultiRunLauncherOpen = useUIStore((state) => state.setMultiRunLauncherOpen); const multiRunLauncherPrefillPrompt = useUIStore((state) => state.multiRunLauncherPrefillPrompt); const isScheduledTasksPageOpen = useUIStore((state) => state.isScheduledTasksDialogOpen); const isArchivePageOpen = useUIStore((state) => state.isArchivePageOpen); const worktreesPageProjectId = useUIStore((state) => state.worktreesPageProjectId); // Any full-page surface replacing the chat area. While open, the chat and // secondary views are fully hidden (not just covered) so none of their // floating chrome bleeds through, and selecting a session / draft / main // tab anywhere closes the surface. const isSurfacePageOpen = isScheduledTasksPageOpen || isArchivePageOpen || Boolean(worktreesPageProjectId) || isMultiRunLauncherOpen; React.useEffect(() => { const closeSurfacePages = () => useUIStore.getState().closeMainSurfaces(); const unsubscribeSession = useSessionUIStore.subscribe((state, prev) => { const sessionSelected = Boolean(state.currentSessionId) && state.currentSessionId !== prev.currentSessionId; // Draft identity change covers re-opening a draft while one is // already open (the boolean alone never transitions then). const draftOpened = Boolean(state.newSessionDraft?.open) && state.newSessionDraft !== prev.newSessionDraft; if (sessionSelected || draftOpened) closeSurfacePages(); }); const unsubscribeTab = useUIStore.subscribe((state, prev) => { if (state.activeMainTab !== prev.activeMainTab) closeSurfacePages(); }); return () => { unsubscribeSession(); unsubscribeTab(); }; }, []); const { isMobile } = useDeviceInfo(); const mobilePanelsResetRef = React.useRef(false); // Mobile drawer state const [mobileLeftDrawerOpen, setMobileLeftDrawerOpen] = React.useState(false); const [mobileRightSidebarOpen, setMobileRightSidebarOpen] = React.useState(false); const [mobileLeftDrawerVisible, setMobileLeftDrawerVisible] = React.useState(false); const [mobileRightDrawerVisible, setMobileRightDrawerVisible] = React.useState(false); const setMobileSessionPanelOpen = React.useCallback((open: boolean) => { setMobileLeftDrawerOpen(open); useUIStore.getState().setSessionSwitcherOpen(open); }, []); const initialDrawerWidthRef = React.useRef(typeof window === 'undefined' ? 0 : window.innerWidth); // Left drawer motion value const leftDrawerX = useMotionValue(-initialDrawerWidthRef.current); const leftDrawerWidth = useRef(0); // Right drawer motion value const rightDrawerX = useMotionValue(initialDrawerWidthRef.current); const rightDrawerWidth = useRef(0); // Compute drawer width useEffect(() => { if (isMobile) { leftDrawerWidth.current = window.innerWidth; rightDrawerWidth.current = window.innerWidth; } }, [isMobile]); // Sync left drawer state and motion value useEffect(() => { if (!isMobile) { setMobileLeftDrawerVisible(false); return; } if (mobileLeftDrawerOpen) { setMobileLeftDrawerVisible(true); } animate(leftDrawerX, mobileLeftDrawerOpen ? 0 : -leftDrawerWidth.current, { type: 'spring', stiffness: 400, damping: 35, mass: 0.8, }); }, [mobileLeftDrawerOpen, isMobile, leftDrawerX]); // Sync right drawer state and motion value useEffect(() => { if (!isMobile) { setMobileRightDrawerVisible(false); return; } if (mobileRightSidebarOpen) { setMobileRightDrawerVisible(true); } animate(rightDrawerX, mobileRightSidebarOpen ? 0 : rightDrawerWidth.current, { type: 'spring', stiffness: 400, damping: 35, mass: 0.8, }); }, [isMobile, mobileRightSidebarOpen, rightDrawerX]); useEffect(() => { if (!isMobile) return; return leftDrawerX.on('change', (value) => { const width = leftDrawerWidth.current || initialDrawerWidthRef.current; const visible = mobileLeftDrawerOpen || value > -width + 0.5; setMobileLeftDrawerVisible((previous) => previous === visible ? previous : visible); }); }, [isMobile, leftDrawerX, mobileLeftDrawerOpen]); useEffect(() => { if (!isMobile) return; return rightDrawerX.on('change', (value) => { const width = rightDrawerWidth.current || initialDrawerWidthRef.current; const visible = mobileRightSidebarOpen || value < width - 0.5; setMobileRightDrawerVisible((previous) => previous === visible ? previous : visible); }); }, [isMobile, mobileRightSidebarOpen, rightDrawerX]); // Sync session switcher close events to left drawer. useEffect(() => { if (isMobile && !isSessionSwitcherOpen && mobileLeftDrawerOpen) { setMobileSessionPanelOpen(false); } }, [isSessionSwitcherOpen, isMobile, mobileLeftDrawerOpen, setMobileSessionPanelOpen]); useEffect(() => { if (!isMobile) { mobilePanelsResetRef.current = false; return; } if (mobilePanelsResetRef.current) { return; } mobilePanelsResetRef.current = true; setMobileSessionPanelOpen(false); setMobileRightSidebarOpen(false); }, [isMobile, setMobileSessionPanelOpen]); useEffect(() => { if (!isMobile || activeMainTab !== 'chat' || mobileLeftDrawerOpen || mobileRightSidebarOpen || isSettingsDialogOpen) { return; } let disposed = false; let timeoutId: number | undefined; const scheduleDraftOpen = (delayMs: number) => { timeoutId = window.setTimeout(() => { if (disposed) { return; } const sessionState = useSessionUIStore.getState(); const uiState = useUIStore.getState(); if (uiState.activeMainTab !== 'chat' || uiState.isSettingsDialogOpen || sessionState.currentSessionId || sessionState.newSessionDraft?.open) { return; } if (sessionState.isLoading) { scheduleDraftOpen(250); return; } sessionState.openNewSessionDraft({ automatic: true }); }, delayMs); }; scheduleDraftOpen(500); return () => { disposed = true; if (timeoutId !== undefined) { window.clearTimeout(timeoutId); } }; }, [activeMainTab, isMobile, isSettingsDialogOpen, mobileLeftDrawerOpen, mobileRightSidebarOpen]); // Ensure mobile drawers are closed when opening full-screen settings useEffect(() => { if (!isMobile || !isSettingsDialogOpen) { return; } setMobileSessionPanelOpen(false); setMobileRightSidebarOpen(false); }, [isMobile, isSettingsDialogOpen, setMobileSessionPanelOpen]); useUpdatePolling(); React.useEffect(() => { const previous = useUIStore.getState().isMobile; if (previous !== isMobile) { setIsMobile(isMobile); } }, [isMobile, setIsMobile]); const handleToggleMobileRightDrawer = React.useCallback(() => { if (mobileLeftDrawerOpen) { setMobileSessionPanelOpen(false); } setMobileRightSidebarOpen(!mobileRightSidebarOpen); }, [mobileLeftDrawerOpen, mobileRightSidebarOpen, setMobileSessionPanelOpen]); const secondaryView = React.useMemo(() => { // Desktop surfaces live in the context panel; the only full-view // overlays left there are the terminal (promoted by project actions) // and the diagram viewer. Mobile keeps the full tab set. if (!isMobile && activeMainTab !== 'terminal' && activeMainTab !== 'diagram') { return null; } switch (activeMainTab) { case 'plan': return ; case 'git': return ; case 'diff': return ; case 'terminal': return ; case 'files': return ; case 'context': return ; case 'diagram': return ; default: return null; } }, [activeMainTab, isMobile, mobileRightSidebarOpen]); const isChatActive = activeMainTab === 'chat'; return (
{isMobile ? ( { const nextOpen = !mobileLeftDrawerOpen; if (mobileRightSidebarOpen) { setMobileRightSidebarOpen(false); } setMobileSessionPanelOpen(nextOpen); }, toggleRightDrawer: handleToggleMobileRightDrawer, leftDrawerX, rightDrawerX, leftDrawerWidth, rightDrawerWidth, setMobileLeftDrawerOpen: setMobileSessionPanelOpen, setRightSidebarOpen: setMobileRightSidebarOpen, }}> {/* Mobile: header + drawer mode */} {!isSettingsDialogOpen &&
{ const nextOpen = !mobileLeftDrawerOpen; if (mobileRightSidebarOpen) { setMobileRightSidebarOpen(false); } setMobileSessionPanelOpen(nextOpen); }} onToggleRightDrawer={() => { handleToggleMobileRightDrawer(); }} leftDrawerOpen={mobileLeftDrawerOpen} rightDrawerOpen={mobileRightSidebarOpen} />} {/* Main content area (fixed) */}
{secondaryView && (
{secondaryView}
)} {isMultiRunLauncherOpen && (
setMultiRunLauncherOpen(false)} onCancel={() => setMultiRunLauncherOpen(false)} />
)} {/* Always mount SessionSidebar on mobile to match desktop behavior. Conditional mount (mobileLeftDrawerVisible && ...) caused a data-loading cascade on every drawer open: paginated sessions fetch, worktree discovery, repo status, PR status, and 10+ memo recomputations. On Android PWA this manifested as a >10s delay before the drawer became interactive (issue #1695). Visibility is controlled by the leftDrawerX transform (off-screen when closed). The invisible class matters when fully hidden: leftDrawerWidth is not recomputed on resize/rotation, so a closed drawer translated by the old width could otherwise peek into the viewport; it also keeps the off-screen sidebar out of the tab order and skips painting it. */} {mobileRightDrawerVisible && ( )}
{/* Mobile settings: full screen */} {isSettingsDialogOpen && (
setSettingsDialogOpen(false)} />
)} ) : ( <> {/* Persistent top-left controls (toggle + project actions) that stay put while the sidebar/header animate beneath them. */} {/* Desktop: full-height Sidebar beside [Header above (chat | RightSidebar)] */}
} >
{secondaryView && (
{secondaryView}
)} {isMultiRunLauncherOpen && (
{/* isWindowed: the app Header already shows the surface title, so skip the launcher's own title bar. */} setMultiRunLauncherOpen(false)} onCancel={() => setMultiRunLauncherOpen(false)} />
)}
{/* Desktop settings: windowed dialog with blur */} )}
); };