mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-01 13:09:31 +01:00
56 lines
1.7 KiB
JavaScript
56 lines
1.7 KiB
JavaScript
import { useTranslation } from "react-i18next";
|
|
import useSWR from "swr";
|
|
|
|
export default function Ping({ group, service, style }) {
|
|
const { t } = useTranslation();
|
|
const { data, error } = useSWR(`/api/ping?${new URLSearchParams({ group, service }).toString()}`, {
|
|
refreshInterval: 30000
|
|
});
|
|
|
|
let colorClass = ""
|
|
let backgroundClass = "bg-theme-500/10 dark:bg-theme-900/50 px-1.5 py-0.5";
|
|
let statusTitle = "HTTP status";
|
|
let statusText;
|
|
|
|
if (error) {
|
|
colorClass = "text-rose-500"
|
|
statusText = t("ping.error")
|
|
statusTitle += " error"
|
|
} else if (!data) {
|
|
colorClass = "text-black/20 dark:text-white/40"
|
|
statusText = t("ping.ping")
|
|
statusTitle += " not available"
|
|
} else if (data.status > 403) {
|
|
colorClass = "text-rose-500/80"
|
|
statusTitle += ` ${data.status}`
|
|
|
|
if (style === "basic") {
|
|
statusText = t("ping.down")
|
|
} else {
|
|
statusText = data.status
|
|
}
|
|
} else {
|
|
const ping = t("common.ms", { value: data.latency, style: "unit", unit: "millisecond", maximumFractionDigits: 0 })
|
|
statusTitle += ` ${data.status} (${ping})`;
|
|
colorClass = "text-emerald-500/80 lowercase"
|
|
|
|
if (style === "basic") {
|
|
statusText = t("ping.up")
|
|
} else {
|
|
statusText = ping
|
|
}
|
|
}
|
|
|
|
if (style === "dot") {
|
|
backgroundClass = 'p-3';
|
|
colorClass = colorClass.replace('text-', 'bg-').replace(/\/\d\d$/, '');
|
|
}
|
|
|
|
return (
|
|
<div className={`w-auto text-center rounded-b-[3px] overflow-hidden ping-status ${backgroundClass}`} title={statusTitle}>
|
|
{style !== 'dot' && <div className={`font-bold uppercase text-[8px] ${colorClass}`}>{statusText}</div>}
|
|
{style === 'dot' && <div className={`rounded-full h-3 w-3 ${colorClass}`}/>}
|
|
</div>
|
|
);
|
|
}
|