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

102 lines
3.3 KiB
TypeScript
Raw Normal View History

import Widgets from '../../../../widgets';
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';
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 = {
integration: 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.integration}`, '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.integration 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 = () => {
2022-12-17 00:28:46 +09:00
updateConfig(configName, (prev) => ({
...prev,
widgets: {
...prev.widgets,
2022-12-17 00:28:46 +09:00
[innerProps.integration]:
'properties' in (prev.widgets[innerProps.integration] ?? {})
2022-12-17 00:28:46 +09:00
? {
...prev.widgets[innerProps.integration],
2022-12-17 00:28:46 +09:00
properties: moduleProperties,
}
: prev.widgets[innerProps.integration],
2022-12-17 00:28:46 +09:00
},
}));
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>
);
};