mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-08 22:48:46 +00:00
Fix: Add alternative 'offline' status to EspHome widget (#3107)
This commit is contained in:
parent
54db9ac551
commit
247f73f0db
3 changed files with 8 additions and 1 deletions
|
@ -19,6 +19,7 @@ export default function Component({ service }) {
|
|||
<Container service={service}>
|
||||
<Block label="esphome.online" />
|
||||
<Block label="esphome.offline" />
|
||||
<Block label="esphome.offline_alt" />
|
||||
<Block label="esphome.unknown" />
|
||||
<Block label="esphome.total" />
|
||||
</Container>
|
||||
|
@ -27,6 +28,7 @@ export default function Component({ service }) {
|
|||
|
||||
const total = Object.keys(resultData).length;
|
||||
const online = Object.entries(resultData).filter(([, v]) => v === true).length;
|
||||
const notOnline = 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;
|
||||
|
||||
|
@ -34,6 +36,7 @@ export default function Component({ service }) {
|
|||
<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.offline_alt" value={t("common.number", { value: notOnline })} />
|
||||
<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