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.
25 lines
566 B
25 lines
566 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",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|