144 lines
4.9 KiB
TypeScript
144 lines
4.9 KiB
TypeScript
"use client";
|
|
|
|
import { ActionIcon, Anchor, Button, Card, Flex, Group, ScrollArea, Stack, Text } from "@mantine/core";
|
|
import { IconCircleCheck, IconCircleX, IconReportSearch, IconTestPipe } from "@tabler/icons-react";
|
|
import combineClasses from "clsx";
|
|
|
|
import { clientApi } from "@homarr/api/client";
|
|
import { useRequiredBoard } from "@homarr/boards/context";
|
|
import { useI18n } from "@homarr/translation/client";
|
|
|
|
import type { WidgetComponentProps } from "../definition";
|
|
import classes from "./component.module.css";
|
|
|
|
export default function IndexerManagerWidget({
|
|
options,
|
|
integrationIds,
|
|
width,
|
|
height,
|
|
}: WidgetComponentProps<"indexerManager">) {
|
|
const t = useI18n();
|
|
const [indexersData] = clientApi.widget.indexerManager.getIndexersStatus.useSuspenseQuery(
|
|
{ integrationIds },
|
|
{
|
|
refetchOnMount: false,
|
|
refetchOnWindowFocus: false,
|
|
refetchOnReconnect: false,
|
|
retry: false,
|
|
},
|
|
);
|
|
const utils = clientApi.useUtils();
|
|
|
|
const { mutate: testAll, isPending } = clientApi.widget.indexerManager.testAllIndexers.useMutation();
|
|
const board = useRequiredBoard();
|
|
|
|
clientApi.widget.indexerManager.subscribeIndexersStatus.useSubscription(
|
|
{ integrationIds },
|
|
{
|
|
onData(newData) {
|
|
utils.widget.indexerManager.getIndexersStatus.setData({ integrationIds }, (previousData) =>
|
|
previousData?.map((item) =>
|
|
item.integrationId === newData.integrationId ? { ...item, indexers: newData.indexers } : item,
|
|
),
|
|
);
|
|
},
|
|
},
|
|
);
|
|
|
|
const hasSmallWidth = width < 256;
|
|
const hasSmallHeight = height < 256;
|
|
|
|
return (
|
|
<Flex className="indexer-manager-container" h="100%" direction="column" gap="sm" p="sm" align="center">
|
|
<Group className="indexer-manager-title" align="center" gap="xs" wrap="nowrap">
|
|
<IconReportSearch
|
|
className="indexer-manager-title-icon"
|
|
size={hasSmallWidth ? 16 : 20}
|
|
style={{ minWidth: hasSmallWidth ? 16 : 20 }}
|
|
/>
|
|
<Text size={hasSmallWidth ? "xs" : "md"} fw="bold">
|
|
{t("widget.indexerManager.title")}
|
|
</Text>
|
|
{hasSmallHeight && (
|
|
<ActionIcon
|
|
className="indexer-manager-test-action-icon"
|
|
size="sm"
|
|
radius={board.itemRadius}
|
|
variant="light"
|
|
loading={isPending}
|
|
loaderProps={{ type: "dots" }}
|
|
onClick={() => {
|
|
testAll({ integrationIds });
|
|
}}
|
|
>
|
|
<IconTestPipe size={12} />
|
|
</ActionIcon>
|
|
)}
|
|
</Group>
|
|
<Card
|
|
className={combineClasses("indexer-manager-list-container", classes.card)}
|
|
w="100%"
|
|
p="xs"
|
|
radius={board.itemRadius}
|
|
flex={1}
|
|
>
|
|
<ScrollArea className="indexer-manager-list-scroll-area" h="100%" scrollbars="y">
|
|
{indexersData.map(({ integrationId, indexers }) => (
|
|
<Stack gap={4} className={`indexer-manager-${integrationId}-list-container`} p={0} key={integrationId}>
|
|
{indexers.map((indexer) => (
|
|
<Group
|
|
className={`indexer-manager-line indexer-manager-${indexer.name}`}
|
|
key={indexer.id}
|
|
justify="space-between"
|
|
gap="xs"
|
|
wrap="nowrap"
|
|
>
|
|
<Anchor
|
|
className="indexer-manager-line-anchor"
|
|
href={indexer.url}
|
|
target={options.openIndexerSiteInNewTab ? "_blank" : "_self"}
|
|
>
|
|
<Text className="indexer-manager-line-anchor-text" c="dimmed" size={hasSmallWidth ? "xs" : "sm"}>
|
|
{indexer.name}
|
|
</Text>
|
|
</Anchor>
|
|
{indexer.status === false || indexer.enabled === false ? (
|
|
<IconCircleX
|
|
className="indexer-manager-line-status-icon indexer-manager-line-icon-disabled"
|
|
color="#d9534f"
|
|
size={hasSmallWidth ? 12 : 16}
|
|
/>
|
|
) : (
|
|
<IconCircleCheck
|
|
className="indexer-manager-line-status-icon indexer-manager-line-icon-enabled"
|
|
color="#2ecc71"
|
|
size={hasSmallWidth ? 12 : 16}
|
|
/>
|
|
)}
|
|
</Group>
|
|
))}
|
|
</Stack>
|
|
))}
|
|
</ScrollArea>
|
|
</Card>
|
|
{!hasSmallHeight && (
|
|
<Button
|
|
className="indexer-manager-test-button"
|
|
w="100%"
|
|
size="xs"
|
|
radius={board.itemRadius}
|
|
variant="light"
|
|
leftSection={<IconTestPipe size={"1rem"} />}
|
|
loading={isPending}
|
|
loaderProps={{ type: "dots" }}
|
|
onClick={() => {
|
|
testAll({ integrationIds });
|
|
}}
|
|
>
|
|
{t("widget.indexerManager.testAll")}
|
|
</Button>
|
|
)}
|
|
</Flex>
|
|
);
|
|
}
|