mirror of
https://github.com/gethomepage/homepage.git
synced 2026-01-10 10:32:09 +08:00
Pterodactyl widget: initial commit
This commit is contained in:
30
src/widgets/pterodactyl/component.jsx
Normal file
30
src/widgets/pterodactyl/component.jsx
Normal file
@@ -0,0 +1,30 @@
|
||||
|
||||
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: datasData, error: datasError} = useWidgetAPI(widget);
|
||||
|
||||
if (datasError) {
|
||||
return <Container error={ datasError } />;
|
||||
}
|
||||
|
||||
if (!datasData) {
|
||||
return (
|
||||
<Container service={service}>
|
||||
<Block label="pterodactyl.nodes" />
|
||||
<Block label="pterodactyl.servers" />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
return (
|
||||
<Container service={service}>
|
||||
<Block label="pterodactyl.nodes" value={datasData.nodes} />
|
||||
<Block label="pterodactyl.servers" value={datasData.servers} />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user