mirror of
https://github.com/hexastack/hexabot
synced 2025-04-07 14:34:32 +00:00
Merge pull request #694 from Hexastack/691-refactor-nlu-entities-dialogs-add-edit-delete-bulk
refactor(frontend): update nlpEntity dialogs
This commit is contained in:
commit
b66df78c80
@ -1,163 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright © 2024 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 {
|
|
||||||
Dialog,
|
|
||||||
FormControl,
|
|
||||||
FormControlLabel,
|
|
||||||
FormLabel,
|
|
||||||
Radio,
|
|
||||||
RadioGroup,
|
|
||||||
DialogContent,
|
|
||||||
DialogActions,
|
|
||||||
} from "@mui/material";
|
|
||||||
import { FC, useEffect } from "react";
|
|
||||||
import { useForm } from "react-hook-form";
|
|
||||||
|
|
||||||
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 { 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 {
|
|
||||||
INlpEntity,
|
|
||||||
INlpEntityAttributes,
|
|
||||||
NlpLookups,
|
|
||||||
} from "@/types/nlp-entity.types";
|
|
||||||
|
|
||||||
export type NlpEntityDialogProps = DialogControlProps<INlpEntity>;
|
|
||||||
export const NlpEntityDialog: FC<NlpEntityDialogProps> = ({
|
|
||||||
open,
|
|
||||||
closeDialog,
|
|
||||||
data,
|
|
||||||
...rest
|
|
||||||
}) => {
|
|
||||||
const { t } = useTranslate();
|
|
||||||
const { toast } = useToast();
|
|
||||||
const { mutateAsync: createNlpEntity } = useCreate(EntityType.NLP_ENTITY, {
|
|
||||||
onError: () => {
|
|
||||||
toast.error(t("message.internal_server_error"));
|
|
||||||
},
|
|
||||||
onSuccess: () => {
|
|
||||||
closeDialog();
|
|
||||||
toast.success(t("message.success_save"));
|
|
||||||
},
|
|
||||||
});
|
|
||||||
const { mutateAsync: updateNlpEntity } = useUpdate(EntityType.NLP_ENTITY, {
|
|
||||||
onError: () => {
|
|
||||||
toast.error(t("message.internal_server_error"));
|
|
||||||
},
|
|
||||||
onSuccess: () => {
|
|
||||||
closeDialog();
|
|
||||||
toast.success(t("message.success_save"));
|
|
||||||
},
|
|
||||||
});
|
|
||||||
const {
|
|
||||||
reset,
|
|
||||||
register,
|
|
||||||
formState: { errors },
|
|
||||||
handleSubmit,
|
|
||||||
} = useForm<INlpEntityAttributes>({
|
|
||||||
defaultValues: {
|
|
||||||
name: data?.name || "",
|
|
||||||
doc: data?.doc || "",
|
|
||||||
lookups: data?.lookups || ["keywords"],
|
|
||||||
},
|
|
||||||
});
|
|
||||||
const validationRules = {
|
|
||||||
name: {
|
|
||||||
required: t("message.name_is_required"),
|
|
||||||
},
|
|
||||||
lookups: {},
|
|
||||||
isChecked: {},
|
|
||||||
};
|
|
||||||
const onSubmitForm = async (params: INlpEntityAttributes) => {
|
|
||||||
if (data) {
|
|
||||||
updateNlpEntity({ id: data.id, params });
|
|
||||||
} else {
|
|
||||||
createNlpEntity(params);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (open) reset();
|
|
||||||
}, [open, reset]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (data) {
|
|
||||||
reset({
|
|
||||||
name: data.name,
|
|
||||||
doc: data.doc,
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
reset();
|
|
||||||
}
|
|
||||||
}, [data, reset]);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Dialog open={open} fullWidth onClose={closeDialog} {...rest}>
|
|
||||||
<form onSubmit={handleSubmit(onSubmitForm)}>
|
|
||||||
<DialogTitle onClose={closeDialog}>
|
|
||||||
{data ? t("title.edit_nlp_entity") : t("title.new_nlp_entity")}
|
|
||||||
</DialogTitle>
|
|
||||||
<DialogContent>
|
|
||||||
<ContentContainer>
|
|
||||||
{!data ? (
|
|
||||||
<ContentItem>
|
|
||||||
<FormControl>
|
|
||||||
<FormLabel>{t("label.lookup_strategies")}</FormLabel>
|
|
||||||
<RadioGroup
|
|
||||||
row
|
|
||||||
{...register("lookups")}
|
|
||||||
defaultValue="keywords"
|
|
||||||
>
|
|
||||||
{Object.values(NlpLookups).map((nlpLookup, index) => (
|
|
||||||
<FormControlLabel
|
|
||||||
key={index}
|
|
||||||
value={nlpLookup}
|
|
||||||
control={<Radio {...register("lookups.0")} />}
|
|
||||||
label={nlpLookup}
|
|
||||||
/>
|
|
||||||
))}
|
|
||||||
</RadioGroup>
|
|
||||||
</FormControl>
|
|
||||||
</ContentItem>
|
|
||||||
) : null}
|
|
||||||
<ContentItem>
|
|
||||||
<Input
|
|
||||||
label={t("label.name")}
|
|
||||||
error={!!errors.name}
|
|
||||||
{...register("name", validationRules.name)}
|
|
||||||
required
|
|
||||||
autoFocus
|
|
||||||
helperText={errors.name ? errors.name.message : null}
|
|
||||||
/>
|
|
||||||
</ContentItem>
|
|
||||||
|
|
||||||
<ContentItem>
|
|
||||||
<Input
|
|
||||||
label={t("label.doc")}
|
|
||||||
{...register("doc")}
|
|
||||||
multiline={true}
|
|
||||||
/>
|
|
||||||
</ContentItem>
|
|
||||||
</ContentContainer>
|
|
||||||
</DialogContent>
|
|
||||||
<DialogActions>
|
|
||||||
<DialogButtons closeDialog={closeDialog} />
|
|
||||||
</DialogActions>
|
|
||||||
</form>
|
|
||||||
</Dialog>
|
|
||||||
);
|
|
||||||
};
|
|
@ -1,11 +1,12 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright © 2024 Hexastack. All rights reserved.
|
* Copyright © 2025 Hexastack. All rights reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
|
* 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.
|
* 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).
|
* 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 AddIcon from "@mui/icons-material/Add";
|
import AddIcon from "@mui/icons-material/Add";
|
||||||
import DeleteIcon from "@mui/icons-material/Delete";
|
import DeleteIcon from "@mui/icons-material/Delete";
|
||||||
import { Button, Chip, Grid } from "@mui/material";
|
import { Button, Chip, Grid } from "@mui/material";
|
||||||
@ -13,7 +14,7 @@ import { GridColDef, GridRowSelectionModel } from "@mui/x-data-grid";
|
|||||||
import { useRouter } from "next/router";
|
import { useRouter } from "next/router";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
|
|
||||||
import { DeleteDialog } from "@/app-components/dialogs";
|
import { ConfirmDialogBody } from "@/app-components/dialogs";
|
||||||
import { FilterTextfield } from "@/app-components/inputs/FilterTextfield";
|
import { FilterTextfield } from "@/app-components/inputs/FilterTextfield";
|
||||||
import {
|
import {
|
||||||
ActionColumnLabel,
|
ActionColumnLabel,
|
||||||
@ -24,7 +25,7 @@ import { DataGrid } from "@/app-components/tables/DataGrid";
|
|||||||
import { useDelete } from "@/hooks/crud/useDelete";
|
import { useDelete } from "@/hooks/crud/useDelete";
|
||||||
import { useDeleteMany } from "@/hooks/crud/useDeleteMany";
|
import { useDeleteMany } from "@/hooks/crud/useDeleteMany";
|
||||||
import { useFind } from "@/hooks/crud/useFind";
|
import { useFind } from "@/hooks/crud/useFind";
|
||||||
import { getDisplayDialogs, useDialog } from "@/hooks/useDialog";
|
import { useDialogs } from "@/hooks/useDialogs";
|
||||||
import { useHasPermission } from "@/hooks/useHasPermission";
|
import { useHasPermission } from "@/hooks/useHasPermission";
|
||||||
import { useSearch } from "@/hooks/useSearch";
|
import { useSearch } from "@/hooks/useSearch";
|
||||||
import { useToast } from "@/hooks/useToast";
|
import { useToast } from "@/hooks/useToast";
|
||||||
@ -34,39 +35,32 @@ import { INlpEntity } from "@/types/nlp-entity.types";
|
|||||||
import { PermissionAction } from "@/types/permission.types";
|
import { PermissionAction } from "@/types/permission.types";
|
||||||
import { getDateTimeFormatter } from "@/utils/date";
|
import { getDateTimeFormatter } from "@/utils/date";
|
||||||
|
|
||||||
import { NlpEntityDialog } from "../NlpEntityDialog";
|
import { NlpEntityFormDialog } from "./NlpEntityFormDialog";
|
||||||
|
|
||||||
const NlpEntity = () => {
|
const NlpEntity = () => {
|
||||||
|
const { t } = useTranslate();
|
||||||
|
const { toast } = useToast();
|
||||||
|
const dialogs = useDialogs();
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const deleteEntityDialogCtl = useDialog<string>(false);
|
|
||||||
const hasPermission = useHasPermission();
|
const hasPermission = useHasPermission();
|
||||||
const editEntityDialogCtl = useDialog<INlpEntity>(false);
|
const { mutate: deleteNlpEntity } = useDelete(EntityType.NLP_ENTITY, {
|
||||||
const { mutateAsync: deleteNlpEntity } = useDelete(EntityType.NLP_ENTITY, {
|
|
||||||
onError: () => {
|
onError: () => {
|
||||||
toast.error(t("message.internal_server_error"));
|
toast.error(t("message.internal_server_error"));
|
||||||
},
|
},
|
||||||
onSuccess() {
|
onSuccess() {
|
||||||
deleteEntityDialogCtl.closeDialog();
|
|
||||||
toast.success(t("message.item_delete_success"));
|
toast.success(t("message.item_delete_success"));
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
const { mutateAsync: deleteNlpEntities } = useDeleteMany(
|
const { mutate: deleteNlpEntities } = useDeleteMany(EntityType.NLP_ENTITY, {
|
||||||
EntityType.NLP_ENTITY,
|
|
||||||
{
|
|
||||||
onError: (error) => {
|
onError: (error) => {
|
||||||
toast.error(error);
|
toast.error(error);
|
||||||
},
|
},
|
||||||
onSuccess: () => {
|
onSuccess: () => {
|
||||||
deleteEntityDialogCtl.closeDialog();
|
|
||||||
setSelectedNlpEntities([]);
|
setSelectedNlpEntities([]);
|
||||||
toast.success(t("message.item_delete_success"));
|
toast.success(t("message.item_delete_success"));
|
||||||
},
|
},
|
||||||
},
|
});
|
||||||
);
|
|
||||||
const [selectedNlpEntities, setSelectedNlpEntities] = useState<string[]>([]);
|
const [selectedNlpEntities, setSelectedNlpEntities] = useState<string[]>([]);
|
||||||
const addDialogCtl = useDialog<INlpEntity>(false);
|
|
||||||
const { t } = useTranslate();
|
|
||||||
const { toast } = useToast();
|
|
||||||
const { onSearch, searchPayload } = useSearch<INlpEntity>({
|
const { onSearch, searchPayload } = useSearch<INlpEntity>({
|
||||||
$or: ["name", "doc"],
|
$or: ["name", "doc"],
|
||||||
});
|
});
|
||||||
@ -100,12 +94,18 @@ const NlpEntity = () => {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: ActionColumnLabel.Edit,
|
label: ActionColumnLabel.Edit,
|
||||||
action: (row) => editEntityDialogCtl.openDialog(row),
|
action: (row) => dialogs.open(NlpEntityFormDialog, row),
|
||||||
requires: [PermissionAction.UPDATE],
|
requires: [PermissionAction.UPDATE],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: ActionColumnLabel.Delete,
|
label: ActionColumnLabel.Delete,
|
||||||
action: (row) => deleteEntityDialogCtl.openDialog(row.id),
|
action: async ({ id }) => {
|
||||||
|
const isConfirmed = await dialogs.confirm(ConfirmDialogBody);
|
||||||
|
|
||||||
|
if (isConfirmed) {
|
||||||
|
deleteNlpEntity(id);
|
||||||
|
}
|
||||||
|
},
|
||||||
requires: [PermissionAction.DELETE],
|
requires: [PermissionAction.DELETE],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
@ -177,21 +177,6 @@ const NlpEntity = () => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Grid item xs={12}>
|
<Grid item xs={12}>
|
||||||
<NlpEntityDialog {...getDisplayDialogs(addDialogCtl)} />
|
|
||||||
<NlpEntityDialog {...editEntityDialogCtl} />
|
|
||||||
<DeleteDialog
|
|
||||||
{...deleteEntityDialogCtl}
|
|
||||||
callback={() => {
|
|
||||||
if (selectedNlpEntities.length > 0) {
|
|
||||||
deleteNlpEntities(selectedNlpEntities);
|
|
||||||
setSelectedNlpEntities([]);
|
|
||||||
deleteEntityDialogCtl.closeDialog();
|
|
||||||
} else if (deleteEntityDialogCtl.data) {
|
|
||||||
deleteNlpEntity(deleteEntityDialogCtl.data);
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<Grid
|
<Grid
|
||||||
justifyContent="flex-end"
|
justifyContent="flex-end"
|
||||||
gap={1}
|
gap={1}
|
||||||
@ -209,24 +194,32 @@ const NlpEntity = () => {
|
|||||||
startIcon={<AddIcon />}
|
startIcon={<AddIcon />}
|
||||||
variant="contained"
|
variant="contained"
|
||||||
sx={{ float: "right" }}
|
sx={{ float: "right" }}
|
||||||
onClick={() => addDialogCtl.openDialog()}
|
onClick={() => dialogs.open(NlpEntityFormDialog, null)}
|
||||||
>
|
>
|
||||||
{t("button.add")}
|
{t("button.add")}
|
||||||
</Button>
|
</Button>
|
||||||
</Grid>
|
</Grid>
|
||||||
) : null}
|
) : null}
|
||||||
{selectedNlpEntities.length > 0 && (
|
|
||||||
<Grid item>
|
<Grid item>
|
||||||
<Button
|
<Button
|
||||||
startIcon={<DeleteIcon />}
|
startIcon={<DeleteIcon />}
|
||||||
variant="contained"
|
variant="contained"
|
||||||
color="error"
|
color="error"
|
||||||
onClick={() => deleteEntityDialogCtl.openDialog(undefined)}
|
onClick={async () => {
|
||||||
|
const isConfirmed = await dialogs.confirm(ConfirmDialogBody, {
|
||||||
|
mode: "selection",
|
||||||
|
count: selectedNlpEntities.length,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (isConfirmed) {
|
||||||
|
deleteNlpEntities(selectedNlpEntities);
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
disabled={!selectedNlpEntities.length}
|
||||||
>
|
>
|
||||||
{t("button.delete")}
|
{t("button.delete")}
|
||||||
</Button>
|
</Button>
|
||||||
</Grid>
|
</Grid>
|
||||||
)}
|
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<Grid mt={3}>
|
<Grid mt={3}>
|
||||||
|
141
frontend/src/components/nlp/components/NlpEntityForm.tsx
Normal file
141
frontend/src/components/nlp/components/NlpEntityForm.tsx
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
/*
|
||||||
|
* 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 {
|
||||||
|
FormControl,
|
||||||
|
FormControlLabel,
|
||||||
|
FormLabel,
|
||||||
|
Radio,
|
||||||
|
RadioGroup,
|
||||||
|
} from "@mui/material";
|
||||||
|
import { FC, Fragment, useEffect } from "react";
|
||||||
|
import { useForm } from "react-hook-form";
|
||||||
|
|
||||||
|
import { ContentContainer, ContentItem } from "@/app-components/dialogs/";
|
||||||
|
import { Input } from "@/app-components/inputs/Input";
|
||||||
|
import { useCreate } from "@/hooks/crud/useCreate";
|
||||||
|
import { useUpdate } from "@/hooks/crud/useUpdate";
|
||||||
|
import { useToast } from "@/hooks/useToast";
|
||||||
|
import { useTranslate } from "@/hooks/useTranslate";
|
||||||
|
import { EntityType } from "@/services/types";
|
||||||
|
import { ComponentFormProps } from "@/types/common/dialogs.types";
|
||||||
|
import {
|
||||||
|
INlpEntity,
|
||||||
|
INlpEntityAttributes,
|
||||||
|
NlpLookups,
|
||||||
|
} from "@/types/nlp-entity.types";
|
||||||
|
|
||||||
|
export const NlpEntityVarForm: FC<ComponentFormProps<INlpEntity>> = ({
|
||||||
|
data,
|
||||||
|
Wrapper = Fragment,
|
||||||
|
WrapperProps,
|
||||||
|
...rest
|
||||||
|
}) => {
|
||||||
|
const { t } = useTranslate();
|
||||||
|
const { toast } = useToast();
|
||||||
|
const options = {
|
||||||
|
onError: (error: Error) => {
|
||||||
|
rest.onError?.();
|
||||||
|
toast.error(error.message || t("message.internal_server_error"));
|
||||||
|
},
|
||||||
|
onSuccess: () => {
|
||||||
|
rest.onSuccess?.();
|
||||||
|
toast.success(t("message.success_save"));
|
||||||
|
},
|
||||||
|
};
|
||||||
|
const { mutate: createNlpEntity } = useCreate(EntityType.NLP_ENTITY, options);
|
||||||
|
const { mutate: updateNlpEntity } = useUpdate(EntityType.NLP_ENTITY, options);
|
||||||
|
const {
|
||||||
|
reset,
|
||||||
|
register,
|
||||||
|
formState: { errors },
|
||||||
|
handleSubmit,
|
||||||
|
} = useForm<INlpEntityAttributes>({
|
||||||
|
defaultValues: {
|
||||||
|
name: data?.name || "",
|
||||||
|
doc: data?.doc || "",
|
||||||
|
lookups: data?.lookups || ["keywords"],
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const validationRules = {
|
||||||
|
name: {
|
||||||
|
required: t("message.name_is_required"),
|
||||||
|
},
|
||||||
|
lookups: {},
|
||||||
|
isChecked: {},
|
||||||
|
};
|
||||||
|
const onSubmitForm = (params: INlpEntityAttributes) => {
|
||||||
|
if (data) {
|
||||||
|
updateNlpEntity({ id: data.id, params });
|
||||||
|
} else {
|
||||||
|
createNlpEntity(params);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (data) {
|
||||||
|
reset({
|
||||||
|
name: data.name,
|
||||||
|
doc: data.doc,
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
reset();
|
||||||
|
}
|
||||||
|
}, [data, reset]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Wrapper
|
||||||
|
open={!!WrapperProps?.open}
|
||||||
|
onSubmit={handleSubmit(onSubmitForm)}
|
||||||
|
{...WrapperProps}
|
||||||
|
>
|
||||||
|
<form onSubmit={handleSubmit(onSubmitForm)}>
|
||||||
|
<ContentContainer>
|
||||||
|
{!data ? (
|
||||||
|
<ContentItem>
|
||||||
|
<FormControl>
|
||||||
|
<FormLabel>{t("label.lookup_strategies")}</FormLabel>
|
||||||
|
<RadioGroup
|
||||||
|
row
|
||||||
|
{...register("lookups")}
|
||||||
|
defaultValue="keywords"
|
||||||
|
>
|
||||||
|
{Object.values(NlpLookups).map((nlpLookup, index) => (
|
||||||
|
<FormControlLabel
|
||||||
|
key={index}
|
||||||
|
value={nlpLookup}
|
||||||
|
control={<Radio {...register("lookups.0")} />}
|
||||||
|
label={nlpLookup}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</RadioGroup>
|
||||||
|
</FormControl>
|
||||||
|
</ContentItem>
|
||||||
|
) : null}
|
||||||
|
<ContentItem>
|
||||||
|
<Input
|
||||||
|
label={t("label.name")}
|
||||||
|
error={!!errors.name}
|
||||||
|
{...register("name", validationRules.name)}
|
||||||
|
required
|
||||||
|
autoFocus
|
||||||
|
helperText={errors.name ? errors.name.message : null}
|
||||||
|
/>
|
||||||
|
</ContentItem>
|
||||||
|
<ContentItem>
|
||||||
|
<Input
|
||||||
|
label={t("label.doc")}
|
||||||
|
{...register("doc")}
|
||||||
|
multiline={true}
|
||||||
|
/>
|
||||||
|
</ContentItem>
|
||||||
|
</ContentContainer>
|
||||||
|
</form>
|
||||||
|
</Wrapper>
|
||||||
|
);
|
||||||
|
};
|
@ -0,0 +1,24 @@
|
|||||||
|
/*
|
||||||
|
* 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 { GenericFormDialog } from "@/app-components/dialogs";
|
||||||
|
import { ComponentFormDialogProps } from "@/types/common/dialogs.types";
|
||||||
|
import { INlpEntity } from "@/types/nlp-entity.types";
|
||||||
|
|
||||||
|
import { NlpEntityVarForm } from "./NlpEntityForm";
|
||||||
|
|
||||||
|
export const NlpEntityFormDialog = <T extends INlpEntity = INlpEntity>(
|
||||||
|
props: ComponentFormDialogProps<T>,
|
||||||
|
) => (
|
||||||
|
<GenericFormDialog<T>
|
||||||
|
Form={NlpEntityVarForm}
|
||||||
|
addText="title.new_nlp_entity"
|
||||||
|
editText="title.edit_nlp_entity"
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
);
|
Loading…
Reference in New Issue
Block a user