-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
554 lines (528 loc) · 19.5 KB
/
App.js
File metadata and controls
554 lines (528 loc) · 19.5 KB
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
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
import React, { useState, useMemo, createContext, useContext } from 'react';
import { BrowserRouter as Router, Routes, Route, Link as RouterLink, Navigate } from 'react-router-dom';
import {
Container,
AppBar,
Toolbar,
Typography,
Button,
Box,
IconButton,
ThemeProvider,
createTheme,
CssBaseline,
useMediaQuery,
Tooltip,
} from '@mui/material';
import Brightness4Icon from '@mui/icons-material/Brightness4';
import Brightness7Icon from '@mui/icons-material/Brightness7';
import KeyboardIcon from '@mui/icons-material/Keyboard';
import AgentEditor from './features/agents/components/AgentEditor';
import RunConsole from './features/agents/components/RunConsole';
import AgentDashboard from './features/agents/pages/AgentDashboard';
import ToolsDashboard from './features/tools/pages/ToolsDashboard';
import VoiceDashboard from './features/voice/pages/VoiceDashboard';
import MobileVoice from './features/voice/pages/MobileVoice';
import DebugNetwork from './features/voice/pages/DebugNetwork';
import RouteDebug from './features/voice/pages/RouteDebug';
import KeyboardShortcutsHelp from './shared/components/KeyboardShortcutsHelp';
import ServerManagementButtons from './shared/components/ServerManagementButtons';
import KeyboardNavigationProvider from './components/KeyboardNavigationProvider';
import SpatialNavigationProvider from './components/SpatialNavigationProvider';
import TVFocusStyles from './components/TVFocusStyles';
import useKeyboardNavigation from './hooks/useKeyboardNavigation';
import DynamicManifest from './components/DynamicManifest';
import HtmlDisplayPage from './features/htmlDisplay/pages/HtmlDisplayPage';
const ColorModeContext = createContext({ toggleColorMode: () => {} });
const lightPalette = {
primary: {
main: '#3f51b5',
},
secondary: {
main: '#f50057',
},
background: {
default: '#f5f7fa',
paper: '#ffffff',
subtile: '#e8ecf1',
},
text: {
primary: '#1a1a1a',
secondary: '#616161',
},
divider: '#e0e0e0',
};
const darkPalette = {
primary: {
main: '#90caf9',
},
secondary: {
main: '#f48fb1',
},
background: {
default: '#0d0d0d',
paper: '#1a1a1a',
subtile: '#242424',
},
text: {
primary: '#e8e8e8',
secondary: '#a0a0a0',
},
divider: '#2d2d2d',
};
export default function App() {
const prefersDarkMode = useMediaQuery('(prefers-color-scheme: dark)');
// FORCE dark mode for TV WebView (light mode breaks rendering)
const initialMode = localStorage.getItem('themeMode') || 'dark';
const [mode, setMode] = useState(initialMode);
const [showKeyboardHelp, setShowKeyboardHelp] = useState(false);
// Debug logging for TV WebView
React.useEffect(() => {
console.log('[App] Mounted');
console.log('[App] PUBLIC_URL:', process.env.PUBLIC_URL);
console.log('[App] Location:', window.location.href);
console.log('[App] Pathname:', window.location.pathname);
}, []);
React.useEffect(() => {
localStorage.setItem('themeMode', mode);
}, [mode]);
// Enable global keyboard help shortcut (Shift+?)
// Page navigation shortcuts (Alt+1/2/3) are handled by KeyboardNavigationProvider inside Router
useKeyboardNavigation({
enabled: true,
onHelp: () => setShowKeyboardHelp(true),
});
const colorMode = useMemo(
() => ({
toggleColorMode: () => {
setMode((prevMode) => (prevMode === 'light' ? 'dark' : 'light'));
},
}),
[],
);
const theme = useMemo(
() =>
createTheme({
palette: {
mode,
...(mode === 'light' ? lightPalette : darkPalette),
},
typography: {
h5: {
fontWeight: 500,
},
h6: {
fontWeight: 500,
},
},
shape: {
borderRadius: 12,
},
...(mode === 'dark' && {
shadows: [
'none',
'0px 2px 4px rgba(0,0,0,0.4)',
'0px 4px 8px rgba(0,0,0,0.4)',
'0px 8px 16px rgba(0,0,0,0.4)',
'0px 12px 24px rgba(0,0,0,0.4)',
...Array(20).fill('0px 16px 32px rgba(0,0,0,0.4)')
]
}),
components: {
MuiAppBar: {
styleOverrides: {
root: ({ theme }) => ({
backgroundColor: theme.palette.mode === 'dark' ? theme.palette.grey[900] : theme.palette.primary.main,
boxShadow: 'none',
borderBottom: `1px solid ${theme.palette.divider}`,
}),
},
},
MuiPaper: {
defaultProps: {
elevation: 0,
variant: 'outlined',
},
styleOverrides: {
root: ({ theme }) => ({
transition: 'background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out',
backgroundColor: theme.palette.background.paper,
backdropFilter: 'blur(10px)',
}),
outlined: ({ theme }) => ({
borderColor: theme.palette.divider,
borderWidth: '1px',
}),
},
},
MuiButton: {
defaultProps: {
disableElevation: true,
},
styleOverrides: {
root: {
textTransform: 'none',
},
contained: ({ theme }) => ({
fontWeight: 500,
}),
},
},
MuiTableHead: {
styleOverrides: {
root: ({ theme }) => ({
backgroundColor: theme.palette.mode === 'dark' ? theme.palette.grey[800] : theme.palette.grey[100],
'& .MuiTableCell-root': {
fontWeight: 600,
},
}),
},
},
MuiTableCell: {
styleOverrides: {
root: ({ theme }) => ({
borderBottom: `1px solid ${theme.palette.divider}`,
}),
},
},
MuiChip: {
styleOverrides: {
root: ({ theme }) => ({
borderRadius: theme.shape.borderRadius / 2,
fontWeight: 500,
}),
},
},
MuiTextField: {
defaultProps: {
variant: 'outlined',
size: 'small',
},
styleOverrides: {
root: ({ theme }) => ({
'& .MuiOutlinedInput-root': {
backgroundColor: theme.palette.mode === 'dark'
? 'rgba(255, 255, 255, 0.05)'
: 'rgba(0, 0, 0, 0.02)',
transition: 'all 0.2s ease-in-out',
'& fieldset': {
borderColor: theme.palette.mode === 'dark'
? 'rgba(255, 255, 255, 0.1)'
: 'rgba(0, 0, 0, 0.12)',
borderWidth: '1px',
},
'&:hover': {
backgroundColor: theme.palette.mode === 'dark'
? 'rgba(255, 255, 255, 0.08)'
: 'rgba(0, 0, 0, 0.04)',
'& fieldset': {
borderColor: theme.palette.mode === 'dark'
? 'rgba(255, 255, 255, 0.2)'
: 'rgba(0, 0, 0, 0.23)',
},
},
'&.Mui-focused': {
backgroundColor: theme.palette.mode === 'dark'
? 'rgba(255, 255, 255, 0.09)'
: 'rgba(0, 0, 0, 0.05)',
'& fieldset': {
borderColor: theme.palette.primary.main,
borderWidth: '2px',
},
},
'&.Mui-disabled': {
backgroundColor: theme.palette.mode === 'dark'
? 'rgba(255, 255, 255, 0.02)'
: 'rgba(0, 0, 0, 0.01)',
},
},
'& .MuiInputLabel-root': {
color: theme.palette.text.secondary,
'&.Mui-focused': {
color: theme.palette.primary.main,
},
},
}),
},
},
MuiSelect: {
defaultProps: {
variant: 'outlined',
size: 'small',
},
styleOverrides: {
root: ({ theme }) => ({
backgroundColor: theme.palette.mode === 'dark'
? 'rgba(255, 255, 255, 0.05)'
: 'rgba(0, 0, 0, 0.02)',
transition: 'all 0.2s ease-in-out',
'& fieldset': {
borderColor: theme.palette.mode === 'dark'
? 'rgba(255, 255, 255, 0.1)'
: 'rgba(0, 0, 0, 0.12)',
borderWidth: '1px',
},
'&:hover': {
backgroundColor: theme.palette.mode === 'dark'
? 'rgba(255, 255, 255, 0.08)'
: 'rgba(0, 0, 0, 0.04)',
'& fieldset': {
borderColor: theme.palette.mode === 'dark'
? 'rgba(255, 255, 255, 0.2)'
: 'rgba(0, 0, 0, 0.23)',
},
},
'&.Mui-focused': {
backgroundColor: theme.palette.mode === 'dark'
? 'rgba(255, 255, 255, 0.09)'
: 'rgba(0, 0, 0, 0.05)',
'& fieldset': {
borderColor: theme.palette.primary.main,
borderWidth: '2px',
},
},
}),
},
},
MuiOutlinedInput: {
styleOverrides: {
root: ({ theme }) => ({
backgroundColor: theme.palette.mode === 'dark'
? 'rgba(255, 255, 255, 0.05)'
: 'rgba(0, 0, 0, 0.02)',
transition: 'all 0.2s ease-in-out',
'& fieldset': {
borderColor: theme.palette.mode === 'dark'
? 'rgba(255, 255, 255, 0.1)'
: 'rgba(0, 0, 0, 0.12)',
borderWidth: '1px',
},
'&:hover': {
backgroundColor: theme.palette.mode === 'dark'
? 'rgba(255, 255, 255, 0.08)'
: 'rgba(0, 0, 0, 0.04)',
'& fieldset': {
borderColor: theme.palette.mode === 'dark'
? 'rgba(255, 255, 255, 0.2)'
: 'rgba(0, 0, 0, 0.23)',
},
},
'&.Mui-focused': {
backgroundColor: theme.palette.mode === 'dark'
? 'rgba(255, 255, 255, 0.09)'
: 'rgba(0, 0, 0, 0.05)',
'& fieldset': {
borderColor: theme.palette.primary.main,
borderWidth: '2px',
},
},
'&.Mui-disabled': {
backgroundColor: theme.palette.mode === 'dark'
? 'rgba(255, 255, 255, 0.02)'
: 'rgba(0, 0, 0, 0.01)',
},
}),
notchedOutline: {
transition: 'all 0.2s ease-in-out',
},
},
},
MuiInputLabel: {
styleOverrides: {
root: ({ theme }) => ({
color: theme.palette.text.secondary,
'&.Mui-focused': {
color: theme.palette.primary.main,
},
}),
},
},
},
}),
[mode],
);
return (
<ColorModeContext.Provider value={colorMode}>
<ThemeProvider theme={theme}>
<SpatialNavigationProvider>
<CssBaseline />
<style>
{`
/* Global scrollbar styling */
* {
scrollbar-width: thin;
scrollbar-color: ${mode === 'dark' ? '#3a3a3a #1a1a1a' : '#c0c0c0 #ffffff'};
}
*::-webkit-scrollbar {
width: 12px;
height: 12px;
}
*::-webkit-scrollbar-track {
background: ${mode === 'dark' ? '#1a1a1a' : '#ffffff'};
}
*::-webkit-scrollbar-thumb {
background-color: ${mode === 'dark' ? '#3a3a3a' : '#c0c0c0'};
border-radius: 6px;
border: 2px solid ${mode === 'dark' ? '#1a1a1a' : '#ffffff'};
}
*::-webkit-scrollbar-thumb:hover {
background-color: ${mode === 'dark' ? '#4a4a4a' : '#a0a0a0'};
}
/* Skip to main content link */
.skip-to-main {
position: absolute;
top: -100px;
left: 0;
background: ${mode === 'dark' ? '#90caf9' : '#3f51b5'};
color: white;
padding: 8px 16px;
text-decoration: none;
z-index: 10000;
border-radius: 0 0 4px 0;
font-weight: 500;
}
.skip-to-main:focus {
top: 0;
}
`}
</style>
{/* TV-specific focus styles - only rendered on Android TV/Fire TV */}
<TVFocusStyles mode={mode} />
<Router basename={process.env.PUBLIC_URL || ''}>
{/* Dynamically switch PWA manifest based on current route */}
<DynamicManifest />
{/* Skip to main content link for accessibility */}
<a href="#main-content" className="skip-to-main">
Skip to main content
</a>
{/* Enable keyboard navigation shortcuts (Alt+1/2/3) */}
<KeyboardNavigationProvider />
<Routes>
{/* Debug route */}
<Route path="/debug-network" element={<DebugNetwork />} />
{/* Mobile Voice routes - full screen, no AppBar, no Container (WebRTC enabled) */}
<Route path="/mobile-voice" element={<MobileVoice />} />
<Route path="/mobile-voice/:conversationId" element={<MobileVoice />} />
{/* Legacy WebRTC routes - redirect to main mobile-voice */}
<Route path="/mobile-voice-webrtc" element={<MobileVoice />} />
<Route path="/mobile-voice-webrtc/:conversationId" element={<MobileVoice />} />
{/* Regular routes with AppBar and Container */}
<Route
path="*"
element={
<>
<AppBar position="static" role="banner">
<Toolbar>
<Typography variant="h6" component={RouterLink} to="/" sx={{ flexGrow: 1, textDecoration: 'none', color: 'inherit', pt: 1 }}>
Agentic
</Typography>
<Tooltip title="Agents (Alt+1)" arrow>
<Button
color="inherit"
component={RouterLink}
to="/"
aria-label="Go to Agents page (Alt+1)"
>
Agents
</Button>
</Tooltip>
<Tooltip title="Tools (Alt+2)" arrow>
<Button
color="inherit"
component={RouterLink}
to="/tools"
aria-label="Go to Tools page (Alt+2)"
>
Tools
</Button>
</Tooltip>
<Tooltip title="Voice (Alt+3)" arrow>
<Button
color="inherit"
component={RouterLink}
to="/voice"
aria-label="Go to Voice page (Alt+3)"
>
Voice
</Button>
</Tooltip>
<Tooltip title="HTML Display" arrow>
<Button
color="inherit"
component={RouterLink}
to="/html-display"
aria-label="Go to HTML Display page"
>
HTML
</Button>
</Tooltip>
<Box sx={{ flexGrow: 1 }} />
<ServerManagementButtons iconOnly />
<Tooltip title="Keyboard shortcuts (Shift+?)" arrow>
<IconButton
sx={{ ml: 1 }}
onClick={() => setShowKeyboardHelp(true)}
color="inherit"
aria-label="Show keyboard shortcuts"
>
<KeyboardIcon />
</IconButton>
</Tooltip>
<Tooltip title="Toggle theme" arrow>
<IconButton
sx={{ ml: 1 }}
onClick={colorMode.toggleColorMode}
color="inherit"
aria-label="Toggle light/dark theme"
>
{theme.palette.mode === 'dark' ? <Brightness7Icon /> : <Brightness4Icon />}
</IconButton>
</Tooltip>
</Toolbar>
</AppBar>
<Box
id="main-content"
component="main"
role="main"
aria-label="Main content"
sx={{
flexGrow: 1,
bgcolor: 'background.default',
minHeight: 'calc(100vh - 64px)',
height: 'calc(100vh - 64px)', // Explicit height for WebView
overflow: 'auto', // Enable scrolling
p: { xs: 2, sm: 3 },
}}
>
<Container maxWidth="xl">
<Routes>
<Route path="/" element={<AgentDashboard />} />
<Route path="/agents/new" element={<AgentEditor />} />
<Route path="/agents/:name" element={<AgentDashboard />} />
<Route path="/agents/:name/edit" element={<AgentEditor nested={true} />} />
<Route path="/runs/:name" element={<RunConsole />} />
<Route path="/tools" element={<ToolsDashboard />} />
<Route path="/tools/:filename" element={<ToolsDashboard />} />
<Route path="/voice" element={<VoiceDashboard />} />
<Route path="/voice/:conversationId" element={<VoiceDashboard />} />
<Route path="/html-display" element={<HtmlDisplayPage />} />
<Route path="*" element={<Navigate to="/" replace />} />
</Routes>
</Container>
</Box>
</>
}
/>
</Routes>
</Router>
{/* Keyboard Shortcuts Help Dialog */}
<KeyboardShortcutsHelp
open={showKeyboardHelp}
onClose={() => setShowKeyboardHelp(false)}
/>
</SpatialNavigationProvider>
</ThemeProvider>
</ColorModeContext.Provider>
);
}
export const useColorMode = () => useContext(ColorModeContext);