Files
Homarr/src/components/Dashboard/Tiles/Widgets/WidgetsEditModal.tsx

102 lines
3.2 KiB
TypeScript
Raw Normal View History

2022-12-10 22:14:31 +01:00
import { Button, Group, MultiSelect, Stack, Switch, TextInput } from '@mantine/core';
import { ContextModalProps } from '@mantine/modals';
import { useTranslation } from 'next-i18next';
import { useState } from 'react';
2022-12-20 11:45:33 +09:00
import Widgets from '../../../../widgets';
import { useConfigContext } from '../../../../config/provider';
import { useConfigStore } from '../../../../config/store';
import { IWidget } from '../../../../widgets/widgets';
2022-12-10 22:14:31 +01:00
export type WidgetEditModalInnerProps = {
widgetId: string;
options: IWidget<string, any>['properties'];
2022-12-10 22:14:31 +01:00
};
type IntegrationOptionsValueType = IWidget<string, any>['properties'][string];
export const WidgetsEditModal = ({
2022-12-10 22:14:31 +01:00
context,
id,
innerProps,
}: ContextModalProps<WidgetEditModalInnerProps>) => {
const { t } = useTranslation([`modules/${innerProps.widgetId}`, 'common']);
2022-12-10 22:14:31 +01:00
const [moduleProperties, setModuleProperties] = useState(innerProps.options);
const items = Object.entries(moduleProperties ?? {}) as [string, IntegrationOptionsValueType][];
2022-12-10 22:14:31 +01:00
const { name: configName } = useConfigContext();
const updateConfig = useConfigStore((x) => x.updateConfig);
if (!configName || !innerProps.options) return null;
const handleChange = (key: string, value: IntegrationOptionsValueType) => {
setModuleProperties((prev) => {
2022-12-17 00:28:46 +09:00
const copyOfPrev: any = { ...prev };
2022-12-10 22:14:31 +01:00
copyOfPrev[key] = value;
return copyOfPrev;
});
};
const getMutliselectData = (option: string) => {
const currentWidgetDefinition = Widgets[innerProps.widgetId as keyof typeof Widgets];
if (!Widgets) return [];
const options = currentWidgetDefinition.options as any;
return options[option]?.data ?? [];
};
2022-12-10 22:14:31 +01:00
const handleSave = () => {
updateConfig(
configName,
(prev) => {
2022-12-20 11:45:33 +09:00
const currentWidget = prev.widgets.find((x) => x.id === innerProps.widgetId);
currentWidget!.properties = moduleProperties;
return {
...prev,
widgets: [...prev.widgets.filter((x) => x.id !== innerProps.widgetId), currentWidget!],
};
},
true
);
2022-12-10 22:14:31 +01:00
context.closeModal(id);
};
return (
<Stack>
{items.map(([key, value]) => (
<>
{typeof value === 'boolean' ? (
<Switch
label={t(`descriptor.settings.${key}.label`)}
2022-12-10 22:14:31 +01:00
checked={value}
onChange={(ev) => handleChange(key, ev.currentTarget.checked)}
/>
) : null}
{typeof value === 'string' ? (
<TextInput
label={t(`descriptor.settings.${key}.label`)}
2022-12-10 22:14:31 +01:00
value={value}
onChange={(ev) => handleChange(key, ev.currentTarget.value)}
/>
) : null}
{typeof value === 'object' && Array.isArray(value) ? (
<MultiSelect
data={getMutliselectData(key)}
label={t(`descriptor.settings.${key}.label`)}
2022-12-10 22:14:31 +01:00
value={value}
onChange={(v) => handleChange(key, v)}
2022-12-10 22:14:31 +01:00
/>
) : null}
</>
))}
<Group position="right">
<Button onClick={() => context.closeModal(id)} variant="light">
{t('common:actions.cancel')}
</Button>
<Button onClick={handleSave}>{t('common:actions.save')}</Button>
</Group>
</Stack>
);
};