* chore(deps): update dependency eslint to v9 * chore: migrate eslint to v9 * fix: dependency issues * fix: unit tests not working * chore: disable lint check for Image component that does not work in ci * fix: lint issue --------- Co-authored-by: homarr-renovate[bot] <158783068+homarr-renovate[bot]@users.noreply.github.com> Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
110 lines
3.7 KiB
TypeScript
110 lines
3.7 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import { Button, Group, Stack } from "@mantine/core";
|
|
|
|
import type { WidgetKind } from "@homarr/definitions";
|
|
import { createModal, useModalAction } from "@homarr/modals";
|
|
import { useI18n } from "@homarr/translation/client";
|
|
|
|
import { widgetImports } from "..";
|
|
import { getInputForType } from "../_inputs";
|
|
import { FormProvider, useForm } from "../_inputs/form";
|
|
import type { BoardItemAdvancedOptions } from "../../../validation/src/shared";
|
|
import type { OptionsBuilderResult } from "../options";
|
|
import type { IntegrationSelectOption } from "../widget-integration-select";
|
|
import { WidgetIntegrationSelect } from "../widget-integration-select";
|
|
import { WidgetAdvancedOptionsModal } from "./widget-advanced-options-modal";
|
|
|
|
export interface WidgetEditModalState {
|
|
options: Record<string, unknown>;
|
|
integrationIds: string[];
|
|
advancedOptions: BoardItemAdvancedOptions;
|
|
}
|
|
|
|
interface ModalProps<TSort extends WidgetKind> {
|
|
kind: TSort;
|
|
value: WidgetEditModalState;
|
|
onSuccessfulEdit: (value: WidgetEditModalState) => void;
|
|
integrationData: IntegrationSelectOption[];
|
|
integrationSupport: boolean;
|
|
}
|
|
|
|
export const WidgetEditModal = createModal<ModalProps<WidgetKind>>(({ actions, innerProps }) => {
|
|
const t = useI18n();
|
|
const [advancedOptions, setAdvancedOptions] = useState<BoardItemAdvancedOptions>(innerProps.value.advancedOptions);
|
|
const form = useForm({
|
|
initialValues: innerProps.value,
|
|
});
|
|
const { openModal } = useModalAction(WidgetAdvancedOptionsModal);
|
|
|
|
const { definition } = widgetImports[innerProps.kind];
|
|
|
|
return (
|
|
<form
|
|
onSubmit={form.onSubmit((values) => {
|
|
innerProps.onSuccessfulEdit({
|
|
...values,
|
|
advancedOptions,
|
|
});
|
|
actions.closeModal();
|
|
})}
|
|
>
|
|
<FormProvider form={form}>
|
|
<Stack>
|
|
{innerProps.integrationSupport && (
|
|
<WidgetIntegrationSelect
|
|
label={t("item.edit.field.integrations.label")}
|
|
data={innerProps.integrationData}
|
|
{...form.getInputProps("integrationIds")}
|
|
/>
|
|
)}
|
|
{Object.entries(definition.options).map(([key, value]: [string, OptionsBuilderResult[string]]) => {
|
|
const Input = getInputForType(value.type);
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
|
if (!Input || value.shouldHide?.(form.values.options as never)) {
|
|
return null;
|
|
}
|
|
|
|
return <Input key={key} kind={innerProps.kind} property={key} options={value as never} />;
|
|
})}
|
|
<Group justify="space-between">
|
|
<Button
|
|
variant="subtle"
|
|
onClick={() =>
|
|
openModal({
|
|
advancedOptions,
|
|
onSuccess(options) {
|
|
setAdvancedOptions(options);
|
|
innerProps.onSuccessfulEdit({
|
|
...innerProps.value,
|
|
advancedOptions: options,
|
|
});
|
|
},
|
|
})
|
|
}
|
|
>
|
|
{t("item.edit.advancedOptions.label")}
|
|
</Button>
|
|
<Group justify="end" w={{ base: "100%", xs: "auto" }}>
|
|
<Button onClick={actions.closeModal} variant="subtle" color="gray">
|
|
{t("common.action.cancel")}
|
|
</Button>
|
|
<Button type="submit" color="teal">
|
|
{t("common.action.saveChanges")}
|
|
</Button>
|
|
</Group>
|
|
</Group>
|
|
</Stack>
|
|
</FormProvider>
|
|
</form>
|
|
);
|
|
}).withOptions({
|
|
keepMounted: true,
|
|
defaultTitle(t) {
|
|
return t("item.edit.title");
|
|
},
|
|
size: "lg",
|
|
});
|