mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-13 16:30:31 +00:00
Add OpenDTU Widget (#2069)
* add opendtu widget * optimize widget * Revert de translation files --------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
This commit is contained in:
parent
588429c868
commit
64e8245542
5 changed files with 65 additions and 0 deletions
48
src/widgets/opendtu/component.jsx
Normal file
48
src/widgets/opendtu/component.jsx
Normal file
|
@ -0,0 +1,48 @@
|
|||
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 { t } = useTranslation();
|
||||
|
||||
const { widget } = service;
|
||||
|
||||
const { data: opendtuData, error: opendtuError } = useWidgetAPI(widget);
|
||||
|
||||
if (opendtuError) {
|
||||
return <Container service={service} error={opendtuError} />;
|
||||
}
|
||||
|
||||
if (!opendtuData) {
|
||||
return (
|
||||
<Container service={service}>
|
||||
<Block label="opendtu.yieldDay" />
|
||||
<Block label="opendtu.relativePower" />
|
||||
<Block label="opendtu.absolutePower" />
|
||||
<Block label="opendtu.limit" />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
|
||||
const yieldDay = opendtuData.total.YieldDay.v
|
||||
const yieldDayUnit = opendtuData.total.YieldDay.u
|
||||
|
||||
const power = opendtuData.total.Power.v
|
||||
const powerUnit = opendtuData.total.Power.u
|
||||
|
||||
const totalLimit = opendtuData.inverters.map(inverter => inverter.limit_absolute).reduce((a,b) => a+b);
|
||||
const totalLimitUnit = "W"
|
||||
|
||||
const powerPercentage = (power / totalLimit) * 100
|
||||
|
||||
return (
|
||||
<Container service={service}>
|
||||
<Block label="opendtu.yieldDay" value={`${t("common.number", { value: Math.round(yieldDay), style: "unit" })}${yieldDayUnit}`} />
|
||||
<Block label="opendtu.relativePower" value={t("common.number", { value: Math.round(powerPercentage), style: "unit", unit: "percent" })} />
|
||||
<Block label="opendtu.absolutePower" value={`${t("common.number", { value: Math.round(power), style: "unit" })}${powerUnit}`} />
|
||||
<Block label="opendtu.limit" value={`${t("common.number", { value: Math.round(totalLimit), style: "unit" })}${totalLimitUnit}`} />
|
||||
</Container>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue