hexabot/frontend/src/components/contents/ContentDialog.tsx
2025-01-09 18:05:53 +01:00

269 lines
8.0 KiB
TypeScript

/*
* Copyright © 2025 Hexastack. All rights reserved.
*
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
*/
import LinkIcon from "@mui/icons-material/Link";
import {
Dialog,
DialogActions,
DialogContent,
FormControl,
FormControlLabel,
Switch,
} from "@mui/material";
import { isAbsoluteUrl } from "next/dist/shared/lib/utils";
import { FC, useEffect } from "react";
import {
Controller,
ControllerRenderProps,
FieldErrors,
useForm,
} from "react-hook-form";
import AttachmentInput from "@/app-components/attachment/AttachmentInput";
import DialogButtons from "@/app-components/buttons/DialogButtons";
import { DialogTitle } from "@/app-components/dialogs/DialogTitle";
import { ContentContainer } from "@/app-components/dialogs/layouts/ContentContainer";
import { ContentItem } from "@/app-components/dialogs/layouts/ContentItem";
import { Adornment } from "@/app-components/inputs/Adornment";
import { Input } from "@/app-components/inputs/Input";
import { useCreate } from "@/hooks/crud/useCreate";
import { useUpdate } from "@/hooks/crud/useUpdate";
import { DialogControlProps } from "@/hooks/useDialog";
import { useToast } from "@/hooks/useToast";
import { useTranslate } from "@/hooks/useTranslate";
import { EntityType } from "@/services/types";
import {
ContentField,
ContentFieldType,
IContentType,
} from "@/types/content-type.types";
import { IContent, IContentAttributes } from "@/types/content.types";
import { MIME_TYPES } from "@/utils/attachment";
interface ContentFieldInput {
contentField: ContentField;
field: ControllerRenderProps<any, string>;
errors: FieldErrors<
IContentAttributes & {
[key: string]: any;
}
>;
idx: number;
}
const ContentFieldInput: React.FC<ContentFieldInput> = ({
contentField: contentField,
field,
errors,
idx,
}) => {
const { t } = useTranslate();
switch (contentField.type) {
case ContentFieldType.TEXT:
case ContentFieldType.TEXTAREA:
case ContentFieldType.URL:
return (
<Input
autoFocus={idx === 0}
multiline={contentField.type === ContentFieldType.TEXTAREA}
rows={contentField.type === ContentFieldType.TEXTAREA ? 5 : 1}
label={t(`label.${contentField.name}`, {
defaultValue: contentField.label,
})}
InputProps={
contentField.type === ContentFieldType.URL
? {
startAdornment: <Adornment Icon={LinkIcon} />,
}
: undefined
}
{...field}
error={!!errors[contentField.name]}
helperText={
errors[contentField.name] ? (
<>{errors[contentField.name]?.message}</>
) : null
}
/>
);
case ContentFieldType.CHECKBOX:
return (
<FormControlLabel
label={t(`label.${contentField.name}`, {
defaultValue: contentField.label,
})}
{...field}
control={<Switch checked={field.value} />}
/>
);
case ContentFieldType.FILE:
return (
<AttachmentInput
label={t(`label.${contentField.name}`, {
defaultValue: contentField.label,
})}
{...field}
onChange={(id, mimeType) => {
field.onChange({ type: mimeType, payload: { id } });
}}
value={field.value?.payload?.id}
accept={MIME_TYPES["images"].join(",")}
format="full"
/>
);
default:
return <Input {...field} error={!!errors[contentField.name]} />;
}
};
const INITIAL_FIELDS = ["title", "status"];
const buildDynamicFields = (
content: IContentAttributes,
contentType?: IContentType,
) => ({
title: content.title,
entity: content.entity,
status: content.status,
dynamicFields: {
...contentType?.fields
?.filter(({ name }) => !INITIAL_FIELDS.includes(name))
.reduce((acc, { name }) => ({ ...acc, [name]: content[name] }), {}),
},
});
export type ContentDialogProps = DialogControlProps<{
content?: IContent;
contentType?: IContentType;
}>;
export const ContentDialog: FC<ContentDialogProps> = ({
open,
data,
closeDialog,
...rest
}) => {
const { content, contentType } = data || {
content: undefined,
contentType: undefined,
};
const { t } = useTranslate();
const { toast } = useToast();
const {
reset,
control,
formState: { errors },
handleSubmit,
} = useForm<IContentAttributes & { [key: string]: any }>({
defaultValues: {
entity: content?.entity || "",
status: content?.status || false,
title: content?.title || "",
},
});
const validationRules = {
title: {
required: t("message.title_is_required"),
},
url: {
required: t("message.url_is_invalid"),
validate: (value: string) =>
isAbsoluteUrl(value) || t("message.url_is_invalid"),
},
};
const { mutateAsync: createContent } = useCreate(EntityType.CONTENT);
const { mutateAsync: updateContent } = useUpdate(EntityType.CONTENT);
const onSubmitForm = async (params: IContentAttributes) => {
if (content) {
updateContent(
{ id: content.id, params: buildDynamicFields(params, contentType) },
{
onError: () => {
toast.error(t("message.internal_server_error"));
},
onSuccess: () => {
closeDialog();
toast.success(t("message.success_save"));
},
},
);
} else if (contentType) {
createContent(
{ ...buildDynamicFields(params, contentType), entity: contentType.id },
{
onError: (error) => {
toast.error(error);
},
onSuccess: () => {
closeDialog();
toast.success(t("message.success_save"));
},
},
);
} else {
throw new Error("Content Type must be passed to the dialog form.");
}
};
useEffect(() => {
if (open) reset();
}, [open, reset]);
useEffect(() => {
if (content) {
reset(content);
} else {
reset();
}
}, [content, reset]);
return (
<Dialog open={open} fullWidth maxWidth="md" onClose={closeDialog} {...rest}>
<form onSubmit={handleSubmit(onSubmitForm)}>
<DialogTitle onClose={closeDialog}>
{content ? t("title.edit_node") : t("title.new_content")}
</DialogTitle>
<DialogContent>
<ContentContainer>
{(contentType?.fields || []).map((contentField, index) => (
<ContentItem key={contentField.name}>
<Controller
name={contentField.name}
control={control}
defaultValue={
content ? content["dynamicFields"][contentField.name] : null
}
rules={
contentField.name === "title"
? validationRules.title
: contentField.type === ContentFieldType.URL
? validationRules.url
: undefined
}
render={({ field }) => (
<FormControl fullWidth sx={{ paddingTop: ".75rem" }}>
<ContentFieldInput
contentField={contentField}
field={field}
errors={errors}
idx={index}
/>
</FormControl>
)}
/>
</ContentItem>
))}
</ContentContainer>
</DialogContent>
<DialogActions>
<DialogButtons closeDialog={closeDialog} />
</DialogActions>
</form>
</Dialog>
);
};