mirror of
https://github.com/siteboon/claudecodeui.git
synced 2026-02-14 12:47:33 +00:00
145 lines
4.5 KiB
TypeScript
145 lines
4.5 KiB
TypeScript
import { 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 MobileNav from '../MobileNav';
|
|
|
|
import { useWebSocket } from '../../contexts/WebSocketContext';
|
|
import { useDeviceSettings } from '../../hooks/useDeviceSettings';
|
|
import { useSessionProtection } from '../../hooks/useSessionProtection';
|
|
import { useProjectsState } from '../../hooks/useProjectsState';
|
|
|
|
export default function AppContent() {
|
|
const navigate = useNavigate();
|
|
const { sessionId } = useParams<{ sessionId?: string }>();
|
|
const { t } = useTranslation('common');
|
|
const { isMobile } = useDeviceSettings({ trackPWA: false });
|
|
const { ws, sendMessage, latestMessage } = useWebSocket();
|
|
|
|
const {
|
|
activeSessions,
|
|
processingSessions,
|
|
markSessionAsActive,
|
|
markSessionAsInactive,
|
|
markSessionAsProcessing,
|
|
markSessionAsNotProcessing,
|
|
replaceTemporarySession,
|
|
} = useSessionProtection();
|
|
|
|
const {
|
|
selectedProject,
|
|
selectedSession,
|
|
activeTab,
|
|
sidebarOpen,
|
|
isLoadingProjects,
|
|
isInputFocused,
|
|
externalMessageUpdate,
|
|
setActiveTab,
|
|
setSidebarOpen,
|
|
setIsInputFocused,
|
|
setShowSettings,
|
|
openSettings,
|
|
fetchProjects,
|
|
sidebarSharedProps,
|
|
} = useProjectsState({
|
|
sessionId,
|
|
navigate,
|
|
latestMessage,
|
|
isMobile,
|
|
activeSessions,
|
|
});
|
|
|
|
useEffect(() => {
|
|
window.refreshProjects = fetchProjects;
|
|
|
|
return () => {
|
|
if (window.refreshProjects === fetchProjects) {
|
|
delete window.refreshProjects;
|
|
}
|
|
};
|
|
}, [fetchProjects]);
|
|
|
|
useEffect(() => {
|
|
window.openSettings = openSettings;
|
|
|
|
return () => {
|
|
if (window.openSettings === openSettings) {
|
|
delete window.openSettings;
|
|
}
|
|
};
|
|
}, [openSettings]);
|
|
|
|
return (
|
|
<div className="fixed inset-0 flex bg-background">
|
|
{!isMobile ? (
|
|
<div className="h-full flex-shrink-0 border-r border-border bg-card">
|
|
<Sidebar {...sidebarSharedProps} />
|
|
</div>
|
|
) : (
|
|
<div
|
|
className={`fixed inset-0 z-50 flex transition-all duration-150 ease-out ${sidebarOpen ? 'opacity-100 visible' : 'opacity-0 invisible'
|
|
}`}
|
|
>
|
|
<button
|
|
className="fixed inset-0 bg-background/80 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 w-[85vw] max-w-sm sm:w-80 h-full bg-card border-r border-border transform transition-transform duration-150 ease-out ${sidebarOpen ? 'translate-x-0' : '-translate-x-full'
|
|
}`}
|
|
onClick={(event) => event.stopPropagation()}
|
|
onTouchStart={(event) => event.stopPropagation()}
|
|
>
|
|
<Sidebar {...sidebarSharedProps} />
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
<div className={`flex-1 flex flex-col min-w-0 ${isMobile && !isInputFocused ? 'pb-mobile-nav' : ''}`}>
|
|
<MainContent
|
|
selectedProject={selectedProject}
|
|
selectedSession={selectedSession}
|
|
activeTab={activeTab}
|
|
setActiveTab={setActiveTab}
|
|
ws={ws}
|
|
sendMessage={sendMessage}
|
|
latestMessage={latestMessage}
|
|
isMobile={isMobile}
|
|
onMenuClick={() => setSidebarOpen(true)}
|
|
isLoading={isLoadingProjects}
|
|
onInputFocusChange={setIsInputFocused}
|
|
onSessionActive={markSessionAsActive}
|
|
onSessionInactive={markSessionAsInactive}
|
|
onSessionProcessing={markSessionAsProcessing}
|
|
onSessionNotProcessing={markSessionAsNotProcessing}
|
|
processingSessions={processingSessions}
|
|
onReplaceTemporarySession={replaceTemporarySession}
|
|
onNavigateToSession={(targetSessionId: string) => navigate(`/session/${targetSessionId}`)}
|
|
onShowSettings={() => setShowSettings(true)}
|
|
externalMessageUpdate={externalMessageUpdate}
|
|
/>
|
|
</div>
|
|
|
|
{isMobile && (
|
|
<MobileNav
|
|
activeTab={activeTab}
|
|
setActiveTab={setActiveTab}
|
|
isInputFocused={isInputFocused}
|
|
/>
|
|
)}
|
|
|
|
</div>
|
|
);
|
|
}
|