Files
Termix/src/ui/desktop/DesktopApp.tsx
T

629 lines
21 KiB
TypeScript
Raw Normal View History

2025-11-17 09:46:05 -06:00
import React, { useState, useEffect, useCallback, useRef } from "react";
+7
2025-11-05 10:36:16 -06:00
import { LeftSidebar } from "@/ui/desktop/navigation/LeftSidebar.tsx";
import { Dashboard } from "@/ui/desktop/apps/dashboard/Dashboard.tsx";
import { AppView } from "@/ui/desktop/navigation/AppView.tsx";
+1
2025-12-31 22:20:12 -06:00
import { HostManager } from "@/ui/desktop/apps/host-manager/hosts/HostManager.tsx";
2025-09-12 14:42:00 -05:00
import {
TabProvider,
useTabs,
+7
2025-11-05 10:36:16 -06:00
} from "@/ui/desktop/navigation/tabs/TabContext.tsx";
import { TopNavbar } from "@/ui/desktop/navigation/TopNavbar.tsx";
+1
2025-12-31 22:20:12 -06:00
import { CommandHistoryProvider } from "@/ui/desktop/apps/features/terminal/command-history/CommandHistoryContext.tsx";
2026-01-24 19:49:42 -06:00
import { ServerStatusProvider } from "@/ui/contexts/ServerStatusContext";
+1
2025-12-31 22:20:12 -06:00
import { AdminSettings } from "@/ui/desktop/apps/admin/AdminSettings.tsx";
+7
2025-11-05 10:36:16 -06:00
import { UserProfile } from "@/ui/desktop/user/UserProfile.tsx";
2026-01-24 19:49:42 -06:00
import { NetworkGraphCard } from "@/ui/desktop/apps/dashboard/cards/NetworkGraphCard";
2025-09-12 14:42:00 -05:00
import { Toaster } from "@/components/ui/sonner.tsx";
2026-01-24 19:49:42 -06:00
import { toast } from "sonner";
2025-11-17 09:46:05 -06:00
import { CommandPalette } from "@/ui/desktop/apps/command-palette/CommandPalette.tsx";
import { getUserInfo, logoutUser, isElectron } from "@/ui/main-axios.ts";
+1
2025-12-31 22:20:12 -06:00
import { useTheme } from "@/components/theme-provider";
2026-01-24 19:49:42 -06:00
import { dbHealthMonitor } from "@/lib/db-health-monitor.ts";
import { useTranslation } from "react-i18next";
2025-09-12 14:42:00 -05:00
2026-01-24 19:49:42 -06:00
function AppContent({
onAuthStateChange,
}: {
onAuthStateChange?: (isAuthenticated: boolean) => void;
}) {
const { t } = useTranslation();
2025-09-12 14:42:00 -05:00
const [isAuthenticated, setIsAuthenticated] = useState(false);
const [username, setUsername] = useState<string | null>(null);
const [isAdmin, setIsAdmin] = useState(false);
const [authLoading, setAuthLoading] = useState(true);
2025-10-06 10:11:25 -05:00
const [isTopbarOpen, setIsTopbarOpen] = useState<boolean>(() => {
const saved = localStorage.getItem("topNavbarOpen");
return saved !== null ? JSON.parse(saved) : true;
});
2025-11-17 09:46:05 -06:00
const [isTransitioning, setIsTransitioning] = useState(false);
const [transitionPhase, setTransitionPhase] = useState<
"idle" | "fadeOut" | "fadeIn"
>("idle");
2026-01-24 19:49:42 -06:00
const { currentTab, tabs, updateTab, addTab } = useTabs();
2025-11-17 09:46:05 -06:00
const [isCommandPaletteOpen, setIsCommandPaletteOpen] = useState(false);
+1
2025-12-31 22:20:12 -06:00
const { theme, setTheme } = useTheme();
2025-11-17 09:46:05 -06:00
const [rightSidebarOpen, setRightSidebarOpen] = useState(false);
const [rightSidebarWidth, setRightSidebarWidth] = useState(400);
2026-01-24 19:49:42 -06:00
const [dbConnectionFailed, setDbConnectionFailed] = useState(false);
2025-11-17 09:46:05 -06:00
+1
2025-12-31 22:20:12 -06:00
const isDarkMode =
theme === "dark" ||
(theme === "system" &&
window.matchMedia("(prefers-color-scheme: dark)").matches);
const lineColor = isDarkMode ? "#151517" : "#f9f9f9";
2025-11-17 09:46:05 -06:00
const lastShiftPressTime = useRef(0);
+1
2025-12-31 22:20:12 -06:00
const lastAltPressTime = useRef(0);
2026-01-24 19:49:42 -06:00
useEffect(() => {
const handleDatabaseConnectionLost = () => {
setDbConnectionFailed(true);
setIsAuthenticated(false);
};
const handleDatabaseConnectionRestored = () => {
setDbConnectionFailed(false);
window.location.reload();
};
dbHealthMonitor.on(
"database-connection-lost",
handleDatabaseConnectionLost,
);
dbHealthMonitor.on(
"database-connection-restored",
handleDatabaseConnectionRestored,
);
return () => {
dbHealthMonitor.off(
"database-connection-lost",
handleDatabaseConnectionLost,
);
dbHealthMonitor.off(
"database-connection-restored",
handleDatabaseConnectionRestored,
);
};
}, []);
2025-11-17 09:46:05 -06:00
useEffect(() => {
const handleKeyDown = (event: KeyboardEvent) => {
if (event.code === "ShiftLeft") {
if (event.repeat) {
return;
}
2026-01-24 19:49:42 -06:00
const shortcutEnabled =
localStorage.getItem("commandPaletteShortcutEnabled") !== "false";
if (!shortcutEnabled) {
return;
}
2025-11-17 09:46:05 -06:00
const now = Date.now();
if (now - lastShiftPressTime.current < 300) {
setIsCommandPaletteOpen((isOpen) => !isOpen);
lastShiftPressTime.current = 0;
} else {
lastShiftPressTime.current = now;
}
}
+1
2025-12-31 22:20:12 -06:00
if (event.code === "AltLeft" && !event.repeat) {
const now = Date.now();
if (now - lastAltPressTime.current < 300) {
const currentIsDark =
theme === "dark" ||
(theme === "system" &&
window.matchMedia("(prefers-color-scheme: dark)").matches);
const newTheme = currentIsDark ? "light" : "dark";
setTheme(newTheme);
lastAltPressTime.current = 0;
} else {
lastAltPressTime.current = now;
}
}
2025-11-17 09:46:05 -06:00
if (event.key === "Escape") {
setIsCommandPaletteOpen(false);
}
};
window.addEventListener("keydown", handleKeyDown);
return () => {
window.removeEventListener("keydown", handleKeyDown);
};
+1
2025-12-31 22:20:12 -06:00
}, [theme, setTheme]);
2025-09-12 14:42:00 -05:00
2026-01-24 19:49:42 -06:00
useEffect(() => {
const path = window.location.pathname;
const terminalMatch = path.match(/^\/terminal\/([a-zA-Z0-9_-]+)$/);
const legacyMatch = path.match(/^\/hosts\/([a-zA-Z0-9_-]+)\/terminal$/);
const hostIdentifier = terminalMatch?.[1] || legacyMatch?.[1];
if (hostIdentifier) {
const openTerminal = async () => {
try {
const { getSSHHostById, getSSHHosts } =
await import("@/ui/main-axios.ts");
let host = null;
if (/^\d+$/.test(hostIdentifier)) {
host = await getSSHHostById(parseInt(hostIdentifier, 10));
} else {
const hosts = await getSSHHosts();
host =
hosts.find((h: { name?: string }) => h.name === hostIdentifier) ||
null;
}
if (host) {
addTab({
type: "terminal",
title: host.name || host.ip,
data: { host, initialCommand: "" },
});
window.history.replaceState({}, "", "/");
} else {
toast.error(`Host "${hostIdentifier}" not found`);
}
} catch (error) {
console.error("Failed to open terminal:", error);
toast.error("Failed to open terminal for host");
}
};
openTerminal();
}
}, [addTab]);
2025-09-12 14:42:00 -05:00
useEffect(() => {
const checkAuth = () => {
2025-10-01 15:40:10 -05:00
setAuthLoading(true);
getUserInfo()
.then((meRes) => {
+7
2025-11-05 10:36:16 -06:00
if (typeof meRes === "string" || !meRes.username) {
2025-09-12 14:42:00 -05:00
setIsAuthenticated(false);
setIsAdmin(false);
setUsername(null);
2025-11-17 09:46:05 -06:00
localStorage.removeItem("jwt");
+7
2025-11-05 10:36:16 -06:00
} else {
setIsAuthenticated(true);
setIsAdmin(!!meRes.is_admin);
setUsername(meRes.username || null);
2025-10-01 15:40:10 -05:00
}
})
.catch((err) => {
setIsAuthenticated(false);
setIsAdmin(false);
setUsername(null);
2025-11-17 09:46:05 -06:00
localStorage.removeItem("jwt");
2025-10-01 15:40:10 -05:00
const errorCode = err?.response?.data?.code;
if (errorCode === "SESSION_EXPIRED") {
console.warn("Session expired - please log in again");
}
})
+7
2025-11-05 10:36:16 -06:00
.finally(() => {
setAuthLoading(false);
});
2025-09-12 14:42:00 -05:00
};
checkAuth();
const handleStorageChange = () => checkAuth();
window.addEventListener("storage", handleStorageChange);
return () => window.removeEventListener("storage", handleStorageChange);
}, []);
2025-10-06 10:11:25 -05:00
useEffect(() => {
localStorage.setItem("topNavbarOpen", JSON.stringify(isTopbarOpen));
}, [isTopbarOpen]);
2026-01-24 19:49:42 -06:00
useEffect(() => {
onAuthStateChange?.(isAuthenticated);
}, [isAuthenticated, onAuthStateChange]);
2025-09-12 14:42:00 -05:00
+7
2025-11-05 10:36:16 -06:00
const handleAuthSuccess = useCallback(
(authData: {
isAdmin: boolean;
username: string | null;
userId: string | null;
}) => {
2025-11-17 09:46:05 -06:00
setIsTransitioning(true);
setTransitionPhase("fadeOut");
setTimeout(() => {
setIsAuthenticated(true);
setIsAdmin(authData.isAdmin);
setUsername(authData.username);
setTransitionPhase("fadeIn");
setTimeout(() => {
setIsTransitioning(false);
setTransitionPhase("idle");
}, 800);
}, 1200);
+7
2025-11-05 10:36:16 -06:00
},
[],
);
2025-09-12 14:42:00 -05:00
2025-11-17 09:46:05 -06:00
const handleLogout = useCallback(async () => {
setIsTransitioning(true);
setTransitionPhase("fadeOut");
setTimeout(async () => {
try {
await logoutUser();
} catch (error) {
console.error("Logout failed:", error);
}
window.location.reload();
}, 1200);
}, []);
2025-09-12 14:42:00 -05:00
const currentTabData = tabs.find((tab) => tab.id === currentTab);
const showTerminalView =
currentTabData?.type === "terminal" ||
+1
2025-12-31 22:20:12 -06:00
currentTabData?.type === "server_stats" ||
currentTabData?.type === "file_manager" ||
currentTabData?.type === "tunnel" ||
2026-01-24 19:49:42 -06:00
currentTabData?.type === "docker" ||
currentTabData?.type === "network_graph";
2025-09-12 14:42:00 -05:00
const showHome = currentTabData?.type === "home";
const showSshManager = currentTabData?.type === "ssh_manager";
const showAdmin = currentTabData?.type === "admin";
const showProfile = currentTabData?.type === "user_profile";
2026-01-24 19:49:42 -06:00
if (authLoading && !dbConnectionFailed) {
2025-11-17 09:46:05 -06:00
return (
<div
2026-01-24 19:49:42 -06:00
className="fixed inset-0 flex items-center justify-center"
2025-11-17 09:46:05 -06:00
style={{
+1
2025-12-31 22:20:12 -06:00
background: "var(--bg-elevated)",
2025-11-17 09:46:05 -06:00
backgroundImage: `repeating-linear-gradient(
+1
2025-12-31 22:20:12 -06:00
45deg,
2025-11-17 09:46:05 -06:00
transparent,
transparent 35px,
+1
2025-12-31 22:20:12 -06:00
${lineColor} 35px,
${lineColor} 37px
2025-11-17 09:46:05 -06:00
)`,
}}
>
2026-01-24 19:49:42 -06:00
<div className="w-[420px] max-w-full p-8 flex flex-col backdrop-blur-sm bg-card/50 rounded-2xl shadow-xl border-2 border-edge overflow-y-auto thin-scrollbar my-2 animate-in fade-in zoom-in-95 duration-300">
<div className="flex items-center justify-center h-32">
<div className="text-center">
<div className="w-8 h-8 border-2 border-primary border-t-transparent rounded-full animate-spin mx-auto mb-4" />
<p className="text-muted-foreground">
{t("common.checkingAuthentication")}
</p>
</div>
</div>
2025-11-17 09:46:05 -06:00
</div>
</div>
);
}
2026-01-24 19:49:42 -06:00
if (dbConnectionFailed) {
return (
<div className="h-screen w-screen overflow-hidden bg-background">
<div className="fixed inset-0 flex items-center justify-center z-[10000] bg-background">
<Dashboard
isAuthenticated={false}
authLoading={false}
onAuthSuccess={handleAuthSuccess}
isTopbarOpen={isTopbarOpen}
onSelectView={() => {}}
initialDbError="Database connection failed"
/>
</div>
<Toaster
position="bottom-right"
richColors={false}
closeButton
duration={5000}
offset={20}
/>
</div>
);
}
2025-09-12 14:42:00 -05:00
return (
2025-11-17 09:46:05 -06:00
<div className="h-screen w-screen overflow-hidden bg-background">
<CommandPalette
isOpen={isCommandPaletteOpen}
setIsOpen={setIsCommandPaletteOpen}
/>
{!isAuthenticated && (
<div className="fixed inset-0 flex items-center justify-center z-[10000] bg-background">
+7
2025-11-05 10:36:16 -06:00
<Dashboard
2025-09-12 14:42:00 -05:00
isAuthenticated={isAuthenticated}
authLoading={authLoading}
onAuthSuccess={handleAuthSuccess}
isTopbarOpen={isTopbarOpen}
/>
</div>
)}
{isAuthenticated && (
<LeftSidebar
disabled={!isAuthenticated || authLoading}
isAdmin={isAdmin}
username={username}
2025-11-17 09:46:05 -06:00
onLogout={handleLogout}
2025-09-12 14:42:00 -05:00
>
2025-10-01 15:40:10 -05:00
<div
className="h-screen w-full visible pointer-events-auto static overflow-hidden"
style={{ display: showTerminalView ? "block" : "none" }}
>
2025-11-17 09:46:05 -06:00
<AppView
isTopbarOpen={isTopbarOpen}
rightSidebarOpen={rightSidebarOpen}
rightSidebarWidth={rightSidebarWidth}
/>
2025-10-01 15:40:10 -05:00
</div>
2025-09-12 14:42:00 -05:00
{showHome && (
<div className="h-screen w-full visible pointer-events-auto static overflow-hidden">
+7
2025-11-05 10:36:16 -06:00
<Dashboard
2025-09-12 14:42:00 -05:00
isAuthenticated={isAuthenticated}
authLoading={authLoading}
onAuthSuccess={handleAuthSuccess}
isTopbarOpen={isTopbarOpen}
2025-11-17 09:46:05 -06:00
rightSidebarOpen={rightSidebarOpen}
rightSidebarWidth={rightSidebarWidth}
2025-09-12 14:42:00 -05:00
/>
</div>
)}
{showSshManager && (
<div className="h-screen w-full visible pointer-events-auto static overflow-hidden">
<HostManager
isTopbarOpen={isTopbarOpen}
+7
2025-11-05 10:36:16 -06:00
initialTab={currentTabData?.initialTab}
hostConfig={currentTabData?.hostConfig}
+1
2025-12-31 22:20:12 -06:00
_updateTimestamp={currentTabData?._updateTimestamp}
2025-11-17 09:46:05 -06:00
rightSidebarOpen={rightSidebarOpen}
rightSidebarWidth={rightSidebarWidth}
+1
2025-12-31 22:20:12 -06:00
currentTabId={currentTab}
updateTab={updateTab}
2025-09-12 14:42:00 -05:00
/>
</div>
)}
{showAdmin && (
<div className="h-screen w-full visible pointer-events-auto static overflow-hidden">
2025-11-17 09:46:05 -06:00
<AdminSettings
isTopbarOpen={isTopbarOpen}
rightSidebarOpen={rightSidebarOpen}
rightSidebarWidth={rightSidebarWidth}
/>
2025-09-12 14:42:00 -05:00
</div>
)}
{showProfile && (
+1
2025-12-31 22:20:12 -06:00
<div className="h-screen w-full visible pointer-events-auto static overflow-auto thin-scrollbar">
2025-11-17 09:46:05 -06:00
<UserProfile
isTopbarOpen={isTopbarOpen}
rightSidebarOpen={rightSidebarOpen}
rightSidebarWidth={rightSidebarWidth}
/>
2025-09-12 14:42:00 -05:00
</div>
)}
<TopNavbar
isTopbarOpen={isTopbarOpen}
setIsTopbarOpen={setIsTopbarOpen}
2025-11-17 09:46:05 -06:00
onOpenCommandPalette={() => setIsCommandPaletteOpen(true)}
onRightSidebarStateChange={(isOpen, width) => {
setRightSidebarOpen(isOpen);
setRightSidebarWidth(width);
}}
2025-09-12 14:42:00 -05:00
/>
</LeftSidebar>
)}
2025-11-17 09:46:05 -06:00
{isTransitioning && (
<div
+1
2025-12-31 22:20:12 -06:00
className={`fixed inset-0 z-[20000] transition-opacity duration-700 ${
2025-11-17 09:46:05 -06:00
transitionPhase === "fadeOut" ? "opacity-100" : "opacity-0"
}`}
+1
2025-12-31 22:20:12 -06:00
style={{
background: "var(--bg-elevated)",
backgroundImage: `repeating-linear-gradient(
45deg,
transparent,
transparent 35px,
${lineColor} 35px,
${lineColor} 37px
)`,
}}
2025-11-17 09:46:05 -06:00
>
{transitionPhase === "fadeOut" && (
<>
<div className="absolute inset-0 flex items-center justify-center overflow-hidden">
<div
className="absolute w-0 h-0 bg-primary/10 rounded-full"
style={{
animation:
"ripple 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards",
animationDelay: "0ms",
willChange: "width, height, opacity",
transform: "translateZ(0)",
}}
/>
<div
className="absolute w-0 h-0 bg-primary/7 rounded-full"
style={{
animation:
"ripple 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards",
animationDelay: "200ms",
willChange: "width, height, opacity",
transform: "translateZ(0)",
}}
/>
<div
className="absolute w-0 h-0 bg-primary/5 rounded-full"
style={{
animation:
"ripple 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards",
animationDelay: "400ms",
willChange: "width, height, opacity",
transform: "translateZ(0)",
}}
/>
<div
className="absolute w-0 h-0 bg-primary/3 rounded-full"
style={{
animation:
"ripple 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards",
animationDelay: "600ms",
willChange: "width, height, opacity",
transform: "translateZ(0)",
}}
/>
<div
className="relative z-10 text-center"
style={{
animation:
"logoFade 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards",
willChange: "opacity, transform",
}}
>
<div
className="text-7xl font-bold tracking-wider"
style={{
fontFamily:
"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace",
animation:
"logoGlow 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards",
willChange: "color, text-shadow",
}}
>
TERMIX
</div>
<div
className="text-sm text-muted-foreground mt-3 tracking-widest"
style={{
animation:
"subtitleFade 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards",
willChange: "opacity, transform",
}}
>
SSH SERVER MANAGER
</div>
</div>
</div>
<style>{`
@keyframes ripple {
0% {
width: 0;
height: 0;
opacity: 1;
}
30% {
opacity: 0.6;
}
70% {
opacity: 0.3;
}
100% {
width: 200vmax;
height: 200vmax;
opacity: 0;
}
}
@keyframes logoFade {
0% {
opacity: 0;
transform: scale(0.85) translateZ(0);
}
25% {
opacity: 1;
transform: scale(1) translateZ(0);
}
75% {
opacity: 1;
transform: scale(1) translateZ(0);
}
100% {
opacity: 0;
transform: scale(1.05) translateZ(0);
}
}
@keyframes logoGlow {
0% {
color: hsl(var(--primary));
text-shadow: none;
}
25% {
color: hsl(var(--primary));
text-shadow:
0 0 20px hsla(var(--primary), 0.3),
0 0 40px hsla(var(--primary), 0.2),
0 0 60px hsla(var(--primary), 0.1);
}
75% {
color: hsl(var(--primary));
text-shadow:
0 0 20px hsla(var(--primary), 0.3),
0 0 40px hsla(var(--primary), 0.2),
0 0 60px hsla(var(--primary), 0.1);
}
100% {
color: hsl(var(--primary));
text-shadow: none;
}
}
@keyframes subtitleFade {
0%, 30% {
opacity: 0;
transform: translateY(10px) translateZ(0);
}
50% {
opacity: 1;
transform: translateY(0) translateZ(0);
}
75% {
opacity: 1;
transform: translateY(0) translateZ(0);
}
100% {
opacity: 0;
transform: translateY(-5px) translateZ(0);
}
}
`}</style>
</>
)}
</div>
)}
2025-09-12 14:42:00 -05:00
<Toaster
position="bottom-right"
richColors={false}
closeButton
duration={5000}
offset={20}
/>
</div>
);
}
function DesktopApp() {
2026-01-24 19:49:42 -06:00
const [isAuthenticated, setIsAuthenticated] = useState(false);
2025-09-12 14:42:00 -05:00
return (
<TabProvider>
2026-01-24 19:49:42 -06:00
<ServerStatusProvider isAuthenticated={isAuthenticated}>
<CommandHistoryProvider>
<AppContent onAuthStateChange={setIsAuthenticated} />
</CommandHistoryProvider>
</ServerStatusProvider>
2025-09-12 14:42:00 -05:00
</TabProvider>
);
}
export default DesktopApp;