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

811 lines
26 KiB
TypeScript
Raw Normal View History

+5
2026-03-08 18:02:14 -05:00
import React, {
useCallback,
Component,
2026-05-06 15:12:07 -05:00
Suspense,
lazy,
+5
2026-03-08 18:02:14 -05:00
type ReactNode,
2026-05-06 15:12:07 -05:00
useEffect,
useRef,
useState,
+5
2026-03-08 18:02:14 -05:00
} from "react";
+7
2025-11-05 10:36:16 -06:00
import { LeftSidebar } from "@/ui/desktop/navigation/LeftSidebar.tsx";
import { AppView } from "@/ui/desktop/navigation/AppView.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";
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";
2026-05-06 15:12:07 -05:00
import {
getUserInfo,
logoutUser,
isCurrentAuthInvalidationError,
} 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";
2026-05-06 15:12:07 -05:00
import { SimpleLoader } from "@/ui/desktop/navigation/animations/SimpleLoader.tsx";
const Dashboard = lazy(() =>
import("@/ui/desktop/apps/dashboard/Dashboard.tsx").then((module) => ({
default: module.Dashboard,
})),
);
const HostManager = lazy(() =>
import("@/ui/desktop/apps/host-manager/hosts/HostManager.tsx").then(
(module) => ({
default: module.HostManager,
}),
),
);
const AdminSettings = lazy(() =>
import("@/ui/desktop/apps/admin/AdminSettings.tsx").then((module) => ({
default: module.AdminSettings,
})),
);
const UserProfile = lazy(() =>
import("@/ui/desktop/user/UserProfile.tsx").then((module) => ({
default: module.UserProfile,
})),
);
const CommandPalette = lazy(() =>
import("@/ui/desktop/apps/command-palette/CommandPalette.tsx").then(
(module) => ({
default: module.CommandPalette,
}),
),
);
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-05-06 15:12:07 -05:00
const isAuthenticatedRef = useRef(false);
2025-11-17 09:46:05 -06:00
+1
2025-12-31 22:20:12 -06:00
const isDarkMode =
theme === "dark" ||
+9
2026-04-22 16:55:23 -05:00
theme === "dracula" ||
theme === "gentlemansChoice" ||
theme === "midnightEspresso" ||
theme === "catppuccinMocha" ||
+1
2025-12-31 22:20:12 -06:00
(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(() => {
+9
2026-04-22 16:55:23 -05:00
const DEGRADED_TOAST_ID = "db-connection-degraded";
const handleDatabaseConnectionDegraded = () => {
// Non-blocking, non-dismissible status toast that stays visible until
// connectivity is recovered. A Reload action lets users force-refresh
// the page if they want to, but the app itself remains fully usable.
toast.loading(
t("common.connectionDegraded", "Server connection lost, recovering…"),
{
id: DEGRADED_TOAST_ID,
duration: Infinity,
dismissible: false,
closeButton: false,
action: {
label: t("common.reload", "Reload"),
onClick: () => window.location.reload(),
},
},
);
2026-01-24 19:49:42 -06:00
};
+9
2026-04-22 16:55:23 -05:00
const handleDatabaseConnectionDegradedCleared = () => {
toast.dismiss(DEGRADED_TOAST_ID);
+4
2026-02-12 22:28:13 -06:00
toast.success(t("common.backendReconnected"));
};
const handleSessionExpired = () => {
setIsAuthenticated(false);
2026-05-06 15:12:07 -05:00
setIsAdmin(false);
setUsername(null);
2026-01-24 19:49:42 -06:00
};
dbHealthMonitor.on(
+9
2026-04-22 16:55:23 -05:00
"database-connection-degraded",
handleDatabaseConnectionDegraded,
2026-01-24 19:49:42 -06:00
);
dbHealthMonitor.on(
+9
2026-04-22 16:55:23 -05:00
"database-connection-degraded-cleared",
handleDatabaseConnectionDegradedCleared,
2026-01-24 19:49:42 -06:00
);
+4
2026-02-12 22:28:13 -06:00
dbHealthMonitor.on("session-expired", handleSessionExpired);
2026-01-24 19:49:42 -06:00
return () => {
dbHealthMonitor.off(
+9
2026-04-22 16:55:23 -05:00
"database-connection-degraded",
handleDatabaseConnectionDegraded,
2026-01-24 19:49:42 -06:00
);
dbHealthMonitor.off(
+9
2026-04-22 16:55:23 -05:00
"database-connection-degraded-cleared",
handleDatabaseConnectionDegradedCleared,
2026-01-24 19:49:42 -06:00
);
+4
2026-02-12 22:28:13 -06:00
dbHealthMonitor.off("session-expired", handleSessionExpired);
+9
2026-04-22 16:55:23 -05:00
toast.dismiss(DEGRADED_TOAST_ID);
2026-01-24 19:49:42 -06:00
};
+9
2026-04-22 16:55:23 -05:00
}, [t]);
2026-01-24 19:49:42 -06:00
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 {
2026-05-06 15:12:07 -05:00
const { getSSHHostById, getSSHHosts } =
await import("@/ui/main-axios.ts");
2026-01-24 19:49:42 -06:00
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]);
+9
2026-04-22 16:55:23 -05:00
const isCheckingAuth = useRef(false);
2026-05-06 15:12:07 -05:00
const clientTunnelAutoStartStarted = useRef(false);
const startClientTunnelAutoStart = useCallback(() => {
if (
clientTunnelAutoStartStarted.current ||
!window.electronAPI?.isElectron
) {
return;
}
clientTunnelAutoStartStarted.current = true;
window.electronAPI.startC2SAutoStartTunnels?.().catch((error) => {
clientTunnelAutoStartStarted.current = false;
console.error("Failed to start client tunnel auto-start entries:", error);
});
}, []);
+9
2026-04-22 16:55:23 -05:00
2025-09-12 14:42:00 -05:00
useEffect(() => {
const checkAuth = () => {
+9
2026-04-22 16:55:23 -05:00
if (isCheckingAuth.current) return;
isCheckingAuth.current = true;
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);
+7
2025-11-05 10:36:16 -06:00
} else {
setIsAuthenticated(true);
setIsAdmin(!!meRes.is_admin);
setUsername(meRes.username || null);
2026-05-06 15:12:07 -05:00
startClientTunnelAutoStart();
2025-10-01 15:40:10 -05:00
}
})
.catch((err) => {
2026-05-06 15:12:07 -05:00
if (isCurrentAuthInvalidationError(err)) {
setIsAuthenticated(false);
setIsAdmin(false);
setUsername(null);
2025-10-01 15:40:10 -05:00
console.warn("Session expired - please log in again");
2026-05-06 15:12:07 -05:00
return;
}
if (!isAuthenticatedRef.current) {
setIsAuthenticated(false);
setIsAdmin(false);
setUsername(null);
2025-10-01 15:40:10 -05:00
}
})
+7
2025-11-05 10:36:16 -06:00
.finally(() => {
setAuthLoading(false);
+9
2026-04-22 16:55:23 -05:00
isCheckingAuth.current = false;
+7
2025-11-05 10:36:16 -06:00
});
2025-09-12 14:42:00 -05:00
};
checkAuth();
const handleStorageChange = () => checkAuth();
window.addEventListener("storage", handleStorageChange);
return () => window.removeEventListener("storage", handleStorageChange);
2026-05-06 15:12:07 -05:00
}, [startClientTunnelAutoStart]);
2025-09-12 14:42:00 -05:00
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);
2026-05-06 15:12:07 -05:00
isAuthenticatedRef.current = isAuthenticated;
2026-01-24 19:49:42 -06:00
}, [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);
2026-05-06 15:12:07 -05:00
startClientTunnelAutoStart();
2025-11-17 09:46:05 -06:00
setTransitionPhase("fadeIn");
setTimeout(() => {
setIsTransitioning(false);
setTransitionPhase("idle");
}, 800);
}, 1200);
+7
2025-11-05 10:36:16 -06:00
},
2026-05-06 15:12:07 -05:00
[startClientTunnelAutoStart],
+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" ||
2026-03-14 20:05:05 -05:00
currentTabData?.type === "rdp" ||
currentTabData?.type === "vnc" ||
currentTabData?.type === "telnet" ||
+1
2025-12-31 22:20:12 -06:00
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";
+9
2026-04-22 16:55:23 -05:00
if (authLoading) {
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
);
}
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">
2026-05-06 15:12:07 -05:00
<Suspense fallback={null}>
<CommandPalette
isOpen={isCommandPaletteOpen}
setIsOpen={setIsCommandPaletteOpen}
/>
</Suspense>
2025-11-17 09:46:05 -06:00
{!isAuthenticated && (
<div className="fixed inset-0 flex items-center justify-center z-[10000] bg-background">
2026-05-06 15:12:07 -05:00
<Suspense fallback={null}>
<Dashboard
isAuthenticated={isAuthenticated}
authLoading={authLoading}
onAuthSuccess={handleAuthSuccess}
isTopbarOpen={isTopbarOpen}
/>
</Suspense>
2025-09-12 14:42:00 -05:00
</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">
2026-05-06 15:12:07 -05:00
<Suspense
fallback={
<div
className="bg-canvas rounded-lg border-2 border-edge relative"
style={{
margin: "74px 17px 8px 8px",
height: "calc(100vh - 82px)",
}}
>
<SimpleLoader
visible={true}
message={t("common.loading")}
/>
</div>
}
>
<Dashboard
isAuthenticated={isAuthenticated}
authLoading={authLoading}
onAuthSuccess={handleAuthSuccess}
isTopbarOpen={isTopbarOpen}
rightSidebarOpen={rightSidebarOpen}
rightSidebarWidth={rightSidebarWidth}
/>
</Suspense>
2025-09-12 14:42:00 -05:00
</div>
)}
{showSshManager && (
<div className="h-screen w-full visible pointer-events-auto static overflow-hidden">
2026-05-06 15:12:07 -05:00
<Suspense
fallback={
<div
className="bg-canvas rounded-lg border-2 border-edge relative"
style={{
margin: "74px 17px 8px 8px",
height: "calc(100vh - 82px)",
}}
>
<SimpleLoader
visible={true}
message={t("common.loading")}
/>
</div>
}
>
<HostManager
isTopbarOpen={isTopbarOpen}
initialTab={currentTabData?.initialTab}
hostConfig={currentTabData?.hostConfig}
_updateTimestamp={currentTabData?._updateTimestamp}
rightSidebarOpen={rightSidebarOpen}
rightSidebarWidth={rightSidebarWidth}
currentTabId={currentTab}
updateTab={updateTab}
/>
</Suspense>
2025-09-12 14:42:00 -05:00
</div>
)}
{showAdmin && (
<div className="h-screen w-full visible pointer-events-auto static overflow-hidden">
2026-05-06 15:12:07 -05:00
<Suspense
fallback={
<div
className="bg-canvas rounded-lg border-2 border-edge relative"
style={{
margin: "74px 17px 8px 8px",
height: "calc(100vh - 82px)",
}}
>
<SimpleLoader
visible={true}
message={t("common.loading")}
/>
</div>
}
>
<AdminSettings
isTopbarOpen={isTopbarOpen}
rightSidebarOpen={rightSidebarOpen}
rightSidebarWidth={rightSidebarWidth}
/>
</Suspense>
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">
2026-05-06 15:12:07 -05:00
<Suspense
fallback={
<div
className="bg-canvas rounded-lg border-2 border-edge relative"
style={{
margin: "74px 17px 8px 8px",
height: "calc(100vh - 82px)",
}}
>
<SimpleLoader
visible={true}
message={t("common.loading")}
/>
</div>
}
>
<UserProfile
isTopbarOpen={isTopbarOpen}
rightSidebarOpen={rightSidebarOpen}
rightSidebarWidth={rightSidebarWidth}
initialTab={currentTabData?.initialTab}
/>
</Suspense>
2025-09-12 14:42:00 -05:00
</div>
)}
<TopNavbar
isTopbarOpen={isTopbarOpen}
setIsTopbarOpen={setIsTopbarOpen}
2025-11-17 09:46:05 -06:00
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>
);
}
+5
2026-03-08 18:02:14 -05:00
class TabErrorBoundary extends Component<
{ children: ReactNode },
{ hasError: boolean; errorCount: number }
> {
constructor(props: { children: ReactNode }) {
super(props);
this.state = { hasError: false, errorCount: 0 };
}
static getDerivedStateFromError(error: Error) {
if (error.message?.includes("useTabs must be used within a TabProvider")) {
return { hasError: true };
}
throw error;
}
2026-05-06 15:12:07 -05:00
componentDidCatch(error: Error, _errorInfo: ErrorInfo) {
+5
2026-03-08 18:02:14 -05:00
if (error.message?.includes("useTabs must be used within a TabProvider")) {
console.warn(
"TabProvider mounting race condition detected, recovering...",
);
this.setState((prev) => ({ errorCount: prev.errorCount + 1 }));
setTimeout(() => {
this.setState({ hasError: false });
}, 0);
}
}
render() {
if (this.state.hasError) {
return null;
}
return this.props.children;
}
}
2025-09-12 14:42:00 -05:00
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>
+5
2026-03-08 18:02:14 -05:00
<TabErrorBoundary>
<ServerStatusProvider isAuthenticated={isAuthenticated}>
<CommandHistoryProvider>
<AppContent onAuthStateChange={setIsAuthenticated} />
</CommandHistoryProvider>
</ServerStatusProvider>
</TabErrorBoundary>
2025-09-12 14:42:00 -05:00
</TabProvider>
);
}
export default DesktopApp;