You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
homepage/src/widgets/readarr/widget.js

29 lines
681 B

import genericProxyHandler from "utils/proxy/handlers/generic";
import { jsonArrayFilter } from "utils/proxy/api-helpers";
const widget = {
api: "{url}/api/v1/{endpoint}?apikey={key}",
proxyHandler: genericProxyHandler,
mappings: {
book: {
endpoint: "book",
map: (data) => ({
have: jsonArrayFilter(data, (item) => item?.statistics?.bookFileCount > 0).length,
}),
},
"queue/status": {
endpoint: "queue/status",
},
"wanted/missing": {
endpoint: "wanted/missing",
},
calendar: {
endpoint: "calendar",
params: ["start", "end", "unmonitored", "includeAuthor"],
},
},
};
export default widget;