Files
Homarr/src/widgets/dnshole/DnsHoleControls.tsx

222 lines
6.5 KiB
TypeScript
Raw Normal View History

import {
Badge,
Box,
Button,
Card,
Group,
Image,
SimpleGrid,
Stack,
Text,
UnstyledButton,
} from '@mantine/core';
import { useElementSize } from '@mantine/hooks';
import { IconDeviceGamepad, IconPlayerPlay, IconPlayerStop } from '@tabler/icons-react';
2023-07-18 07:38:27 +02:00
import { useTranslation } from 'next-i18next';
import { api } from '~/utils/api';
import { useConfigContext } from '../../config/provider';
import { defineWidget } from '../helper';
import { WidgetLoading } from '../loading';
import { IWidget } from '../widgets';
import { useDnsHoleSummeryQuery } from './DnsHoleSummary';
const definition = defineWidget({
id: 'dns-hole-controls',
icon: IconDeviceGamepad,
options: {},
gridstack: {
minWidth: 2,
minHeight: 1,
maxWidth: 12,
maxHeight: 12,
},
component: DnsHoleControlsWidgetTile,
});
export type IDnsHoleControlsWidget = IWidget<(typeof definition)['id'], typeof definition>;
interface DnsHoleControlsWidgetProps {
widget: IDnsHoleControlsWidget;
}
/**
*
* @param fetching - a expression that return a boolean if the data is been fetched
* @param currentStatus the current status of the dns integration, either enabled or disabled
* @returns
*/
const dnsLightStatus = (
fetching: boolean,
currentStatus: 'enabled' | 'disabled'
): 'blue' | 'green' | 'red' => {
if (fetching) {
return 'blue';
}
if (currentStatus === 'enabled') {
return 'green';
}
return 'red';
};
function DnsHoleControlsWidgetTile({ widget }: DnsHoleControlsWidgetProps) {
const { isInitialLoading, data, isFetching: fetchingDnsSummary } = useDnsHoleSummeryQuery();
const { mutateAsync, isLoading: changingStatus } = useDnsHoleControlMutation();
const { width, ref } = useElementSize();
2023-05-16 14:10:04 +09:00
const { t } = useTranslation('common');
const { name: configName, config } = useConfigContext();
const trpcUtils = api.useContext();
if (isInitialLoading || !data || !configName) {
return <WidgetLoading />;
}
type getDnsStatusAcc = {
enabled: string[];
disabled: string[];
};
const getDnsStatus = () => {
const dnsList = data?.status.reduce(
(acc: getDnsStatusAcc, dns) => {
if (dns.status === 'enabled') {
acc.enabled.push(dns.appId);
} else if (dns.status === 'disabled') {
acc.disabled.push(dns.appId);
}
return acc;
},
{ enabled: [], disabled: [] }
);
if (dnsList.enabled.length === 0 && dnsList.disabled.length === 0) {
return undefined;
}
return dnsList;
};
const reFetchSummaryDns = () => {
trpcUtils.dnsHole.summary.invalidate();
};
return (
2023-07-18 07:38:27 +02:00
<Stack justify="space-between" h={'100%'} spacing="0.25rem">
<SimpleGrid ref={ref} cols={width > 275 ? 2 : 1} spacing="0.25rem">
<Button
onClick={async () => {
await mutateAsync({
2023-07-18 07:38:27 +02:00
action: 'enable',
configName,
appsToChange: getDnsStatus()?.disabled,
},{
onSettled: () => {
reFetchSummaryDns();
}
});
}}
disabled={getDnsStatus()?.disabled.length === 0 || fetchingDnsSummary || changingStatus}
leftIcon={<IconPlayerPlay size={20} />}
variant="light"
color="green"
2023-07-17 01:21:39 +02:00
h="2rem"
>
2023-05-16 14:10:04 +09:00
{t('enableAll')}
</Button>
<Button
onClick={async () => {
await mutateAsync({
2023-07-18 07:38:27 +02:00
action: 'disable',
configName,
appsToChange: getDnsStatus()?.enabled,
},{
onSettled: () => {
reFetchSummaryDns();
}
});
}}
disabled={getDnsStatus()?.enabled.length === 0 || fetchingDnsSummary || changingStatus}
leftIcon={<IconPlayerStop size={20} />}
variant="light"
color="red"
2023-07-17 01:21:39 +02:00
h="2rem"
>
2023-05-16 14:10:04 +09:00
{t('disableAll')}
</Button>
</SimpleGrid>
2023-07-17 01:21:39 +02:00
<Stack spacing="0.25rem">
{data.status.map((dnsHole, index) => {
const app = config?.apps.find((x) => x.id === dnsHole.appId);
if (!app) {
return null;
}
return (
<Card withBorder={true} key={dnsHole.appId} p="xs">
<Group>
<Box
2023-07-18 07:38:27 +02:00
sx={(theme) => ({
backgroundColor:
theme.colorScheme === 'dark' ? theme.colors.dark[4] : theme.colors.gray[2],
textAlign: 'center',
padding: 5,
borderRadius: theme.radius.md,
})}
>
<Image src={app.appearance.iconUrl} width={40} height={40} fit="contain" />
</Box>
2023-07-17 01:21:39 +02:00
<Stack spacing="0rem">
<Text>{app.name}</Text>
<UnstyledButton
onClick={async () => {
await mutateAsync({
action: dnsHole.status === 'enabled' ? 'disable' : 'enable',
configName,
appsToChange: [app.id],
},{
onSettled: () => {
reFetchSummaryDns();
}
});
}}
disabled={fetchingDnsSummary || changingStatus}
>
<Badge
variant="dot"
color={dnsLightStatus(fetchingDnsSummary || changingStatus, dnsHole.status)}
styles={(theme) => ({
root: {
'&:hover': {
background:
theme.colorScheme === 'dark'
? theme.colors.dark[4]
: theme.colors.gray[2],
},
'&:active': {
background:
theme.colorScheme === 'dark'
? theme.colors.dark[5]
: theme.colors.gray[3],
},
},
})}
>
{t(dnsHole.status)}
</Badge>
</UnstyledButton>
</Stack>
</Group>
</Card>
);
})}
</Stack>
</Stack>
);
}
const useDnsHoleControlMutation = () => api.dnsHole.control.useMutation();
export default definition;