mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-24 22:55:19 +01:00
Enhancement: add bitrate precision config option for speedtest-tracker (#3354)
--------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
This commit is contained in:
parent
312e97d18b
commit
340424391f
@ -16,4 +16,5 @@ Allowed fields: `["download", "upload", "ping"]`.
|
|||||||
widget:
|
widget:
|
||||||
type: speedtest
|
type: speedtest
|
||||||
url: http://speedtest.host.or.ip
|
url: http://speedtest.host.or.ip
|
||||||
|
bitratePrecision: 3 # optional, default is 0
|
||||||
```
|
```
|
||||||
|
@ -450,6 +450,9 @@ export function cleanServiceGroups(groups) {
|
|||||||
// proxmox
|
// proxmox
|
||||||
node,
|
node,
|
||||||
|
|
||||||
|
// speedtest
|
||||||
|
bitratePrecision,
|
||||||
|
|
||||||
// sonarr, radarr
|
// sonarr, radarr
|
||||||
enableQueue,
|
enableQueue,
|
||||||
|
|
||||||
@ -588,6 +591,11 @@ export function cleanServiceGroups(groups) {
|
|||||||
if (type === "healthchecks") {
|
if (type === "healthchecks") {
|
||||||
if (uuid !== undefined) cleanedService.widget.uuid = uuid;
|
if (uuid !== undefined) cleanedService.widget.uuid = uuid;
|
||||||
}
|
}
|
||||||
|
if (type === "speedtest") {
|
||||||
|
if (bitratePrecision !== undefined) {
|
||||||
|
cleanedService.widget.bitratePrecision = parseInt(bitratePrecision, 10);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return cleanedService;
|
return cleanedService;
|
||||||
|
@ -11,6 +11,11 @@ export default function Component({ service }) {
|
|||||||
|
|
||||||
const { data: speedtestData, error: speedtestError } = useWidgetAPI(widget, "speedtest/latest");
|
const { data: speedtestData, error: speedtestError } = useWidgetAPI(widget, "speedtest/latest");
|
||||||
|
|
||||||
|
const bitratePrecision =
|
||||||
|
!widget?.bitratePrecision || Number.isNaN(widget?.bitratePrecision) || widget?.bitratePrecision < 0
|
||||||
|
? 0
|
||||||
|
: widget.bitratePrecision;
|
||||||
|
|
||||||
if (speedtestError) {
|
if (speedtestError) {
|
||||||
return <Container service={service} error={speedtestError} />;
|
return <Container service={service} error={speedtestError} />;
|
||||||
}
|
}
|
||||||
@ -29,9 +34,18 @@ export default function Component({ service }) {
|
|||||||
<Container service={service}>
|
<Container service={service}>
|
||||||
<Block
|
<Block
|
||||||
label="speedtest.download"
|
label="speedtest.download"
|
||||||
value={t("common.bitrate", { value: speedtestData.data.download * 1000 * 1000 })}
|
value={t("common.bitrate", {
|
||||||
|
value: speedtestData.data.download * 1000 * 1000,
|
||||||
|
decimals: bitratePrecision,
|
||||||
|
})}
|
||||||
|
/>
|
||||||
|
<Block
|
||||||
|
label="speedtest.upload"
|
||||||
|
value={t("common.bitrate", {
|
||||||
|
value: speedtestData.data.upload * 1000 * 1000,
|
||||||
|
decimals: bitratePrecision,
|
||||||
|
})}
|
||||||
/>
|
/>
|
||||||
<Block label="speedtest.upload" value={t("common.bitrate", { value: speedtestData.data.upload * 1000 * 1000 })} />
|
|
||||||
<Block
|
<Block
|
||||||
label="speedtest.ping"
|
label="speedtest.ping"
|
||||||
value={t("common.ms", {
|
value={t("common.ms", {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user