mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-14 10:38:12 +01:00
33 lines
905 B
JavaScript
33 lines
905 B
JavaScript
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: channelsData, error: channelsError } = useWidgetAPI(widget, "lineup");
|
|
|
|
if (channelsError) {
|
|
return <Container service={service} error={channelsError} />;
|
|
}
|
|
|
|
if (!channelsData) {
|
|
return (
|
|
<Container service={service}>
|
|
<Block label="hdhomerun.channels" />
|
|
<Block label="hdhomerun.hd" />
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
const hdChannels = channelsData?.filter((channel) => channel.HD === 1);
|
|
|
|
return (
|
|
<Container service={service}>
|
|
<Block label="hdhomerun.channels" value={channelsData.length } />
|
|
<Block label="hdhomerun.hd" value={hdChannels.length} />
|
|
|
|
</Container>
|
|
);
|
|
}
|