Files
Termix/src/main.tsx
T

163 lines
4.9 KiB
TypeScript
Raw Normal View History

+7
2025-11-05 10:36:16 -06:00
/* eslint-disable react-refresh/only-export-components */
2025-09-12 14:42:00 -05:00
import { StrictMode, useEffect, useState, useRef } from "react";
import { createRoot } from "react-dom/client";
import "./index.css";
+7
2025-11-05 10:36:16 -06:00
import DesktopApp from "@/ui/desktop/DesktopApp.tsx";
import { MobileApp } from "@/ui/mobile/MobileApp.tsx";
2025-09-12 14:42:00 -05:00
import { ThemeProvider } from "@/components/theme-provider";
+7
2025-11-05 10:36:16 -06:00
import { ElectronVersionCheck } from "@/ui/desktop/user/ElectronVersionCheck.tsx";
2025-09-12 14:42:00 -05:00
import "./i18n/i18n";
import { isElectron } from "./ui/main-axios.ts";
2026-03-14 20:05:05 -05:00
import HostManagerApp from "./ui/desktop/apps/host-manager/HostManagerApp.tsx";
2026-01-24 19:49:42 -06:00
import TerminalApp from "./ui/desktop/apps/features/terminal/TerminalApp.tsx";
import FileManagerApp from "./ui/desktop/apps/features/file-manager/FileManagerApp.tsx";
import TunnelApp from "./ui/desktop/apps/features/tunnel/TunnelApp.tsx";
import ServerStatsApp from "./ui/desktop/apps/features/server-stats/ServerStatsApp.tsx";
import DockerApp from "./ui/desktop/apps/features/docker/DockerApp.tsx";
2026-03-14 20:05:05 -05:00
import GuacamoleApp from "@/ui/desktop/apps/features/guacamole/GuacamoleApp.tsx";
2026-01-24 19:49:42 -06:00
const FullscreenApp: React.FC = () => {
const searchParams = new URLSearchParams(window.location.search);
const view = searchParams.get("view");
const hostId = searchParams.get("hostId");
switch (view) {
case "host-manager":
return <HostManagerApp />;
case "terminal":
return <TerminalApp hostId={hostId || undefined} />;
case "file-manager":
return <FileManagerApp hostId={hostId || undefined} />;
case "tunnel":
return <TunnelApp hostId={hostId || undefined} />;
case "server-stats":
return <ServerStatsApp hostId={hostId || undefined} />;
case "docker":
return <DockerApp hostId={hostId || undefined} />;
2026-03-14 20:05:05 -05:00
case "rdp":
case "vnc":
case "telnet":
return <GuacamoleApp hostId={hostId || undefined} />;
2026-01-24 19:49:42 -06:00
default:
return <DesktopApp />;
}
};
import { useServiceWorker } from "@/hooks/use-service-worker";
2025-08-07 02:20:27 -05:00
2025-09-12 14:42:00 -05:00
function useWindowWidth() {
const [width, setWidth] = useState(window.innerWidth);
const lastSwitchTime = useRef(0);
const isCurrentlyMobile = useRef(window.innerWidth < 768);
const hasSwitchedOnce = useRef(false);
useEffect(() => {
let timeoutId: NodeJS.Timeout;
const handleResize = () => {
clearTimeout(timeoutId);
timeoutId = setTimeout(() => {
const newWidth = window.innerWidth;
const newIsMobile = newWidth < 768;
const now = Date.now();
if (hasSwitchedOnce.current && now - lastSwitchTime.current < 10000) {
setWidth(newWidth);
return;
}
if (
newIsMobile !== isCurrentlyMobile.current &&
now - lastSwitchTime.current > 5000
) {
lastSwitchTime.current = now;
isCurrentlyMobile.current = newIsMobile;
hasSwitchedOnce.current = true;
setWidth(newWidth);
} else {
setWidth(newWidth);
}
}, 2000);
};
window.addEventListener("resize", handleResize);
return () => {
clearTimeout(timeoutId);
window.removeEventListener("resize", handleResize);
};
}, []);
return width;
}
function RootApp() {
const width = useWindowWidth();
const isMobile = width < 768;
+7
2025-11-05 10:36:16 -06:00
const [showVersionCheck, setShowVersionCheck] = useState(true);
2025-09-12 14:42:00 -05:00
2026-01-24 19:49:42 -06:00
useServiceWorker();
+7
2025-11-05 10:36:16 -06:00
const userAgent =
navigator.userAgent || navigator.vendor || (window as any).opera || "";
const isTermixMobile = /Termix-Mobile/.test(userAgent);
2026-01-24 19:49:42 -06:00
const searchParams = new URLSearchParams(window.location.search);
const isFullscreen = searchParams.has("view");
+7
2025-11-05 10:36:16 -06:00
const renderApp = () => {
2026-01-24 19:49:42 -06:00
if (isFullscreen) {
return <FullscreenApp />;
}
+7
2025-11-05 10:36:16 -06:00
if (isElectron()) {
return <DesktopApp />;
}
if (isTermixMobile) {
return <MobileApp key="mobile" />;
}
return isMobile ? <MobileApp key="mobile" /> : <DesktopApp key="desktop" />;
};
return (
<>
2026-01-24 19:49:42 -06:00
{!isFullscreen && (
<div
className="fixed inset-0 pointer-events-none"
style={{
backgroundColor: "var(--bg-base)",
backgroundImage: `linear-gradient(
135deg,
transparent 0%,
transparent 49%,
rgba(128, 128, 128, 0.03) 49%,
rgba(128, 128, 128, 0.03) 51%,
transparent 51%,
transparent 100%
)`,
backgroundSize: "80px 80px",
zIndex: 0,
}}
/>
)}
+7
2025-11-05 10:36:16 -06:00
<div className="relative min-h-screen" style={{ zIndex: 1 }}>
2026-01-24 19:49:42 -06:00
{isElectron() && showVersionCheck && !isFullscreen ? (
+7
2025-11-05 10:36:16 -06:00
<ElectronVersionCheck
onContinue={() => setShowVersionCheck(false)}
isAuthenticated={false}
/>
) : (
renderApp()
)}
</div>
</>
);
2025-09-12 14:42:00 -05:00
}
createRoot(document.getElementById("root")!).render(
<StrictMode>
<ThemeProvider defaultTheme="dark" storageKey="vite-ui-theme">
<RootApp />
</ThemeProvider>
</StrictMode>,
);