Feature: Add peaNUT Widget (#2450)
--------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>pull/2463/head
parent
a72ccb6d27
commit
bccd73fe2d
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: PeaNUT
|
||||
description: PeaNUT Widget Configuration
|
||||
---
|
||||
|
||||
This widget adds support for [Network UPS Tools](https://networkupstools.org/) via a third party tool, [PeaNUT](https://github.com/Brandawg93/PeaNUT).
|
||||
|
||||
The default ups name is `ups`. To configure more than one ups, you must create multiple peanut services.
|
||||
|
||||
Allowed fields: `["battery_charge", "ups_load", "ups_status"]`
|
||||
|
||||
!!! note
|
||||
|
||||
This widget requires an additional tool, [PeaNUT](https://github.com/Brandawg93/PeaNUT), as noted. Other projects exist to achieve similar results using a `customapi` widget, for example [NUTCase](https://github.com/ArthurMitchell42/nutcase#using-nutcase-homepage).
|
||||
|
||||
```yaml
|
||||
widget:
|
||||
type: peanut
|
||||
url: http://peanut.host.or.ip:port
|
||||
key: nameofyourups
|
||||
```
|
@ -0,0 +1,49 @@
|
||||
import { useTranslation } from "next-i18next";
|
||||
|
||||
import Container from "components/services/widget/container";
|
||||
import Block from "components/services/widget/block";
|
||||
import useWidgetAPI from "utils/proxy/use-widget-api";
|
||||
|
||||
export default function Component({ service }) {
|
||||
const { widget } = service;
|
||||
const { t } = useTranslation();
|
||||
|
||||
const { data: upsData, error: upsError } = useWidgetAPI(widget, "devices");
|
||||
|
||||
if (upsError) {
|
||||
return <Container service={service} error={upsError} />;
|
||||
}
|
||||
|
||||
if (!upsData) {
|
||||
return (
|
||||
<Container service={service}>
|
||||
<Block label="peanut.battery_charge" />
|
||||
<Block label="peanut.ups_load" />
|
||||
<Block label="peanut.ups_status" />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
|
||||
let status;
|
||||
switch (upsData.ups_status) {
|
||||
case "OL":
|
||||
status = t("peanut.online");
|
||||
break;
|
||||
case "OB":
|
||||
status = t("peanut.on_battery");
|
||||
break;
|
||||
case "LB":
|
||||
status = t("peanut.low_battery");
|
||||
break;
|
||||
default:
|
||||
status = upsData.ups_status;
|
||||
}
|
||||
|
||||
return (
|
||||
<Container service={service}>
|
||||
<Block label="peanut.battery_charge" value={t("common.percent", { value: upsData.battery_charge })} />
|
||||
<Block label="peanut.ups_load" value={t("common.percent", { value: upsData.ups_load })} />
|
||||
<Block label="peanut.ups_status" value={status} />
|
||||
</Container>
|
||||
);
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
import genericProxyHandler from "utils/proxy/handlers/generic";
|
||||
|
||||
const widget = {
|
||||
api: "{url}/api/v1/{endpoint}/{key}",
|
||||
proxyHandler: genericProxyHandler,
|
||||
|
||||
mappings: {
|
||||
devices: {
|
||||
endpoint: "devices",
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default widget;
|
Loading…
Reference in new issue