Feature: ESPHome widget (#2986)
Co-Authored-By: RoboMagus <68224306+RoboMagus@users.noreply.github.com> Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>pull/2708/head
parent
4d68f55dfa
commit
8e9920a9d8
@ -0,0 +1,16 @@
|
||||
---
|
||||
title: ESPHome
|
||||
description: ESPHome Widget Configuration
|
||||
---
|
||||
|
||||
Learn more about [ESPHome](https://esphome.io/).
|
||||
|
||||
Show the number of ESPHome devices based on their state.
|
||||
|
||||
Allowed fields: `["total", "online", "offline", "unknown"]`.
|
||||
|
||||
```yaml
|
||||
widget:
|
||||
type: esphome
|
||||
url: http://esphome.host.or.ip:port
|
||||
```
|
@ -0,0 +1,41 @@
|
||||
import { useTranslation } from "next-i18next";
|
||||
|
||||
import Block from "components/services/widget/block";
|
||||
import Container from "components/services/widget/container";
|
||||
import useWidgetAPI from "utils/proxy/use-widget-api";
|
||||
|
||||
export default function Component({ service }) {
|
||||
const { t } = useTranslation();
|
||||
|
||||
const { widget } = service;
|
||||
const { data: resultData, error: resultError } = useWidgetAPI(widget);
|
||||
|
||||
if (resultError) {
|
||||
return <Container service={service} error={resultError} />;
|
||||
}
|
||||
|
||||
if (!resultData) {
|
||||
return (
|
||||
<Container service={service}>
|
||||
<Block label="esphome.online" />
|
||||
<Block label="esphome.offline" />
|
||||
<Block label="esphome.unknown" />
|
||||
<Block label="esphome.total" />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
|
||||
const total = Object.keys(resultData).length;
|
||||
const online = Object.entries(resultData).filter(([, v]) => v === true).length;
|
||||
const offline = Object.entries(resultData).filter(([, v]) => v === false).length;
|
||||
const unknown = Object.entries(resultData).filter(([, v]) => v === null).length;
|
||||
|
||||
return (
|
||||
<Container service={service}>
|
||||
<Block label="esphome.online" value={t("common.number", { value: online })} />
|
||||
<Block label="esphome.offline" value={t("common.number", { value: offline })} />
|
||||
<Block label="esphome.unknown" value={t("common.number", { value: unknown })} />
|
||||
<Block label="esphome.total" value={t("common.number", { value: total })} />
|
||||
</Container>
|
||||
);
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
import genericProxyHandler from "utils/proxy/handlers/generic";
|
||||
|
||||
const widget = {
|
||||
api: "{url}/ping",
|
||||
proxyHandler: genericProxyHandler,
|
||||
};
|
||||
|
||||
export default widget;
|
Loading…
Reference in new issue