mirror of
https://github.com/hexastack/hexabot
synced 2024-12-02 00:54:56 +00:00
feat: new nlp pattern input (partial)
This commit is contained in:
parent
3dbb500a5f
commit
5cda7ae2c6
@ -11,7 +11,7 @@ services:
|
||||
- db-network
|
||||
- app-network
|
||||
volumes:
|
||||
- api-data:/app/uploads
|
||||
- ../api/uploads:/app/uploads
|
||||
depends_on:
|
||||
mongo:
|
||||
condition: service_healthy
|
||||
|
@ -456,7 +456,8 @@
|
||||
"is_rtl": "RTL",
|
||||
"original_text": "Original Text",
|
||||
"inputs": "Inputs",
|
||||
"outputs": "Outputs"
|
||||
"outputs": "Outputs",
|
||||
"any": "- Any -"
|
||||
},
|
||||
"placeholder": {
|
||||
"your_username": "Your username",
|
||||
|
@ -457,7 +457,8 @@
|
||||
"is_rtl": "RTL",
|
||||
"original_text": "Texte par défaut",
|
||||
"inputs": "Port d'entré",
|
||||
"outputs": "Port de sorti"
|
||||
"outputs": "Port de sorti",
|
||||
"any": "- Toutes -"
|
||||
},
|
||||
"placeholder": {
|
||||
"your_username": "Votre nom d'utilisateur",
|
||||
|
248
frontend/src/app-components/inputs/NlpPatternSelect.tsx
Normal file
248
frontend/src/app-components/inputs/NlpPatternSelect.tsx
Normal file
@ -0,0 +1,248 @@
|
||||
/*
|
||||
* 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 { RemoveOutlined } from "@mui/icons-material";
|
||||
import {
|
||||
Box,
|
||||
CircularProgress,
|
||||
IconButton,
|
||||
InputAdornment,
|
||||
Typography,
|
||||
useTheme,
|
||||
} from "@mui/material";
|
||||
import Autocomplete from "@mui/material/Autocomplete";
|
||||
import { forwardRef, SyntheticEvent, useState } from "react";
|
||||
|
||||
import { Input } from "@/app-components/inputs/Input";
|
||||
import { useFind } from "@/hooks/crud/useFind";
|
||||
import { useGetFromCache } from "@/hooks/crud/useGet";
|
||||
import { useSearch } from "@/hooks/useSearch";
|
||||
import { useTranslate } from "@/hooks/useTranslate";
|
||||
import { EntityType, Format } from "@/services/types";
|
||||
import { NlpPattern } from "@/types/block.types";
|
||||
import { INlpEntity } from "@/types/nlp-entity.types";
|
||||
|
||||
type NlpPatternSelectProps = {};
|
||||
|
||||
const NlpPatternSelect = ({}: NlpPatternSelectProps, ref) => {
|
||||
const [selected, setSelected] = useState<NlpPattern[]>([]);
|
||||
const theme = useTheme();
|
||||
const { t } = useTranslate();
|
||||
const { onSearch, searchPayload } = useSearch<INlpEntity>({
|
||||
$iLike: ["name"],
|
||||
});
|
||||
const { data: options, isLoading } = useFind(
|
||||
{ entity: EntityType.NLP_ENTITY, format: Format.FULL },
|
||||
{ hasCount: false, params: searchPayload },
|
||||
);
|
||||
const getNlpValueFromCache = useGetFromCache(EntityType.NLP_VALUE);
|
||||
|
||||
function handleNlpEntityChange(
|
||||
_event: SyntheticEvent<Element, Event>,
|
||||
entities: INlpEntity[],
|
||||
): void {
|
||||
const intersection = selected.filter(({ entity: entityName }) =>
|
||||
entities.find(({ name }) => name === entityName),
|
||||
);
|
||||
const additions = entities.filter(
|
||||
({ name }) =>
|
||||
!selected.find(({ entity: entityName }) => name === entityName),
|
||||
);
|
||||
const newSelection: NlpPattern[] = [
|
||||
...intersection,
|
||||
...additions.map(
|
||||
({ name }) =>
|
||||
({
|
||||
entity: name,
|
||||
match: "entity",
|
||||
value: name,
|
||||
} as NlpPattern),
|
||||
),
|
||||
];
|
||||
|
||||
setSelected(newSelection);
|
||||
}
|
||||
|
||||
const handleNlpValueChange = (entity: INlpEntity, valueId: string) => {
|
||||
const value = getNlpValueFromCache(valueId);
|
||||
|
||||
if (!value) {
|
||||
throw new Error("Unable to find nlp value in cache");
|
||||
}
|
||||
|
||||
const newSelection = [...selected];
|
||||
const update = newSelection.find(({ entity: e }) => e === entity.name);
|
||||
|
||||
if (!update) {
|
||||
throw new Error("Unable to find nlp entity");
|
||||
}
|
||||
|
||||
if (value.id === entity.id) {
|
||||
update.match = "entity";
|
||||
update.value = entity.name;
|
||||
} else {
|
||||
update.match = "value";
|
||||
update.value = value.value;
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<Autocomplete
|
||||
ref={ref}
|
||||
size="medium"
|
||||
disabled={options.length === 0}
|
||||
defaultValue={options.filter(({ name }) =>
|
||||
selected.find(({ entity: entityName }) => entityName === name),
|
||||
)}
|
||||
multiple={true}
|
||||
options={options}
|
||||
onChange={handleNlpEntityChange}
|
||||
renderOption={(props, { name, doc }, { selected }) => (
|
||||
<Box
|
||||
component="li"
|
||||
{...props}
|
||||
p={2}
|
||||
display="flex"
|
||||
flexDirection="column"
|
||||
style={{
|
||||
alignItems: "start",
|
||||
}}
|
||||
sx={{
|
||||
backgroundColor: selected
|
||||
? theme.palette.action.selected
|
||||
: "inherit",
|
||||
"&:hover": {
|
||||
backgroundColor: theme.palette.action.hover,
|
||||
},
|
||||
cursor: "pointer",
|
||||
}}
|
||||
>
|
||||
<Typography variant="body1" fontWeight="bold">
|
||||
{name}
|
||||
</Typography>
|
||||
{doc && (
|
||||
<Typography variant="body2" color="textSecondary">
|
||||
{doc}
|
||||
</Typography>
|
||||
)}
|
||||
</Box>
|
||||
)}
|
||||
getOptionLabel={({ name }) => name}
|
||||
isOptionEqualToValue={(option, value) => option.id === value.id}
|
||||
freeSolo={false}
|
||||
loading={isLoading}
|
||||
renderTags={(entities, getTagProps) => (
|
||||
<Box
|
||||
sx={{
|
||||
display: "flex",
|
||||
flexWrap: "wrap",
|
||||
gap: 0.5,
|
||||
}}
|
||||
>
|
||||
{entities.map((entity, index) => {
|
||||
const { key, onDelete } = getTagProps({ index });
|
||||
const handleChange = (
|
||||
event: SyntheticEvent<Element, Event>,
|
||||
valueId: string,
|
||||
) => {
|
||||
handleNlpValueChange(entity, valueId);
|
||||
};
|
||||
|
||||
return (
|
||||
<Autocomplete
|
||||
size="small"
|
||||
options={[entity.id].concat(entity.values)}
|
||||
multiple={false}
|
||||
key={key}
|
||||
getOptionLabel={(option) =>
|
||||
option
|
||||
? getNlpValueFromCache(option)?.value || "-"
|
||||
: t("label.any")
|
||||
}
|
||||
disableClearable
|
||||
popupIcon={false}
|
||||
onChange={handleChange}
|
||||
sx={{
|
||||
minWidth: 50,
|
||||
padding: 0,
|
||||
".MuiAutocomplete-input": {
|
||||
minWidth: "100px !important",
|
||||
},
|
||||
"& .MuiOutlinedInput-root": {
|
||||
paddingRight: "2rem !important",
|
||||
"&.MuiInputBase-sizeSmall": {
|
||||
padding: "0 !important",
|
||||
},
|
||||
},
|
||||
}}
|
||||
renderInput={(props) => (
|
||||
<Input
|
||||
{...props}
|
||||
sx={{ padding: 0, overflow: "hidden" }}
|
||||
// onChange={(e) => onSearch(e.target.value)}
|
||||
InputProps={{
|
||||
...props.InputProps,
|
||||
startAdornment: (
|
||||
<InputAdornment
|
||||
position="start"
|
||||
sx={{
|
||||
padding: "0 1rem",
|
||||
height: "100%",
|
||||
backgroundColor: theme.palette.grey[200],
|
||||
}}
|
||||
>
|
||||
{entity.name}
|
||||
</InputAdornment>
|
||||
),
|
||||
endAdornment: (
|
||||
<InputAdornment position="end">
|
||||
{isLoading ? (
|
||||
<CircularProgress color="inherit" size={20} />
|
||||
) : (
|
||||
<IconButton
|
||||
onClick={onDelete}
|
||||
edge="end"
|
||||
size="small"
|
||||
>
|
||||
<RemoveOutlined />
|
||||
</IconButton>
|
||||
)}
|
||||
</InputAdornment>
|
||||
),
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
/>
|
||||
);
|
||||
})}
|
||||
</Box>
|
||||
)}
|
||||
renderInput={(props) => (
|
||||
<Input
|
||||
{...props}
|
||||
label={t("label.nlp")}
|
||||
onChange={(e) => onSearch(e.target.value)}
|
||||
InputProps={{
|
||||
...props.InputProps,
|
||||
endAdornment: isLoading ? (
|
||||
<CircularProgress color="inherit" size={20} />
|
||||
) : null,
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
NlpPatternSelect.displayName = "NlpPatternSelect";
|
||||
|
||||
export default forwardRef(NlpPatternSelect) as (
|
||||
props: NlpPatternSelectProps & {
|
||||
ref?: React.ForwardedRef<HTMLDivElement>;
|
||||
},
|
||||
) => ReturnType<typeof NlpPatternSelect>;
|
@ -12,6 +12,7 @@ import { RegisterOptions, useFormContext } from "react-hook-form";
|
||||
|
||||
import AutoCompleteEntitySelect from "@/app-components/inputs/AutoCompleteEntitySelect";
|
||||
import { Input } from "@/app-components/inputs/Input";
|
||||
import NlpPatternSelect from "@/app-components/inputs/NlpPatternSelect";
|
||||
import { RegexInput } from "@/app-components/inputs/RegexInput";
|
||||
import { useGetFromCache } from "@/hooks/crud/useGet";
|
||||
import { useTranslate } from "@/hooks/useTranslate";
|
||||
@ -147,6 +148,7 @@ const PatternInput: FC<PatternInputProps> = ({
|
||||
</Input>
|
||||
</Grid>
|
||||
<Grid item xs={9}>
|
||||
{patternType === "nlp" && <NlpPatternSelect />}
|
||||
{patternType === "nlp" ? (
|
||||
<AutoCompleteEntitySelect<INlpValue, "value">
|
||||
value={(pattern as NlpPattern[]).map((v) =>
|
||||
|
@ -69,14 +69,9 @@ export interface PayloadPattern {
|
||||
type?: PayloadType;
|
||||
}
|
||||
|
||||
export type NlpPattern =
|
||||
| {
|
||||
export type NlpPattern = {
|
||||
entity: string;
|
||||
match: "entity";
|
||||
}
|
||||
| {
|
||||
entity: string;
|
||||
match: "value";
|
||||
match: "value" | "entity";
|
||||
value: string;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user