mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-08 14:38:47 +00:00
Feature: ESPHome widget (#2986)
Co-Authored-By: RoboMagus <68224306+RoboMagus@users.noreply.github.com> Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
This commit is contained in:
parent
4d68f55dfa
commit
8e9920a9d8
7 changed files with 75 additions and 0 deletions
41
src/widgets/esphome/component.jsx
Normal file
41
src/widgets/esphome/component.jsx
Normal file
|
@ -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>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue