Allow useWidgetAPI to not actually send a request

pull/1583/head
shamoon 2 years ago
parent 774ca4b3b2
commit c92d1caf80

@ -7,7 +7,11 @@ export default function useWidgetAPI(widget, ...options) {
if (options && options[1]?.refreshInterval) { if (options && options[1]?.refreshInterval) {
config.refreshInterval = options[1].refreshInterval; config.refreshInterval = options[1].refreshInterval;
} }
const { data, error, mutate } = useSWR(formatProxyUrl(widget, ...options), config); let url = formatProxyUrl(widget, ...options)
if (options[0] === "") {
url = null
}
const { data, error, mutate } = useSWR(url, config);
// make the data error the top-level error // make the data error the top-level error
return { data, error: data?.error ?? error, mutate } return { data, error: data?.error ?? error, mutate }
} }

@ -9,7 +9,9 @@ export default function Component({ service }) {
const { widget } = service; const { widget } = service;
const { data: albumsData, error: albumsError } = useWidgetAPI(widget, "album"); // album API endpoint can get massive, so we prevent calling if not included in fields see https://github.com/benphelps/homepage/discussions/1577
const showAlbums = widget.fields?.includes('albums') || !widget.fields;
const { data: albumsData, error: albumsError } = useWidgetAPI(widget, showAlbums ? "album" : "");
const { data: wantedData, error: wantedError } = useWidgetAPI(widget, "wanted/missing"); const { data: wantedData, error: wantedError } = useWidgetAPI(widget, "wanted/missing");
const { data: queueData, error: queueError } = useWidgetAPI(widget, "queue/status"); const { data: queueData, error: queueError } = useWidgetAPI(widget, "queue/status");
@ -18,7 +20,7 @@ export default function Component({ service }) {
return <Container service={service} error={finalError} />; return <Container service={service} error={finalError} />;
} }
if (!albumsData || !wantedData || !queueData) { if ((showAlbums && !albumsData) || !wantedData || !queueData) {
return ( return (
<Container service={service}> <Container service={service}>
<Block label="lidarr.wanted" /> <Block label="lidarr.wanted" />
@ -32,7 +34,7 @@ export default function Component({ service }) {
<Container service={service}> <Container service={service}>
<Block label="lidarr.wanted" value={t("common.number", { value: wantedData.totalRecords })} /> <Block label="lidarr.wanted" value={t("common.number", { value: wantedData.totalRecords })} />
<Block label="lidarr.queued" value={t("common.number", { value: queueData.totalCount })} /> <Block label="lidarr.queued" value={t("common.number", { value: queueData.totalCount })} />
<Block label="lidarr.albums" value={t("common.number", { value: albumsData.have })} /> {showAlbums && <Block label="lidarr.albums" value={t("common.number", { value: albumsData?.have })} />}
</Container> </Container>
); );
} }

Loading…
Cancel
Save