mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +01:00
Add Whats Up Docker widget (#1150)
Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
This commit is contained in:
parent
dc3019da80
commit
f4f58409a2
@ -587,5 +587,9 @@
|
|||||||
"people_home": "People Home",
|
"people_home": "People Home",
|
||||||
"lights_on": "Lights On",
|
"lights_on": "Lights On",
|
||||||
"switches_on": "Switches On"
|
"switches_on": "Switches On"
|
||||||
|
},
|
||||||
|
"whatsupdocker": {
|
||||||
|
"monitoring": "Monitoring",
|
||||||
|
"updates": "Updates"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -81,6 +81,7 @@ const components = {
|
|||||||
unmanic: dynamic(() => import("./unmanic/component")),
|
unmanic: dynamic(() => import("./unmanic/component")),
|
||||||
uptimekuma: dynamic(() => import("./uptimekuma/component")),
|
uptimekuma: dynamic(() => import("./uptimekuma/component")),
|
||||||
watchtower: dynamic(() => import("./watchtower/component")),
|
watchtower: dynamic(() => import("./watchtower/component")),
|
||||||
|
whatsupdocker: dynamic(() => import("./whatsupdocker/component")),
|
||||||
xteve: dynamic(() => import("./xteve/component")),
|
xteve: dynamic(() => import("./xteve/component")),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
32
src/widgets/whatsupdocker/component.jsx
Normal file
32
src/widgets/whatsupdocker/component.jsx
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
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 { data: containersData, error: containersError } = useWidgetAPI(widget, "containers");
|
||||||
|
|
||||||
|
if (containersError) {
|
||||||
|
return <Container error={containersError} />;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!containersData) {
|
||||||
|
return (
|
||||||
|
<Container service={service}>
|
||||||
|
<Block label="whatsupdocker.monitoring" />
|
||||||
|
<Block label="whatsupdocker.updates" />
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const totalCount = containersData.length;
|
||||||
|
const updatesAvailable = containersData.filter(container => container.updateAvailable).length;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Container service={service}>
|
||||||
|
<Block label="whatsupdocker.monitoring" value={totalCount} />
|
||||||
|
<Block label="whatsupdocker.updates" value={updatesAvailable} />
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
|
}
|
14
src/widgets/whatsupdocker/widget.js
Normal file
14
src/widgets/whatsupdocker/widget.js
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
import genericProxyHandler from "utils/proxy/handlers/generic";
|
||||||
|
|
||||||
|
const widget = {
|
||||||
|
api: "{url}/{endpoint}",
|
||||||
|
proxyHandler: genericProxyHandler,
|
||||||
|
|
||||||
|
mappings: {
|
||||||
|
containers: {
|
||||||
|
endpoint: "api/containers"
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default widget;
|
@ -75,6 +75,7 @@ import unifi from "./unifi/widget";
|
|||||||
import unmanic from "./unmanic/widget";
|
import unmanic from "./unmanic/widget";
|
||||||
import uptimekuma from "./uptimekuma/widget";
|
import uptimekuma from "./uptimekuma/widget";
|
||||||
import watchtower from "./watchtower/widget";
|
import watchtower from "./watchtower/widget";
|
||||||
|
import whatsupdocker from "./whatsupdocker/widget";
|
||||||
import xteve from "./xteve/widget";
|
import xteve from "./xteve/widget";
|
||||||
|
|
||||||
const widgets = {
|
const widgets = {
|
||||||
@ -157,6 +158,7 @@ const widgets = {
|
|||||||
unmanic,
|
unmanic,
|
||||||
uptimekuma,
|
uptimekuma,
|
||||||
watchtower,
|
watchtower,
|
||||||
|
whatsupdocker,
|
||||||
xteve,
|
xteve,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user