Spaces:
Running
Running
File size: 14,755 Bytes
8cfacd3 171564a 8cfacd3 a2f44f6 706c3e3 8cfacd3 a2f44f6 fea9b8e 706c3e3 a2f44f6 706c3e3 fea9b8e 8cfacd3 171564a 8cfacd3 850e85a 8cfacd3 706c3e3 8cfacd3 850e85a 8cfacd3 706c3e3 8cfacd3 706c3e3 8cfacd3 850e85a ffc613a 850e85a ffc613a 850e85a ffc613a 8cfacd3 706c3e3 ca7897a 706c3e3 850e85a 8cfacd3 ffc613a 8cfacd3 ffc613a 8cfacd3 ffc613a a2f44f6 ffc613a 8cfacd3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 |
import { useCallback, useRef, useEffect, useState } from 'react';
import {
Box,
Drawer,
IconButton,
Avatar,
Menu,
MenuItem,
Typography,
CircularProgress,
} from '@mui/material';
import MenuIcon from '@mui/icons-material/Menu';
import ChevronLeftIcon from '@mui/icons-material/ChevronLeft';
import DragIndicatorIcon from '@mui/icons-material/DragIndicator';
import AccountCircleIcon from '@mui/icons-material/AccountCircle';
import SettingsIcon from '@mui/icons-material/Settings';
import LogoutIcon from '@mui/icons-material/Logout';
import { useSessionStore } from '@/store/sessionStore';
import { useAgentStore } from '@/store/agentStore';
import { useLayoutStore } from '@/store/layoutStore';
import { useAuthStore } from '@/store/authStore';
import { useAgentEvents } from '@/hooks/useAgentEvents';
import SessionSidebar from '@/components/SessionSidebar/SessionSidebar';
import CodePanel from '@/components/CodePanel/CodePanel';
import ChatInput from '@/components/Chat/ChatInput';
import MessageList from '@/components/Chat/MessageList';
import { WelcomeScreen } from '@/components/Welcome';
import { SetupPrompt } from '@/components/Onboarding';
import { SettingsModal } from '@/components/Settings';
import type { Message } from '@/types/agent';
const API_BASE = import.meta.env.DEV ? 'http://127.0.0.1:7860' : '';
const DRAWER_WIDTH = 260;
export default function AppLayout() {
const { activeSessionId, sessions, isLoading: sessionsLoading, isLoaded: sessionsLoaded, loadSessions, createSession } = useSessionStore();
const { isConnected, isProcessing, messages, addMessage, clearMessages, setPlan, setPanelContent } = useAgentStore();
const {
isLeftSidebarOpen,
isRightPanelOpen,
rightPanelWidth,
setRightPanelWidth,
toggleLeftSidebar,
toggleRightPanel
} = useLayoutStore();
const { user, isLoading: authLoading, getAuthHeaders, isAuthenticated, logout } = useAuthStore();
const [userMenuAnchor, setUserMenuAnchor] = useState<null | HTMLElement>(null);
const [showSettings, setShowSettings] = useState(false);
const [isCreatingSession, setIsCreatingSession] = useState(false);
const isResizing = useRef(false);
const startResizing = useCallback((e: React.MouseEvent) => {
e.preventDefault();
isResizing.current = true;
document.addEventListener('mousemove', handleMouseMove);
document.addEventListener('mouseup', stopResizing);
document.body.style.cursor = 'col-resize';
}, []);
const stopResizing = useCallback(() => {
isResizing.current = false;
document.removeEventListener('mousemove', handleMouseMove);
document.removeEventListener('mouseup', stopResizing);
document.body.style.cursor = 'default';
}, []);
const handleMouseMove = useCallback((e: MouseEvent) => {
if (!isResizing.current) return;
const newWidth = window.innerWidth - e.clientX;
const maxWidth = window.innerWidth * 0.8;
const minWidth = 300;
if (newWidth > minWidth && newWidth < maxWidth) {
setRightPanelWidth(newWidth);
}
}, [setRightPanelWidth]);
useEffect(() => {
return () => {
document.removeEventListener('mousemove', handleMouseMove);
document.removeEventListener('mouseup', stopResizing);
};
}, [handleMouseMove, stopResizing]);
// Load sessions when authenticated (only once)
// Note: user is in deps to re-run when auth state changes (isAuthenticated is a stable function ref)
useEffect(() => {
if (isAuthenticated() && !sessionsLoading && !sessionsLoaded) {
loadSessions();
}
}, [user, sessionsLoading, sessionsLoaded, loadSessions, isAuthenticated]);
useAgentEvents({
sessionId: activeSessionId,
onReady: () => console.log('Agent ready'),
onError: (error) => console.error('Agent error:', error),
});
const handleSendMessage = useCallback(
async (text: string) => {
if (!activeSessionId || !text.trim()) return;
// Bypass Anthropic key check as we use HF token
const userMsg: Message = {
id: `user_${Date.now()}`,
role: 'user',
content: text.trim(),
timestamp: new Date().toISOString(),
};
addMessage(userMsg);
try {
await fetch(`${API_BASE}/api/submit`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
...getAuthHeaders(),
},
body: JSON.stringify({
session_id: activeSessionId,
text: text.trim(),
}),
});
} catch (e) {
console.error('Send failed:', e);
}
},
[activeSessionId, addMessage, getAuthHeaders]
);
const handleLogout = async () => {
setUserMenuAnchor(null);
await logout();
};
const handleOpenSettings = () => {
setUserMenuAnchor(null);
setShowSettings(true);
};
const handleStartSession = useCallback(async () => {
setIsCreatingSession(true);
try {
const sessionId = await createSession();
if (sessionId) {
clearMessages();
setPlan([]);
setPanelContent(null);
}
} catch (e) {
console.error('Failed to create session:', e);
} finally {
setIsCreatingSession(false);
}
}, [createSession, clearMessages, setPlan, setPanelContent]);
// Auto-create session when authenticated but no sessions (only after sessions have been loaded)
const noSessionsAtAll = sessions.length === 0 && !activeSessionId;
useEffect(() => {
if (isAuthenticated() && sessionsLoaded && noSessionsAtAll && !isCreatingSession) {
handleStartSession();
}
}, [isAuthenticated, sessionsLoaded, noSessionsAtAll, isCreatingSession, handleStartSession]);
// Show loading spinner while auth is loading
if (authLoading) {
return (
<Box
sx={{
width: '100%',
height: '100%',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
background: 'var(--bg)',
}}
>
<CircularProgress />
</Box>
);
}
// Show welcome screen for unauthenticated users
if (!isAuthenticated()) {
return <WelcomeScreen />;
}
// Show loading while sessions are being fetched
if (sessionsLoading) {
return (
<Box
sx={{
width: '100%',
height: '100%',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
background: 'var(--bg)',
}}
>
<CircularProgress />
</Box>
);
}
// Bypassed setup prompt logic as we use HF token
const needsApiKey = false;
if (needsApiKey) {
return (
<Box sx={{ width: '100%', height: '100%', display: 'flex', flexDirection: 'column' }}>
{/* Minimal header for setup screens */}
<Box
sx={{
height: '60px',
px: 2,
display: 'flex',
alignItems: 'center',
justifyContent: 'space-between',
borderBottom: 1,
borderColor: 'divider',
bgcolor: 'background.default',
}}
>
<img
src="/hf-logo-white.png"
alt="Hugging Face"
style={{ height: '32px', objectFit: 'contain' }}
/>
<Box sx={{ display: 'flex', alignItems: 'center', gap: 1 }}>
<IconButton onClick={handleOpenSettings} size="small">
<SettingsIcon />
</IconButton>
<IconButton
onClick={(e) => setUserMenuAnchor(e.currentTarget)}
size="small"
>
{user?.picture ? (
<Avatar src={user.picture} sx={{ width: 32, height: 32 }} />
) : (
<AccountCircleIcon />
)}
</IconButton>
<Menu
anchorEl={userMenuAnchor}
open={Boolean(userMenuAnchor)}
onClose={() => setUserMenuAnchor(null)}
>
<MenuItem disabled>
<Typography variant="body2">{user?.name || user?.username}</Typography>
</MenuItem>
<MenuItem onClick={handleOpenSettings}>
<SettingsIcon sx={{ mr: 1 }} fontSize="small" />
Settings
</MenuItem>
<MenuItem onClick={handleLogout}>
<LogoutIcon sx={{ mr: 1 }} fontSize="small" />
Logout
</MenuItem>
</Menu>
</Box>
</Box>
{/* Setup content */}
<Box sx={{ flex: 1 }}>
<SetupPrompt onOpenSettings={handleOpenSettings} />
</Box>
<SettingsModal open={showSettings} onClose={() => setShowSettings(false)} />
</Box>
);
}
// Show loading while auto-creating first session
if (isCreatingSession) {
return (
<Box
sx={{
width: '100%',
height: '100%',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
background: 'var(--bg)',
}}
>
<CircularProgress />
</Box>
);
}
// Full app layout for authenticated users with active session
return (
<Box sx={{ display: 'flex', width: '100%', height: '100%' }}>
{/* Left Sidebar Drawer */}
<Box
component="nav"
sx={{
width: { md: isLeftSidebarOpen ? DRAWER_WIDTH : 0 },
flexShrink: { md: 0 },
transition: isResizing.current ? 'none' : 'width 0.2s',
overflow: 'hidden',
}}
>
<Drawer
variant="persistent"
sx={{
display: { xs: 'none', md: 'block' },
'& .MuiDrawer-paper': {
boxSizing: 'border-box',
width: DRAWER_WIDTH,
borderRight: '1px solid',
borderColor: 'divider',
top: 0,
height: '100%',
bgcolor: 'var(--panel)',
},
}}
open={isLeftSidebarOpen}
>
<SessionSidebar />
</Drawer>
</Box>
{/* Main Content Area */}
<Box
sx={{
flexGrow: 1,
height: '100%',
display: 'flex',
flexDirection: 'column',
transition: isResizing.current ? 'none' : 'width 0.2s',
position: 'relative',
overflow: 'hidden',
}}
>
{/* Top Header Bar */}
<Box
sx={{
height: '60px',
px: 1,
display: 'flex',
alignItems: 'center',
borderBottom: 1,
borderColor: 'divider',
bgcolor: 'background.default',
zIndex: 1200,
}}
>
<IconButton onClick={toggleLeftSidebar} size="small">
{isLeftSidebarOpen ? <ChevronLeftIcon /> : <MenuIcon />}
</IconButton>
<Box sx={{ flex: 1, display: 'flex', justifyContent: 'center' }}>
<img
src="/hf-logo-white.png"
alt="Hugging Face"
style={{ height: '40px', objectFit: 'contain' }}
/>
</Box>
{/* User Section */}
<Box sx={{ display: 'flex', alignItems: 'center', gap: 1 }}>
<IconButton
onClick={(e) => setUserMenuAnchor(e.currentTarget)}
size="small"
>
{user?.picture ? (
<Avatar src={user.picture} sx={{ width: 32, height: 32 }} />
) : (
<AccountCircleIcon />
)}
</IconButton>
<Menu
anchorEl={userMenuAnchor}
open={Boolean(userMenuAnchor)}
onClose={() => setUserMenuAnchor(null)}
>
<MenuItem disabled>
<Typography variant="body2">{user?.name || user?.username}</Typography>
</MenuItem>
<MenuItem onClick={handleOpenSettings}>
<SettingsIcon sx={{ mr: 1 }} fontSize="small" />
Settings
</MenuItem>
<MenuItem onClick={handleLogout}>
<LogoutIcon sx={{ mr: 1 }} fontSize="small" />
Logout
</MenuItem>
</Menu>
<IconButton
onClick={toggleRightPanel}
size="small"
sx={{ visibility: isRightPanelOpen ? 'hidden' : 'visible' }}
>
<MenuIcon />
</IconButton>
</Box>
</Box>
{/* Chat Area */}
<Box
component="main"
className="chat-pane"
sx={{
flexGrow: 1,
display: 'flex',
flexDirection: 'column',
overflow: 'hidden',
background: 'linear-gradient(180deg, var(--bg), var(--panel))',
padding: '24px',
}}
>
<MessageList messages={messages} isProcessing={isProcessing} />
<ChatInput onSend={handleSendMessage} disabled={isProcessing || !isConnected} />
</Box>
</Box>
{/* Resize Handle */}
{isRightPanelOpen && (
<Box
onMouseDown={startResizing}
sx={{
width: '4px',
cursor: 'col-resize',
bgcolor: 'divider',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
transition: 'background-color 0.2s',
zIndex: 1300,
overflow: 'hidden',
'&:hover': {
bgcolor: 'primary.main',
},
}}
>
<DragIndicatorIcon
sx={{
fontSize: '0.8rem',
color: 'text.secondary',
pointerEvents: 'none',
}}
/>
</Box>
)}
{/* Right Panel Drawer */}
<Box
component="nav"
sx={{
width: { md: isRightPanelOpen ? rightPanelWidth : 0 },
flexShrink: { md: 0 },
transition: isResizing.current ? 'none' : 'width 0.2s',
overflow: 'hidden',
}}
>
<Drawer
anchor="right"
variant="persistent"
sx={{
display: { xs: 'none', md: 'block' },
'& .MuiDrawer-paper': {
boxSizing: 'border-box',
width: rightPanelWidth,
borderLeft: 'none',
top: 0,
height: '100%',
bgcolor: 'var(--panel)',
},
}}
open={isRightPanelOpen}
>
<CodePanel />
</Drawer>
</Box>
{/* Settings Modal */}
<SettingsModal open={showSettings} onClose={() => setShowSettings(false)} />
</Box>
);
}
|