Add Spoolman Widget
This commit is contained in:
parent
4a3a4c846e
commit
e650470491
17
docs/widgets/services/spoolman.md
Normal file
17
docs/widgets/services/spoolman.md
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
title: Spoolman
|
||||||
|
description: Spoolman Widget Configuration
|
||||||
|
---
|
||||||
|
|
||||||
|
Learn more about [Spoolman](https://github.com/Donkie/Spoolman).
|
||||||
|
|
||||||
|
4 spools are displayed by default. If more than 4 spools are configured in spoolman you can use the spoolIds configuration option to filter for spools by their id.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
widget:
|
||||||
|
type: spoolman
|
||||||
|
url: http://spoolman.host.or.ip
|
||||||
|
spoolIds:
|
||||||
|
- 1
|
||||||
|
- 4
|
||||||
|
```
|
||||||
@ -138,6 +138,7 @@ nav:
|
|||||||
- widgets/services/scrutiny.md
|
- widgets/services/scrutiny.md
|
||||||
- widgets/services/sonarr.md
|
- widgets/services/sonarr.md
|
||||||
- widgets/services/speedtest-tracker.md
|
- widgets/services/speedtest-tracker.md
|
||||||
|
- widgets/services/spoolman.md
|
||||||
- widgets/services/stash.md
|
- widgets/services/stash.md
|
||||||
- widgets/services/stocks.md
|
- widgets/services/stocks.md
|
||||||
- widgets/services/swagdashboard.md
|
- widgets/services/swagdashboard.md
|
||||||
|
|||||||
@ -492,6 +492,9 @@ export function cleanServiceGroups(groups) {
|
|||||||
|
|
||||||
// technitium
|
// technitium
|
||||||
range,
|
range,
|
||||||
|
|
||||||
|
// spoolman
|
||||||
|
spoolIds
|
||||||
} = cleanedService.widget;
|
} = cleanedService.widget;
|
||||||
|
|
||||||
let fieldsList = fields;
|
let fieldsList = fields;
|
||||||
@ -653,6 +656,9 @@ export function cleanServiceGroups(groups) {
|
|||||||
if (metrics) cleanedService.widget.metrics = metrics;
|
if (metrics) cleanedService.widget.metrics = metrics;
|
||||||
if (refreshInterval) cleanedService.widget.refreshInterval = refreshInterval;
|
if (refreshInterval) cleanedService.widget.refreshInterval = refreshInterval;
|
||||||
}
|
}
|
||||||
|
if (type === "spoolman") {
|
||||||
|
if (spoolIds !== undefined) cleanedService.widget.spoolIds = spoolIds;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return cleanedService;
|
return cleanedService;
|
||||||
|
|||||||
@ -111,6 +111,7 @@ const components = {
|
|||||||
scrutiny: dynamic(() => import("./scrutiny/component")),
|
scrutiny: dynamic(() => import("./scrutiny/component")),
|
||||||
sonarr: dynamic(() => import("./sonarr/component")),
|
sonarr: dynamic(() => import("./sonarr/component")),
|
||||||
speedtest: dynamic(() => import("./speedtest/component")),
|
speedtest: dynamic(() => import("./speedtest/component")),
|
||||||
|
spoolman: dynamic(() => import("./spoolman/component")),
|
||||||
stash: dynamic(() => import("./stash/component")),
|
stash: dynamic(() => import("./stash/component")),
|
||||||
stocks: dynamic(() => import("./stocks/component")),
|
stocks: dynamic(() => import("./stocks/component")),
|
||||||
strelaysrv: dynamic(() => import("./strelaysrv/component")),
|
strelaysrv: dynamic(() => import("./strelaysrv/component")),
|
||||||
|
|||||||
70
src/widgets/spoolman/component.jsx
Normal file
70
src/widgets/spoolman/component.jsx
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
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: spoolData, error: spoolError } = useWidgetAPI(widget, "spools");
|
||||||
|
|
||||||
|
// Helper to handle filtering based on spoolIds
|
||||||
|
const filterSpools = (data, spoolIds) => {
|
||||||
|
if (!spoolIds || spoolIds.length === 0) return data; // No filtering if no spoolIds
|
||||||
|
const limitedspoolIds = spoolIds.slice(0, 4); // Limit to 4 names
|
||||||
|
return data.filter(spool => spoolIds.includes(spool.id));
|
||||||
|
};
|
||||||
|
|
||||||
|
// Helper to limit spoolData length
|
||||||
|
const limitSpoolData = (data, limit = 4) => (data.length > limit ? data.slice(0, limit) : data);
|
||||||
|
|
||||||
|
// Error handling
|
||||||
|
if (spoolError) {
|
||||||
|
return <Container service={service} error={spoolError} />;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Loading state
|
||||||
|
if (!spoolData) {
|
||||||
|
return (
|
||||||
|
<Container service={service}>
|
||||||
|
<Block label="spoolman.spool1" />
|
||||||
|
<Block label="spoolman.spool2" />
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// API error or unexpected response
|
||||||
|
if (spoolData.error || spoolData.message) {
|
||||||
|
return <Container service={service} error={spoolData?.error ?? spoolData} />;
|
||||||
|
}
|
||||||
|
|
||||||
|
// No spools available
|
||||||
|
if (spoolData.length === 0) {
|
||||||
|
return (
|
||||||
|
<Container service={service}>
|
||||||
|
<Block label="spoolman.noSpools" />
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Filter and limit spools
|
||||||
|
let filteredSpoolData = filterSpools(spoolData, widget.spoolIds);
|
||||||
|
filteredSpoolData = limitSpoolData(filteredSpoolData);
|
||||||
|
|
||||||
|
// Render filtered and limited spools
|
||||||
|
return (
|
||||||
|
<Container service={service}>
|
||||||
|
{filteredSpoolData.map((spool) => (
|
||||||
|
<Block
|
||||||
|
key={spool.id}
|
||||||
|
label={spool.filament.name}
|
||||||
|
value={t("common.percent", {
|
||||||
|
value: (spool.remaining_weight / spool.initial_weight) * 100,
|
||||||
|
})}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
|
}
|
||||||
14
src/widgets/spoolman/widget.js
Normal file
14
src/widgets/spoolman/widget.js
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
import credentialedProxyHandler from "utils/proxy/handlers/credentialed";
|
||||||
|
|
||||||
|
const widget = {
|
||||||
|
api: "{url}/api/v1/{endpoint}",
|
||||||
|
proxyHandler: credentialedProxyHandler,
|
||||||
|
|
||||||
|
mappings: {
|
||||||
|
spools : {
|
||||||
|
endpoint: "spool",
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default widget;
|
||||||
@ -102,6 +102,7 @@ import sabnzbd from "./sabnzbd/widget";
|
|||||||
import scrutiny from "./scrutiny/widget";
|
import scrutiny from "./scrutiny/widget";
|
||||||
import sonarr from "./sonarr/widget";
|
import sonarr from "./sonarr/widget";
|
||||||
import speedtest from "./speedtest/widget";
|
import speedtest from "./speedtest/widget";
|
||||||
|
import spoolman from "./spoolman/widget";
|
||||||
import stash from "./stash/widget";
|
import stash from "./stash/widget";
|
||||||
import stocks from "./stocks/widget";
|
import stocks from "./stocks/widget";
|
||||||
import strelaysrv from "./strelaysrv/widget";
|
import strelaysrv from "./strelaysrv/widget";
|
||||||
@ -237,6 +238,7 @@ const widgets = {
|
|||||||
scrutiny,
|
scrutiny,
|
||||||
sonarr,
|
sonarr,
|
||||||
speedtest,
|
speedtest,
|
||||||
|
spoolman,
|
||||||
stash,
|
stash,
|
||||||
stocks,
|
stocks,
|
||||||
strelaysrv,
|
strelaysrv,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user