mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-10 23:45:48 +01:00
81 lines
2.6 KiB
TypeScript
81 lines
2.6 KiB
TypeScript
import { ActionIcon, Center, createStyles, Flex, Text, useMantineTheme } from '@mantine/core';
|
|
import { useDisclosure } from '@mantine/hooks';
|
|
import { IconCopy, IconDownload, IconTrash } from '@tabler/icons';
|
|
import fileDownload from 'js-file-download';
|
|
import { useTranslation } from 'next-i18next';
|
|
import { useConfigContext } from '../../../../config/provider';
|
|
import { useDeleteConfigMutation } from '../../../../tools/config/mutations/useDeleteConfigMutation';
|
|
import Tip from '../../../layout/Tip';
|
|
import { CreateConfigCopyModal } from './CreateCopyModal';
|
|
|
|
export default function ConfigActions() {
|
|
const { t } = useTranslation(['settings/general/config-changer', 'settings/common']);
|
|
const [createCopyModalOpened, createCopyModal] = useDisclosure(false);
|
|
const { config } = useConfigContext();
|
|
const { mutateAsync } = useDeleteConfigMutation(config?.configProperties.name ?? 'default');
|
|
|
|
if (!config) return null;
|
|
|
|
const handleDownload = () => {
|
|
// TODO: remove secrets
|
|
fileDownload(JSON.stringify(config, null, '\t'), `${config?.configProperties.name}.json`);
|
|
};
|
|
|
|
const handleDeletion = async () => {
|
|
await mutateAsync();
|
|
};
|
|
|
|
const { classes } = useStyles();
|
|
const { colors } = useMantineTheme();
|
|
|
|
return (
|
|
<>
|
|
<CreateConfigCopyModal
|
|
opened={createCopyModalOpened}
|
|
closeModal={createCopyModal.close}
|
|
initialConfigName={config.configProperties.name}
|
|
/>
|
|
<Flex gap="xs" justify="stretch">
|
|
<ActionIcon className={classes.actionIcon} onClick={handleDownload} variant="default">
|
|
<IconDownload size={20} />
|
|
<Text size="sm">{t('buttons.download')}</Text>
|
|
</ActionIcon>
|
|
<ActionIcon
|
|
className={classes.actionIcon}
|
|
onClick={handleDeletion}
|
|
color="red"
|
|
variant="light"
|
|
>
|
|
<IconTrash color={colors.red[2]} size={20} />
|
|
<Text size="sm">{t('buttons.delete.text')}</Text>
|
|
</ActionIcon>
|
|
<ActionIcon className={classes.actionIcon} onClick={createCopyModal.open} variant="default">
|
|
<IconCopy size={20} />
|
|
<Text size="sm">{t('buttons.saveCopy')}</Text>
|
|
</ActionIcon>
|
|
</Flex>
|
|
|
|
<Center>
|
|
<Tip>{t('settings/common:tips.configTip')}</Tip>
|
|
</Center>
|
|
</>
|
|
);
|
|
}
|
|
|
|
const useStyles = createStyles(() => ({
|
|
actionIcon: {
|
|
width: 'auto',
|
|
height: 'auto',
|
|
maxWidth: 'auto',
|
|
maxHeight: 'auto',
|
|
flexGrow: 1,
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
textAlign: 'center',
|
|
rowGap: 10,
|
|
padding: 10,
|
|
},
|
|
}));
|