mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-10 15:28:47 +00:00
Feature: Romm Widget (#2663)
--------- Co-authored-by: Karl Hudgell <karl.hudgell@bjss.com> Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
This commit is contained in:
parent
0cdc354ead
commit
f6ca3f57f7
7 changed files with 66 additions and 0 deletions
|
@ -87,6 +87,7 @@ const components = {
|
|||
qnap: dynamic(() => import("./qnap/component")),
|
||||
radarr: dynamic(() => import("./radarr/component")),
|
||||
readarr: dynamic(() => import("./readarr/component")),
|
||||
romm: dynamic(() => import("./romm/component")),
|
||||
rutorrent: dynamic(() => import("./rutorrent/component")),
|
||||
sabnzbd: dynamic(() => import("./sabnzbd/component")),
|
||||
scrutiny: dynamic(() => import("./scrutiny/component")),
|
||||
|
|
32
src/widgets/romm/component.jsx
Normal file
32
src/widgets/romm/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: response, error: responseError } = useWidgetAPI(widget, "statistics");
|
||||
|
||||
if (responseError) {
|
||||
return (
|
||||
<Container service={service}>
|
||||
<Block label="Error" value={responseError.message} />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
|
||||
if (responseError) {
|
||||
return <Container service={service} error={responseError} />;
|
||||
}
|
||||
|
||||
if (response) {
|
||||
const platforms = response.filter((x) => x.rom_count !== 0).length;
|
||||
const totalRoms = response.reduce((total, stat) => total + stat.rom_count, 0);
|
||||
return (
|
||||
<Container service={service}>
|
||||
<Block label="romm.platforms" value={platforms} />
|
||||
<Block label="romm.totalRoms" value={totalRoms} />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
}
|
14
src/widgets/romm/widget.js
Normal file
14
src/widgets/romm/widget.js
Normal file
|
@ -0,0 +1,14 @@
|
|||
import genericProxyHandler from "utils/proxy/handlers/generic";
|
||||
|
||||
const widget = {
|
||||
api: "{url}/api/{endpoint}",
|
||||
proxyHandler: genericProxyHandler,
|
||||
|
||||
mappings: {
|
||||
statistics: {
|
||||
endpoint: "platforms",
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default widget;
|
|
@ -101,6 +101,7 @@ import watchtower from "./watchtower/widget";
|
|||
import whatsupdocker from "./whatsupdocker/widget";
|
||||
import xteve from "./xteve/widget";
|
||||
import urbackup from "./urbackup/widget";
|
||||
import romm from "./romm/widget";
|
||||
|
||||
const widgets = {
|
||||
adguard,
|
||||
|
@ -186,6 +187,7 @@ const widgets = {
|
|||
qnap,
|
||||
radarr,
|
||||
readarr,
|
||||
romm,
|
||||
rutorrent,
|
||||
sabnzbd,
|
||||
scrutiny,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue