mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-07 09:35:54 -08:00
Feature: SWAG dashboard widget (#3523)
This commit is contained in:
33
src/widgets/swagdashboard/component.jsx
Normal file
33
src/widgets/swagdashboard/component.jsx
Normal file
@@ -0,0 +1,33 @@
|
||||
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: swagData, error: swagError } = useWidgetAPI(widget, "overview");
|
||||
|
||||
if (swagError) {
|
||||
return <Container service={service} error={swagError} />;
|
||||
}
|
||||
|
||||
if (!swagData) {
|
||||
return (
|
||||
<Container service={service}>
|
||||
<Block label="swagdashboard.proxied" />
|
||||
<Block label="swagdashboard.auth" />
|
||||
<Block label="swagdashboard.outdated" />
|
||||
<Block label="swagdashboard.banned" />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<Container service={service}>
|
||||
<Block label="swagdashboard.proxied" value={swagData.proxied} />
|
||||
<Block label="swagdashboard.auth" value={swagData.auth} />
|
||||
<Block label="swagdashboard.outdated" value={swagData.outdated} />
|
||||
<Block label="swagdashboard.banned" value={swagData.banned} />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
8
src/widgets/swagdashboard/widget.js
Normal file
8
src/widgets/swagdashboard/widget.js
Normal file
@@ -0,0 +1,8 @@
|
||||
import genericProxyHandler from "utils/proxy/handlers/generic";
|
||||
|
||||
const widget = {
|
||||
api: "{url}/?stats=true",
|
||||
proxyHandler: genericProxyHandler,
|
||||
};
|
||||
|
||||
export default widget;
|
||||
Reference in New Issue
Block a user