-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy pathindex.tsx
More file actions
executable file
·177 lines (166 loc) · 5.08 KB
/
Copy pathindex.tsx
File metadata and controls
executable file
·177 lines (166 loc) · 5.08 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
import { Suspense, lazy } from 'react';
import ReactDOM from 'react-dom/client';
import '@fontsource/space-grotesk/400.css';
import '@fontsource/space-grotesk/500.css';
import '@fontsource/space-grotesk/600.css';
import '@fontsource/space-grotesk/700.css';
import '@fontsource/jetbrains-mono/400.css';
import '@fontsource/jetbrains-mono/500.css';
import '@fontsource/jetbrains-mono/600.css';
import App from './App';
import { ToastProvider } from './components/ui/toast';
import { TooltipProvider } from './components/ui/tooltip';
const LazySettingsPage = lazy(() => import('./components/SettingsPage'));
const LazyTrayPanel = lazy(() => import('./components/TrayPanel'));
const LazyTerminalPopupPage = lazy(() => import('./components/TerminalPopupPage'));
function SettingsWindowFallback() {
return (
<div
style={{
height: '100vh',
display: 'flex',
flexDirection: 'column',
background: 'hsl(var(--background))',
color: 'hsl(var(--foreground))',
fontFamily: 'Space Grotesk, system-ui, sans-serif',
}}
>
<div
style={{
flexShrink: 0,
borderBottom: '1px solid hsl(var(--border))',
padding: '20px 16px 12px',
}}
>
<div style={{ fontSize: 18, fontWeight: 600 }}>Settings</div>
<div style={{ marginTop: 6, fontSize: 13, color: 'hsl(var(--muted-foreground))' }}>
Loading preferences...
</div>
</div>
<div style={{ display: 'flex', flex: 1, minHeight: 0 }}>
<div
style={{
width: 224,
flexShrink: 0,
borderRight: '1px solid hsl(var(--border))',
padding: 12,
display: 'flex',
flexDirection: 'column',
gap: 8,
}}
>
{Array.from({ length: 7 }).map((_, index) => (
<div
key={index}
style={{
height: 36,
borderRadius: 8,
background: index === 0 ? 'hsl(var(--card))' : 'hsl(var(--muted) / 0.45)',
}}
/>
))}
</div>
<div style={{ flex: 1, padding: 20, display: 'flex', flexDirection: 'column', gap: 14 }}>
{Array.from({ length: 6 }).map((_, index) => (
<div
key={index}
style={{
height: index === 0 ? 54 : 76,
borderRadius: 12,
background: 'hsl(var(--muted) / 0.38)',
}}
/>
))}
</div>
</div>
</div>
);
}
function TerminalPopupWindowFallback() {
return (
<div
style={{
width: '100vw',
height: '100vh',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
background: '#0b1015',
color: '#d7e0ea',
}}
>
<svg width="28" height="28" viewBox="0 0 28 28" aria-label="Loading" style={{ opacity: 0.8 }}>
<circle cx="14" cy="14" r="11" fill="none" stroke="currentColor" strokeWidth="2" opacity="0.18" />
<path d="M25 14a11 11 0 0 0-11-11" fill="none" stroke="currentColor" strokeLinecap="round" strokeWidth="2">
<animateTransform
attributeName="transform"
dur="0.75s"
from="0 14 14"
repeatCount="indefinite"
to="360 14 14"
type="rotate"
/>
</path>
</svg>
</div>
);
}
const rootElement = document.getElementById('root');
if (!rootElement) {
throw new Error("Could not find root element to mount to");
}
// Simple hash-based routing for separate windows
const getRoute = () => {
const hash = window.location.hash;
if (hash === '#/settings' || hash.startsWith('#/settings')) {
return 'settings';
}
if (hash === '#/tray' || hash.startsWith('#/tray')) {
return 'tray';
}
if (hash === '#/terminal-popup' || hash.startsWith('#/terminal-popup')) {
return 'terminal-popup';
}
return 'main';
};
const root = ReactDOM.createRoot(rootElement);
const renderApp = () => {
const route = getRoute();
if (route === 'settings') {
root.render(
<ToastProvider>
<TooltipProvider delayDuration={300}>
<Suspense fallback={<SettingsWindowFallback />}>
<LazySettingsPage />
</Suspense>
</TooltipProvider>
</ToastProvider>
);
} else if (route === 'tray') {
root.render(
<ToastProvider>
<TooltipProvider delayDuration={300}>
<Suspense fallback={<div style={{ padding: 12, color: '#fff' }}>Loading tray panel…</div>}>
<LazyTrayPanel />
</Suspense>
</TooltipProvider>
</ToastProvider>
);
} else if (route === 'terminal-popup') {
root.render(
<ToastProvider>
<TooltipProvider delayDuration={300}>
<Suspense fallback={<TerminalPopupWindowFallback />}>
<LazyTerminalPopupPage />
</Suspense>
</TooltipProvider>
</ToastProvider>
);
} else {
root.render(<App />);
}
};
// Initial render
renderApp();
// Listen for hash changes
window.addEventListener('hashchange', renderApp);