feat: enhance server stats widgets and fix TypeScript/ESLint errors #394

Merged
ZacharyZcR merged 50 commits from feature-server-stats-customization into dev-1.8.0 2025-10-10 03:48:34 +00:00
6 changed files with 3 additions and 6 deletions
Showing only changes of commit c19dbbd8bd - Show all commits
@@ -12,7 +12,7 @@ interface DiskWidgetProps {
metricsHistory: ServerMetrics[]; metricsHistory: ServerMetrics[];
} }
export function DiskWidget({ metrics, metricsHistory }: DiskWidgetProps) { export function DiskWidget({ metrics }: DiskWidgetProps) {
const { t } = useTranslation(); const { t } = useTranslation();
// Prepare radial chart data // Prepare radial chart data
-1
View File
@@ -4,7 +4,6 @@ import { HomepageUpdateLog } from "@/ui/Desktop/Homepage/HompageUpdateLog.tsx";
import { HomepageAlertManager } from "@/ui/Desktop/Homepage/HomepageAlertManager.tsx"; import { HomepageAlertManager } from "@/ui/Desktop/Homepage/HomepageAlertManager.tsx";
import { Button } from "@/components/ui/button.tsx"; import { Button } from "@/components/ui/button.tsx";
import { getUserInfo, getDatabaseHealth, getCookie } from "@/ui/main-axios.ts"; import { getUserInfo, getDatabaseHealth, getCookie } from "@/ui/main-axios.ts";
import { useTranslation } from "react-i18next";
interface HomepageProps { interface HomepageProps {
onSelectView: (view: string) => void; onSelectView: (view: string) => void;
@@ -17,7 +17,7 @@ export function HomepageAlertManager({
const { t } = useTranslation(); const { t } = useTranslation();
const [alerts, setAlerts] = useState<TermixAlert[]>([]); const [alerts, setAlerts] = useState<TermixAlert[]>([]);
const [currentAlertIndex, setCurrentAlertIndex] = useState(0); const [currentAlertIndex, setCurrentAlertIndex] = useState(0);
const [loading, setLoading] = useState(false); const [, setLoading] = useState(false);
const [error, setError] = useState<string | null>(null); const [error, setError] = useState<string | null>(null);
useEffect(() => { useEffect(() => {
-1
View File
@@ -19,7 +19,6 @@ import {
completePasswordReset, completePasswordReset,
getOIDCAuthorizeUrl, getOIDCAuthorizeUrl,
verifyTOTPLogin, verifyTOTPLogin,
setCookie,
getCookie, getCookie,
getServerConfig, getServerConfig,
isElectron, isElectron,
+1 -1
View File
@@ -66,7 +66,7 @@ export function HomepageUpdateLog({ loggedIn }: HomepageUpdateLogProps) {
setVersionInfo(versionRes); setVersionInfo(versionRes);
setError(null); setError(null);
}) })
.catch((err) => { .catch(() => {
setError(t("common.failedToFetchUpdateInfo")); setError(t("common.failedToFetchUpdateInfo"));
}) })
.finally(() => setLoading(false)); .finally(() => setLoading(false));
-1
View File
@@ -19,7 +19,6 @@ import {
completePasswordReset, completePasswordReset,
getOIDCAuthorizeUrl, getOIDCAuthorizeUrl,
verifyTOTPLogin, verifyTOTPLogin,
setCookie,
getCookie, getCookie,
logoutUser, logoutUser,
isElectron, isElectron,