mirror of
https://github.com/ajnart/homarr.git
synced 2025-10-31 18:46:23 +01:00
89 lines
2.7 KiB
TypeScript
89 lines
2.7 KiB
TypeScript
import { Group, Text, useMantineTheme, MantineTheme } from '@mantine/core';
|
|
import { Upload, Photo, X, Icon as TablerIcon, Check } from 'tabler-icons-react';
|
|
import { DropzoneStatus, FullScreenDropzone } from '@mantine/dropzone';
|
|
import { showNotification } from '@mantine/notifications';
|
|
import { useRef } from 'react';
|
|
import { useRouter } from 'next/router';
|
|
import { useConfig } from '../../tools/state';
|
|
import { Config } from '../../tools/types';
|
|
|
|
function getIconColor(status: DropzoneStatus, theme: MantineTheme) {
|
|
return status.accepted
|
|
? theme.colors[theme.primaryColor][theme.colorScheme === 'dark' ? 4 : 6]
|
|
: status.rejected
|
|
? theme.colors.red[theme.colorScheme === 'dark' ? 4 : 6]
|
|
: theme.colorScheme === 'dark'
|
|
? theme.colors.dark[0]
|
|
: theme.colors.gray[7];
|
|
}
|
|
|
|
function ImageUploadIcon({
|
|
status,
|
|
...props
|
|
}: React.ComponentProps<TablerIcon> & { status: DropzoneStatus }) {
|
|
if (status.accepted) {
|
|
return <Upload {...props} />;
|
|
}
|
|
|
|
if (status.rejected) {
|
|
return <X {...props} />;
|
|
}
|
|
|
|
return <Photo {...props} />;
|
|
}
|
|
|
|
export const dropzoneChildren = (status: DropzoneStatus, theme: MantineTheme) => (
|
|
<Group position="center" spacing="xl" style={{ minHeight: 220, pointerEvents: 'none' }}>
|
|
<ImageUploadIcon status={status} style={{ color: getIconColor(status, theme) }} size={80} />
|
|
|
|
<div>
|
|
<Text size="xl" inline>
|
|
Drag images here or click to select files
|
|
</Text>
|
|
<Text size="sm" color="dimmed" inline mt={7}>
|
|
Attach as many files as you like, each file should not exceed 5mb
|
|
</Text>
|
|
</div>
|
|
</Group>
|
|
);
|
|
|
|
export default function LoadConfigComponent(props: any) {
|
|
const { saveConfig, setConfig } = useConfig();
|
|
const theme = useMantineTheme();
|
|
const router = useRouter();
|
|
const openRef = useRef<() => void>();
|
|
|
|
return (
|
|
<FullScreenDropzone
|
|
onDrop={(files) => {
|
|
files[0].text().then((e) => {
|
|
try {
|
|
JSON.parse(e) as Config;
|
|
} catch (e) {
|
|
showNotification({
|
|
autoClose: 5000,
|
|
title: <Text>Error</Text>,
|
|
color: 'red',
|
|
icon: <X />,
|
|
message: 'could not load your config. Invalid JSON format.',
|
|
});
|
|
return;
|
|
}
|
|
showNotification({
|
|
autoClose: 5000,
|
|
radius: 'md',
|
|
title: <Text>Config loaded successfully</Text>,
|
|
color: 'green',
|
|
icon: <Check />,
|
|
message: undefined,
|
|
});
|
|
setConfig(JSON.parse(e));
|
|
});
|
|
}}
|
|
accept={['application/json']}
|
|
>
|
|
{(status) => dropzoneChildren(status, theme)}
|
|
</FullScreenDropzone>
|
|
);
|
|
}
|