mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-05 06:53:39 +01:00
40 lines
1001 B
React
40 lines
1001 B
React
![]() |
import useSWR from "swr";
|
||
|
|
||
|
import Widget from "../widget";
|
||
|
import Block from "../block";
|
||
|
|
||
|
import { formatBits } from "utils/stats-helpers";
|
||
|
|
||
|
export default function Speedtest({ service }) {
|
||
|
const config = service.widget;
|
||
|
|
||
|
function buildApiUrl(endpoint) {
|
||
|
const { url } = config;
|
||
|
return `${url}/api/${endpoint}`;
|
||
|
}
|
||
|
|
||
|
const { data: speedtestData, error: speedtestError } = useSWR(buildApiUrl("speedtest/latest"));
|
||
|
|
||
|
if (speedtestError) {
|
||
|
return <Widget error="Speedtest API Error" />;
|
||
|
}
|
||
|
|
||
|
if (!speedtestData) {
|
||
|
return (
|
||
|
<Widget>
|
||
|
<Block label="Download" />
|
||
|
<Block label="Upload" />
|
||
|
<Block label="Ping" />
|
||
|
</Widget>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<Widget>
|
||
|
<Block label="Download" value={`${formatBits(speedtestData.data.download * 1024 * 1024)}ps`} />
|
||
|
<Block label="Upload" value={`${formatBits(speedtestData.data.upload * 1024 * 1024)}ps`} />
|
||
|
<Block label="Ping" value={`${speedtestData.data.ping} ms`} />
|
||
|
</Widget>
|
||
|
);
|
||
|
}
|