mirror of
https://github.com/hexastack/hexabot
synced 2025-05-03 20:41:15 +00:00
feat: new messages button
This commit is contained in:
parent
da25df6bb9
commit
1e2c758a5c
@ -558,6 +558,12 @@
|
||||
"manage_roles": "Manage Roles",
|
||||
"connect_with_sso": "Connect with SSO",
|
||||
"add_pattern": "New Trigger",
|
||||
"postback": "Postback",
|
||||
"url": "Url",
|
||||
"add_button": "New Button",
|
||||
"add_quick_reply": "New Quick Reply",
|
||||
"text": "Text",
|
||||
"location": "Location",
|
||||
"mark_as_default": "Mark as Default",
|
||||
"toggle": "Toggle button"
|
||||
},
|
||||
|
@ -559,6 +559,12 @@
|
||||
"manage_roles": "Gérer les rôles",
|
||||
"connect_with_sso": "Se connecter avec SSO",
|
||||
"add_pattern": "Ajouter un déclencheur",
|
||||
"postback": "Valeur de retour",
|
||||
"url": "Url",
|
||||
"add_button": "Ajouter un bouton",
|
||||
"add_quick_reply": "Ajouter une réponse rapide",
|
||||
"text": "Texte",
|
||||
"location": "Emplacement",
|
||||
"mark_as_default": "Par Défaut",
|
||||
"toggle": "Bouton de bascule"
|
||||
},
|
||||
|
@ -32,6 +32,7 @@ interface AddPatternProps {
|
||||
label?: string;
|
||||
icon?: React.ReactNode;
|
||||
sx?: SxProps<Theme> | undefined;
|
||||
disabled?: boolean;
|
||||
}
|
||||
|
||||
const DropdownButton: React.FC<AddPatternProps> = ({
|
||||
@ -40,10 +41,13 @@ const DropdownButton: React.FC<AddPatternProps> = ({
|
||||
label = "Add",
|
||||
icon,
|
||||
sx,
|
||||
disabled = false,
|
||||
}) => {
|
||||
const [anchorEl, setAnchorEl] = useState<HTMLElement | null>(null);
|
||||
const handleOpen = (event: React.MouseEvent<HTMLElement>) => {
|
||||
setAnchorEl(event.currentTarget);
|
||||
if (!disabled) {
|
||||
setAnchorEl(event.currentTarget);
|
||||
}
|
||||
};
|
||||
const handleClose = () => {
|
||||
setAnchorEl(null);
|
||||
@ -61,6 +65,7 @@ const DropdownButton: React.FC<AddPatternProps> = ({
|
||||
onClick={handleOpen}
|
||||
startIcon={icon}
|
||||
endIcon={<ArrowDropDown />}
|
||||
disabled={disabled}
|
||||
>
|
||||
{label}
|
||||
</Button>
|
||||
|
@ -6,12 +6,15 @@
|
||||
* 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 { RemoveCircleOutline } from "@mui/icons-material";
|
||||
import { KeyboardReturn, Link, RemoveCircleOutline } from "@mui/icons-material";
|
||||
import AddIcon from "@mui/icons-material/Add";
|
||||
import { Box, Button, Grid, IconButton } from "@mui/material";
|
||||
import { FC, Fragment, useEffect, useState } from "react";
|
||||
import { Box, Grid, IconButton } from "@mui/material";
|
||||
import { FC, Fragment, useEffect, useMemo, useState } from "react";
|
||||
import { FieldPath } from "react-hook-form";
|
||||
|
||||
import DropdownButton, {
|
||||
DropdownButtonAction,
|
||||
} from "@/app-components/buttons/DropdownButton";
|
||||
import { useTranslate } from "@/hooks/useTranslate";
|
||||
import { IBlockAttributes } from "@/types/block.types";
|
||||
import { AnyButton, ButtonType } from "@/types/message.types";
|
||||
@ -40,11 +43,31 @@ const ButtonsInput: FC<ButtonsInput> = ({
|
||||
const [buttons, setButtons] = useState<ValueWithId<AnyButton>[]>(
|
||||
value.map((button) => createValueWithId(button)),
|
||||
);
|
||||
const addInput = () => {
|
||||
setButtons([
|
||||
...buttons,
|
||||
createValueWithId({ type: ButtonType.postback, title: "", payload: "" }),
|
||||
]);
|
||||
const actions: DropdownButtonAction[] = useMemo(
|
||||
() => [
|
||||
{
|
||||
icon: <KeyboardReturn />,
|
||||
name: t("button.postback"),
|
||||
defaultValue: {
|
||||
type: ButtonType.postback,
|
||||
title: "",
|
||||
payload: "",
|
||||
},
|
||||
},
|
||||
{
|
||||
icon: <Link />,
|
||||
name: t("button.url"),
|
||||
defaultValue: {
|
||||
type: ButtonType.web_url,
|
||||
title: "",
|
||||
url: "",
|
||||
},
|
||||
},
|
||||
],
|
||||
[t],
|
||||
);
|
||||
const addInput = (defaultValue: AnyButton) => {
|
||||
setButtons([...buttons, createValueWithId(defaultValue)]);
|
||||
};
|
||||
const removeInput = (index: number) => {
|
||||
const updatedButtons = [...buttons];
|
||||
@ -111,16 +134,14 @@ const ButtonsInput: FC<ButtonsInput> = ({
|
||||
</Fragment>
|
||||
))}
|
||||
</Grid>
|
||||
<Button
|
||||
variant="contained"
|
||||
color="primary"
|
||||
onClick={addInput}
|
||||
startIcon={<AddIcon />}
|
||||
<DropdownButton
|
||||
sx={{ m: 1, float: "right" }}
|
||||
label={t("button.add_button")}
|
||||
actions={actions}
|
||||
onClick={(action) => addInput(action.defaultValue)}
|
||||
icon={<AddIcon />}
|
||||
disabled={buttons.length >= maxInput}
|
||||
>
|
||||
{t("button.add")}
|
||||
</Button>
|
||||
/>
|
||||
</Box>
|
||||
);
|
||||
};
|
||||
|
@ -6,11 +6,14 @@
|
||||
* 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 { RemoveCircleOutline } from "@mui/icons-material";
|
||||
import { Abc, LocationOn, RemoveCircleOutline } from "@mui/icons-material";
|
||||
import AddIcon from "@mui/icons-material/Add";
|
||||
import { Box, Button, Grid, IconButton } from "@mui/material";
|
||||
import { FC, Fragment, useEffect, useState } from "react";
|
||||
import { Box, Grid, IconButton } from "@mui/material";
|
||||
import { FC, Fragment, useEffect, useMemo, useState } from "react";
|
||||
|
||||
import DropdownButton, {
|
||||
DropdownButtonAction,
|
||||
} from "@/app-components/buttons/DropdownButton";
|
||||
import { useTranslate } from "@/hooks/useTranslate";
|
||||
import { QuickReplyType, StdQuickReply } from "@/types/message.types";
|
||||
import { ValueWithId, createValueWithId } from "@/utils/valueWithId";
|
||||
@ -31,16 +34,30 @@ const QuickRepliesInput: FC<QuickRepliesInput> = ({
|
||||
const { t } = useTranslate();
|
||||
const [quickReplies, setQuickReplies] = useState<
|
||||
ValueWithId<StdQuickReply>[]
|
||||
>(value.map((quickReplie) => createValueWithId(quickReplie)));
|
||||
const addInput = () => {
|
||||
setQuickReplies([
|
||||
...quickReplies,
|
||||
createValueWithId({
|
||||
content_type: QuickReplyType.text,
|
||||
title: "",
|
||||
payload: "",
|
||||
}),
|
||||
]);
|
||||
>(value.map((quickReply) => createValueWithId(quickReply)));
|
||||
const actions: DropdownButtonAction[] = useMemo(
|
||||
() => [
|
||||
{
|
||||
icon: <Abc />,
|
||||
name: t("button.text"),
|
||||
defaultValue: {
|
||||
content_type: QuickReplyType.text,
|
||||
title: "",
|
||||
payload: "",
|
||||
},
|
||||
},
|
||||
{
|
||||
icon: <LocationOn />,
|
||||
name: t("button.location"),
|
||||
defaultValue: {
|
||||
content_type: QuickReplyType.location,
|
||||
},
|
||||
},
|
||||
],
|
||||
[t],
|
||||
);
|
||||
const addInput = (defaultValue: StdQuickReply) => {
|
||||
setQuickReplies([...quickReplies, createValueWithId(defaultValue)]);
|
||||
};
|
||||
const removeInput = (index: number) => {
|
||||
const updatedQuickReplies = [...quickReplies];
|
||||
@ -104,16 +121,14 @@ const QuickRepliesInput: FC<QuickRepliesInput> = ({
|
||||
</Fragment>
|
||||
))}
|
||||
</Grid>
|
||||
<Button
|
||||
variant="contained"
|
||||
color="primary"
|
||||
onClick={addInput}
|
||||
startIcon={<AddIcon />}
|
||||
<DropdownButton
|
||||
sx={{ marginTop: 2, float: "right" }}
|
||||
label={t("button.add_quick_reply")}
|
||||
actions={actions}
|
||||
onClick={(action) => addInput(action.defaultValue)}
|
||||
icon={<AddIcon />}
|
||||
disabled={quickReplies.length > 10}
|
||||
>
|
||||
{t("button.add")}
|
||||
</Button>
|
||||
/>
|
||||
</Box>
|
||||
);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user