add peanut widget
This commit is contained in:
parent
49281b30c2
commit
e87180b314
@ -544,6 +544,14 @@
|
|||||||
"inbox": "Inbox",
|
"inbox": "Inbox",
|
||||||
"total": "Total"
|
"total": "Total"
|
||||||
},
|
},
|
||||||
|
"peanut": {
|
||||||
|
"battery_charge": "Battery Charge",
|
||||||
|
"ups_load": "UPS Load",
|
||||||
|
"ups_status": "UPS Status",
|
||||||
|
"online": "Online",
|
||||||
|
"on_battery": "On Battery",
|
||||||
|
"low_battery": "Low Battery"
|
||||||
|
},
|
||||||
"nextdns": {
|
"nextdns": {
|
||||||
"wait": "Please Wait",
|
"wait": "Please Wait",
|
||||||
"no_devices": "No Device Data Received"
|
"no_devices": "No Device Data Received"
|
||||||
|
|||||||
@ -35,6 +35,7 @@ const components = {
|
|||||||
gotify: dynamic(() => import("./gotify/component")),
|
gotify: dynamic(() => import("./gotify/component")),
|
||||||
grafana: dynamic(() => import("./grafana/component")),
|
grafana: dynamic(() => import("./grafana/component")),
|
||||||
hdhomerun: dynamic(() => import("./hdhomerun/component")),
|
hdhomerun: dynamic(() => import("./hdhomerun/component")),
|
||||||
|
peanut: dynamic(() => import("./peanut/component")),
|
||||||
homeassistant: dynamic(() => import("./homeassistant/component")),
|
homeassistant: dynamic(() => import("./homeassistant/component")),
|
||||||
homebridge: dynamic(() => import("./homebridge/component")),
|
homebridge: dynamic(() => import("./homebridge/component")),
|
||||||
healthchecks: dynamic(() => import("./healthchecks/component")),
|
healthchecks: dynamic(() => import("./healthchecks/component")),
|
||||||
|
|||||||
50
src/widgets/peanut/component.jsx
Normal file
50
src/widgets/peanut/component.jsx
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
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={`${upsData.battery_charge}%`} />
|
||||||
|
<Block label="peanut.ups_load" value={`${upsData.ups_load}%`} />
|
||||||
|
<Block label="peanut.ups_status" value={status} />
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
|
}
|
||||||
14
src/widgets/peanut/widget.js
Normal file
14
src/widgets/peanut/widget.js
Normal file
@ -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;
|
||||||
@ -62,6 +62,7 @@ import opnsense from "./opnsense/widget";
|
|||||||
import overseerr from "./overseerr/widget";
|
import overseerr from "./overseerr/widget";
|
||||||
import openmediavault from "./openmediavault/widget";
|
import openmediavault from "./openmediavault/widget";
|
||||||
import paperlessngx from "./paperlessngx/widget";
|
import paperlessngx from "./paperlessngx/widget";
|
||||||
|
import peanut from "./peanut/widget";
|
||||||
import pfsense from "./pfsense/widget";
|
import pfsense from "./pfsense/widget";
|
||||||
import photoprism from "./photoprism/widget";
|
import photoprism from "./photoprism/widget";
|
||||||
import proxmoxbackupserver from "./proxmoxbackupserver/widget";
|
import proxmoxbackupserver from "./proxmoxbackupserver/widget";
|
||||||
@ -166,6 +167,7 @@ const widgets = {
|
|||||||
overseerr,
|
overseerr,
|
||||||
openmediavault,
|
openmediavault,
|
||||||
paperlessngx,
|
paperlessngx,
|
||||||
|
peanut,
|
||||||
pfsense,
|
pfsense,
|
||||||
photoprism,
|
photoprism,
|
||||||
proxmoxbackupserver,
|
proxmoxbackupserver,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user