All checks were successful
Release / build-and-release (push) Successful in 25m5s
Retry connectActiveProfile up to 3 times with 1s delay before showing the error page. Persist log buffer to sessionStorage so logs survive page refresh and are visible in the settings log viewer. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
109 lines
3.9 KiB
TypeScript
109 lines
3.9 KiB
TypeScript
import { BrowserRouter, Routes, Route } from "react-router-dom";
|
|
import { useEffect, useState, useRef } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useProfile } from "./contexts/ProfileContext";
|
|
import AppShell from "./components/layout/AppShell";
|
|
import DashboardPage from "./pages/DashboardPage";
|
|
import ImportPage from "./pages/ImportPage";
|
|
import TransactionsPage from "./pages/TransactionsPage";
|
|
import CategoriesPage from "./pages/CategoriesPage";
|
|
import AdjustmentsPage from "./pages/AdjustmentsPage";
|
|
import BudgetPage from "./pages/BudgetPage";
|
|
import ReportsPage from "./pages/ReportsPage";
|
|
import SettingsPage from "./pages/SettingsPage";
|
|
import DocsPage from "./pages/DocsPage";
|
|
import ProfileSelectionPage from "./pages/ProfileSelectionPage";
|
|
import ErrorPage from "./components/shared/ErrorPage";
|
|
|
|
const STARTUP_TIMEOUT_MS = 10_000;
|
|
const MAX_RETRIES = 3;
|
|
const RETRY_DELAY_MS = 1_000;
|
|
|
|
export default function App() {
|
|
const { t } = useTranslation();
|
|
const { activeProfile, isLoading, refreshKey, connectActiveProfile } = useProfile();
|
|
const [dbReady, setDbReady] = useState(false);
|
|
const [startupError, setStartupError] = useState<string | null>(null);
|
|
const timeoutRef = useRef<ReturnType<typeof setTimeout> | null>(null);
|
|
const cancelledRef = useRef(false);
|
|
|
|
useEffect(() => {
|
|
if (activeProfile && !isLoading) {
|
|
setDbReady(false);
|
|
setStartupError(null);
|
|
cancelledRef.current = false;
|
|
|
|
timeoutRef.current = setTimeout(() => {
|
|
setStartupError(t("error.startupTimeout"));
|
|
}, STARTUP_TIMEOUT_MS);
|
|
|
|
const attemptConnect = async (attempt: number): Promise<void> => {
|
|
try {
|
|
await connectActiveProfile();
|
|
if (cancelledRef.current) return;
|
|
if (timeoutRef.current) clearTimeout(timeoutRef.current);
|
|
setDbReady(true);
|
|
} catch (err) {
|
|
if (cancelledRef.current) return;
|
|
console.error(`Failed to connect profile (attempt ${attempt}/${MAX_RETRIES}):`, err);
|
|
if (attempt < MAX_RETRIES) {
|
|
await new Promise((r) => setTimeout(r, RETRY_DELAY_MS));
|
|
if (!cancelledRef.current) return attemptConnect(attempt + 1);
|
|
} else {
|
|
if (timeoutRef.current) clearTimeout(timeoutRef.current);
|
|
setStartupError(err instanceof Error ? err.message : String(err));
|
|
}
|
|
}
|
|
};
|
|
|
|
attemptConnect(1);
|
|
}
|
|
|
|
return () => {
|
|
cancelledRef.current = true;
|
|
if (timeoutRef.current) clearTimeout(timeoutRef.current);
|
|
};
|
|
}, [activeProfile, isLoading, connectActiveProfile, t]);
|
|
|
|
if (isLoading) {
|
|
return (
|
|
<div className="flex items-center justify-center h-screen bg-[var(--background)]">
|
|
<div className="animate-spin rounded-full h-8 w-8 border-b-2 border-[var(--primary)]" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (startupError) {
|
|
return <ErrorPage error={startupError} />;
|
|
}
|
|
|
|
if (!activeProfile) {
|
|
return <ProfileSelectionPage />;
|
|
}
|
|
|
|
if (!dbReady) {
|
|
return (
|
|
<div className="flex items-center justify-center h-screen bg-[var(--background)]">
|
|
<div className="animate-spin rounded-full h-8 w-8 border-b-2 border-[var(--primary)]" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<BrowserRouter key={refreshKey}>
|
|
<Routes>
|
|
<Route element={<AppShell />}>
|
|
<Route path="/" element={<DashboardPage />} />
|
|
<Route path="/import" element={<ImportPage />} />
|
|
<Route path="/transactions" element={<TransactionsPage />} />
|
|
<Route path="/categories" element={<CategoriesPage />} />
|
|
<Route path="/adjustments" element={<AdjustmentsPage />} />
|
|
<Route path="/budget" element={<BudgetPage />} />
|
|
<Route path="/reports" element={<ReportsPage />} />
|
|
<Route path="/settings" element={<SettingsPage />} />
|
|
<Route path="/docs" element={<DocsPage />} />
|
|
</Route>
|
|
</Routes>
|
|
</BrowserRouter>
|
|
);
|
|
}
|