mirror of
https://github.com/siteboon/claudecodeui.git
synced 2026-06-12 09:02:08 +08:00
269 lines
8.8 KiB
TypeScript
269 lines
8.8 KiB
TypeScript
import { useCallback, useEffect } from 'react';
|
|
import { useNavigate, useParams } from 'react-router-dom';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
import Sidebar from '../sidebar/view/Sidebar';
|
|
import MainContent from '../main-content/view/MainContent';
|
|
import CommandPalette from '../command-palette/CommandPalette';
|
|
import { useWebSocket } from '../../contexts/WebSocketContext';
|
|
import { PaletteOpsProvider, usePaletteOpsRegister } from '../../contexts/PaletteOpsContext';
|
|
import { useDeviceSettings } from '../../hooks/useDeviceSettings';
|
|
import { useSessionProtection } from '../../hooks/useSessionProtection';
|
|
import { useProjectsState } from '../../hooks/useProjectsState';
|
|
import { api } from '../../utils/api';
|
|
|
|
type RunningSessionApiItem = {
|
|
sessionId?: unknown;
|
|
startedAt?: unknown;
|
|
statusText?: unknown;
|
|
canInterrupt?: unknown;
|
|
};
|
|
|
|
type RunningSessionsApiPayload = {
|
|
data?: {
|
|
sessions?: RunningSessionApiItem[];
|
|
};
|
|
};
|
|
|
|
const parseStartedAt = (value: unknown): number | undefined => {
|
|
if (typeof value === 'number' && Number.isFinite(value) && value > 0) {
|
|
return value;
|
|
}
|
|
|
|
if (typeof value !== 'string') {
|
|
return undefined;
|
|
}
|
|
|
|
const parsed = Date.parse(value);
|
|
return Number.isFinite(parsed) ? parsed : undefined;
|
|
};
|
|
|
|
export default function AppContent() {
|
|
return (
|
|
<PaletteOpsProvider>
|
|
<AppContentInner />
|
|
</PaletteOpsProvider>
|
|
);
|
|
}
|
|
|
|
function AppContentInner() {
|
|
const navigate = useNavigate();
|
|
const { sessionId } = useParams<{ sessionId?: string }>();
|
|
const { t } = useTranslation('common');
|
|
const { isMobile } = useDeviceSettings({ trackPWA: false });
|
|
const { ws, sendMessage, subscribe } = useWebSocket();
|
|
|
|
const {
|
|
processingSessions,
|
|
markSessionProcessing,
|
|
markSessionIdle,
|
|
syncProcessingSessions,
|
|
} = useSessionProtection();
|
|
|
|
const {
|
|
selectedProject,
|
|
selectedSession,
|
|
activeTab,
|
|
sidebarOpen,
|
|
isLoadingProjects,
|
|
externalMessageUpdate,
|
|
newSessionTrigger,
|
|
setActiveTab,
|
|
setSidebarOpen,
|
|
setIsInputFocused,
|
|
setShowSettings,
|
|
openSettings,
|
|
refreshProjectsSilently,
|
|
registerOptimisticSession,
|
|
sidebarSharedProps,
|
|
handleNewSession,
|
|
} = useProjectsState({
|
|
sessionId,
|
|
navigate,
|
|
subscribe,
|
|
isMobile,
|
|
activeSessions: processingSessions,
|
|
});
|
|
|
|
const refreshRunningSessions = useCallback(async () => {
|
|
try {
|
|
const response = await api.runningSessions();
|
|
if (!response.ok) {
|
|
return;
|
|
}
|
|
|
|
const payload = (await response.json()) as RunningSessionsApiPayload;
|
|
const sessions = Array.isArray(payload.data?.sessions) ? payload.data.sessions : [];
|
|
|
|
syncProcessingSessions(
|
|
sessions
|
|
.map((session) => {
|
|
if (typeof session.sessionId !== 'string' || !session.sessionId) {
|
|
return null;
|
|
}
|
|
|
|
return {
|
|
sessionId: session.sessionId,
|
|
startedAt: parseStartedAt(session.startedAt),
|
|
statusText: typeof session.statusText === 'string' ? session.statusText : undefined,
|
|
canInterrupt: typeof session.canInterrupt === 'boolean' ? session.canInterrupt : undefined,
|
|
};
|
|
})
|
|
.filter((session): session is NonNullable<typeof session> => Boolean(session)),
|
|
);
|
|
} catch (error) {
|
|
console.error('[AppContent] Failed to sync running sessions:', error);
|
|
}
|
|
}, [syncProcessingSessions]);
|
|
|
|
useEffect(() => {
|
|
void refreshRunningSessions();
|
|
}, [refreshRunningSessions]);
|
|
|
|
useEffect(() => {
|
|
if (processingSessions.size === 0) {
|
|
return;
|
|
}
|
|
|
|
const interval = window.setInterval(() => {
|
|
void refreshRunningSessions();
|
|
}, 5000);
|
|
|
|
return () => window.clearInterval(interval);
|
|
}, [processingSessions.size, refreshRunningSessions]);
|
|
|
|
usePaletteOpsRegister({
|
|
openSettings,
|
|
refreshProjects: refreshProjectsSilently,
|
|
});
|
|
|
|
useEffect(() => {
|
|
if (typeof navigator === 'undefined' || !('serviceWorker' in navigator)) {
|
|
return undefined;
|
|
}
|
|
|
|
const handleServiceWorkerMessage = (event: MessageEvent) => {
|
|
const message = event.data;
|
|
if (!message || message.type !== 'notification:navigate') {
|
|
return;
|
|
}
|
|
|
|
if (typeof message.provider === 'string' && message.provider.trim()) {
|
|
localStorage.setItem('selected-provider', message.provider);
|
|
}
|
|
|
|
setActiveTab('chat');
|
|
setSidebarOpen(false);
|
|
void refreshProjectsSilently();
|
|
|
|
if (typeof message.sessionId === 'string' && message.sessionId) {
|
|
navigate(`/session/${message.sessionId}`);
|
|
return;
|
|
}
|
|
|
|
navigate('/');
|
|
};
|
|
|
|
navigator.serviceWorker.addEventListener('message', handleServiceWorkerMessage);
|
|
|
|
return () => {
|
|
navigator.serviceWorker.removeEventListener('message', handleServiceWorkerMessage);
|
|
};
|
|
}, [navigate, refreshProjectsSilently, setActiveTab, setSidebarOpen]);
|
|
|
|
// Pending tool permissions are recovered through the `chat.subscribe` flow:
|
|
// the `chat_subscribed` ack carries them on session open and on reconnect,
|
|
// so no separate permission-recovery message is needed here.
|
|
|
|
// Adjust the app container to stay above the virtual keyboard on iOS Safari.
|
|
// On Chrome for Android the layout viewport already shrinks when the keyboard opens,
|
|
// so inset-0 adjusts automatically. On iOS the layout viewport stays full-height and
|
|
// the keyboard overlays it — we use the Visual Viewport API to track keyboard height
|
|
// and apply it as a CSS variable that shifts the container's bottom edge up.
|
|
useEffect(() => {
|
|
const vv = window.visualViewport;
|
|
if (!vv) return;
|
|
const update = () => {
|
|
// Only resize matters — keyboard open/close changes vv.height.
|
|
// Do NOT listen to scroll: on iOS Safari, scrolling content changes
|
|
// vv.offsetTop which would make --keyboard-height fluctuate during
|
|
// normal scrolling, causing the container to bounce up and down.
|
|
const kb = Math.max(0, window.innerHeight - vv.height);
|
|
document.documentElement.style.setProperty('--keyboard-height', `${kb}px`);
|
|
};
|
|
vv.addEventListener('resize', update);
|
|
return () => vv.removeEventListener('resize', update);
|
|
}, []);
|
|
|
|
return (
|
|
<div className="fixed inset-0 flex bg-background" style={{ bottom: 'var(--keyboard-height, 0px)' }}>
|
|
{!isMobile ? (
|
|
<div className="h-full flex-shrink-0 border-r border-border/50">
|
|
<Sidebar {...sidebarSharedProps} />
|
|
</div>
|
|
) : (
|
|
<div
|
|
className={`fixed inset-0 z-50 flex transition-all duration-150 ease-out ${sidebarOpen ? 'visible opacity-100' : 'invisible opacity-0'
|
|
}`}
|
|
>
|
|
<button
|
|
className="fixed inset-0 bg-background/60 backdrop-blur-sm transition-opacity duration-150 ease-out"
|
|
onClick={(event) => {
|
|
event.stopPropagation();
|
|
setSidebarOpen(false);
|
|
}}
|
|
onTouchStart={(event) => {
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
setSidebarOpen(false);
|
|
}}
|
|
aria-label={t('versionUpdate.ariaLabels.closeSidebar')}
|
|
/>
|
|
<div
|
|
className={`relative h-full w-[85vw] max-w-sm transform border-r border-border/40 bg-card transition-transform duration-150 ease-out sm:w-80 ${sidebarOpen ? 'translate-x-0' : '-translate-x-full'
|
|
}`}
|
|
onClick={(event) => event.stopPropagation()}
|
|
onTouchStart={(event) => event.stopPropagation()}
|
|
>
|
|
<Sidebar {...sidebarSharedProps} />
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
<div className="flex min-w-0 flex-1 flex-col">
|
|
<MainContent
|
|
selectedProject={selectedProject}
|
|
selectedSession={selectedSession}
|
|
activeTab={activeTab}
|
|
setActiveTab={setActiveTab}
|
|
ws={ws}
|
|
sendMessage={sendMessage}
|
|
isMobile={isMobile}
|
|
onMenuClick={() => setSidebarOpen(true)}
|
|
isLoading={isLoadingProjects}
|
|
onInputFocusChange={setIsInputFocused}
|
|
onSessionProcessing={markSessionProcessing}
|
|
onSessionIdle={markSessionIdle}
|
|
processingSessions={processingSessions}
|
|
onNavigateToSession={(targetSessionId: string, options) =>
|
|
navigate(`/session/${targetSessionId}`, { replace: Boolean(options?.replace) })
|
|
}
|
|
onSessionEstablished={(targetSessionId, context) =>
|
|
registerOptimisticSession({ sessionId: targetSessionId, ...context })
|
|
}
|
|
onShowSettings={() => setShowSettings(true)}
|
|
externalMessageUpdate={externalMessageUpdate}
|
|
newSessionTrigger={newSessionTrigger}
|
|
/>
|
|
</div>
|
|
|
|
<CommandPalette
|
|
selectedProject={selectedProject}
|
|
onStartNewChat={handleNewSession}
|
|
onOpenSettings={() => openSettings()}
|
|
onShowTab={setActiveTab}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|