2022-01-06 01:26:15 +00:00
|
|
|
import React, { useState, useEffect, useRef } from "react";
|
|
|
|
|
|
|
|
import * as Yup from "yup";
|
|
|
|
import { Formik, Form, Field } from "formik";
|
|
|
|
import { toast } from "react-toastify";
|
|
|
|
|
|
|
|
import { makeStyles } from "@material-ui/core/styles";
|
|
|
|
import { green } from "@material-ui/core/colors";
|
|
|
|
import Button from "@material-ui/core/Button";
|
|
|
|
import TextField from "@material-ui/core/TextField";
|
|
|
|
import Dialog from "@material-ui/core/Dialog";
|
|
|
|
import DialogActions from "@material-ui/core/DialogActions";
|
|
|
|
import DialogContent from "@material-ui/core/DialogContent";
|
|
|
|
import DialogTitle from "@material-ui/core/DialogTitle";
|
|
|
|
import CircularProgress from "@material-ui/core/CircularProgress";
|
2022-11-08 20:23:13 +00:00
|
|
|
import {
|
|
|
|
FormControl,
|
|
|
|
InputLabel,
|
|
|
|
Select,
|
|
|
|
MenuItem,
|
|
|
|
IconButton,
|
|
|
|
InputAdornment
|
|
|
|
} from "@material-ui/core"
|
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
|
|
|
|
import { i18n } from "../../translate/i18n";
|
|
|
|
|
|
|
|
import api from "../../services/api";
|
|
|
|
import toastError from "../../errors/toastError";
|
|
|
|
import ColorPicker from "../ColorPicker";
|
|
|
|
import { Colorize } from "@material-ui/icons";
|
2022-11-08 20:23:13 +00:00
|
|
|
import useDialogflows from "../../hooks/useDialogflows";
|
2022-01-06 01:26:15 +00:00
|
|
|
|
|
|
|
const useStyles = makeStyles(theme => ({
|
|
|
|
root: {
|
|
|
|
display: "flex",
|
|
|
|
flexWrap: "wrap",
|
|
|
|
},
|
|
|
|
textField: {
|
|
|
|
marginRight: theme.spacing(1),
|
|
|
|
flex: 1,
|
|
|
|
},
|
|
|
|
|
|
|
|
btnWrapper: {
|
|
|
|
position: "relative",
|
|
|
|
},
|
|
|
|
|
|
|
|
buttonProgress: {
|
|
|
|
color: green[500],
|
|
|
|
position: "absolute",
|
|
|
|
top: "50%",
|
|
|
|
left: "50%",
|
|
|
|
marginTop: -12,
|
|
|
|
marginLeft: -12,
|
|
|
|
},
|
|
|
|
formControl: {
|
2022-11-08 20:23:13 +00:00
|
|
|
marginRight: theme.spacing(1),
|
|
|
|
minWidth: 200,
|
2022-01-06 01:26:15 +00:00
|
|
|
},
|
|
|
|
colorAdorment: {
|
|
|
|
width: 20,
|
|
|
|
height: 20,
|
|
|
|
},
|
|
|
|
}));
|
|
|
|
|
|
|
|
const QueueSchema = Yup.object().shape({
|
|
|
|
name: Yup.string()
|
|
|
|
.min(2, "Too Short!")
|
|
|
|
.max(50, "Too Long!")
|
|
|
|
.required("Required"),
|
|
|
|
color: Yup.string().min(3, "Too Short!").max(9, "Too Long!").required(),
|
|
|
|
greetingMessage: Yup.string(),
|
2022-11-08 20:23:13 +00:00
|
|
|
dialogflowId: Yup.number(),
|
2022-01-06 01:26:15 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const QueueModal = ({ open, onClose, queueId }) => {
|
|
|
|
const classes = useStyles();
|
|
|
|
|
|
|
|
const initialState = {
|
|
|
|
name: "",
|
|
|
|
color: "",
|
|
|
|
greetingMessage: "",
|
2022-11-08 20:23:13 +00:00
|
|
|
dialogflowId: "",
|
2022-01-06 01:26:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const [colorPickerModalOpen, setColorPickerModalOpen] = useState(false);
|
|
|
|
const [queue, setQueue] = useState(initialState);
|
2022-11-08 20:23:13 +00:00
|
|
|
const [dialogflows, setDialogflows] = useState([]);
|
|
|
|
const { findAll: findAllDialogflows } = useDialogflows();
|
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
const greetingRef = useRef();
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
(async () => {
|
|
|
|
if (!queueId) return;
|
|
|
|
try {
|
|
|
|
const { data } = await api.get(`/queue/${queueId}`);
|
2022-11-08 20:23:13 +00:00
|
|
|
if(data.dialogflowId === null) {
|
|
|
|
data.dialogflowId = "";
|
|
|
|
}
|
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
setQueue(prevState => {
|
|
|
|
return { ...prevState, ...data };
|
|
|
|
});
|
|
|
|
} catch (err) {
|
|
|
|
toastError(err);
|
|
|
|
}
|
|
|
|
})();
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
setQueue({
|
|
|
|
name: "",
|
|
|
|
color: "",
|
|
|
|
greetingMessage: "",
|
2022-11-08 20:23:13 +00:00
|
|
|
dialogflowId: "",
|
2022-01-06 01:26:15 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
}, [queueId, open]);
|
|
|
|
|
2022-11-08 20:23:13 +00:00
|
|
|
useEffect(() => {
|
|
|
|
const loadDialogflows = async () => {
|
|
|
|
const list = await findAllDialogflows();
|
|
|
|
setDialogflows(list);
|
|
|
|
}
|
|
|
|
loadDialogflows();
|
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
|
|
}, []);
|
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
const handleClose = () => {
|
|
|
|
onClose();
|
|
|
|
setQueue(initialState);
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleSaveQueue = async values => {
|
|
|
|
try {
|
2022-11-08 20:23:13 +00:00
|
|
|
if(values.dialogflowId === "") {
|
|
|
|
values.dialogflowId = null;
|
|
|
|
}
|
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
if (queueId) {
|
|
|
|
await api.put(`/queue/${queueId}`, values);
|
|
|
|
} else {
|
|
|
|
await api.post("/queue", values);
|
|
|
|
}
|
|
|
|
toast.success("Queue saved successfully");
|
|
|
|
handleClose();
|
|
|
|
} catch (err) {
|
|
|
|
toastError(err);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={classes.root}>
|
|
|
|
<Dialog open={open} onClose={handleClose} scroll="paper">
|
|
|
|
<DialogTitle>
|
|
|
|
{queueId
|
|
|
|
? `${i18n.t("queueModal.title.edit")}`
|
|
|
|
: `${i18n.t("queueModal.title.add")}`}
|
|
|
|
</DialogTitle>
|
|
|
|
<Formik
|
|
|
|
initialValues={queue}
|
|
|
|
enableReinitialize={true}
|
|
|
|
validationSchema={QueueSchema}
|
|
|
|
onSubmit={(values, actions) => {
|
|
|
|
setTimeout(() => {
|
|
|
|
handleSaveQueue(values);
|
|
|
|
actions.setSubmitting(false);
|
|
|
|
}, 400);
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{({ touched, errors, isSubmitting, values }) => (
|
|
|
|
<Form>
|
|
|
|
<DialogContent dividers>
|
|
|
|
<Field
|
|
|
|
as={TextField}
|
|
|
|
label={i18n.t("queueModal.form.name")}
|
|
|
|
autoFocus
|
|
|
|
name="name"
|
|
|
|
error={touched.name && Boolean(errors.name)}
|
|
|
|
helperText={touched.name && errors.name}
|
|
|
|
variant="outlined"
|
|
|
|
margin="dense"
|
|
|
|
className={classes.textField}
|
|
|
|
/>
|
|
|
|
<Field
|
|
|
|
as={TextField}
|
|
|
|
label={i18n.t("queueModal.form.color")}
|
|
|
|
name="color"
|
|
|
|
id="color"
|
|
|
|
onFocus={() => {
|
|
|
|
setColorPickerModalOpen(true);
|
|
|
|
greetingRef.current.focus();
|
|
|
|
}}
|
|
|
|
error={touched.color && Boolean(errors.color)}
|
|
|
|
helperText={touched.color && errors.color}
|
|
|
|
InputProps={{
|
|
|
|
startAdornment: (
|
|
|
|
<InputAdornment position="start">
|
|
|
|
<div
|
|
|
|
style={{ backgroundColor: values.color }}
|
|
|
|
className={classes.colorAdorment}
|
|
|
|
></div>
|
|
|
|
</InputAdornment>
|
|
|
|
),
|
|
|
|
endAdornment: (
|
|
|
|
<IconButton
|
|
|
|
size="small"
|
|
|
|
color="default"
|
|
|
|
onClick={() => setColorPickerModalOpen(true)}
|
|
|
|
>
|
|
|
|
<Colorize />
|
|
|
|
</IconButton>
|
|
|
|
),
|
|
|
|
}}
|
|
|
|
variant="outlined"
|
|
|
|
margin="dense"
|
|
|
|
/>
|
|
|
|
<ColorPicker
|
|
|
|
open={colorPickerModalOpen}
|
|
|
|
handleClose={() => setColorPickerModalOpen(false)}
|
|
|
|
onChange={color => {
|
|
|
|
values.color = color;
|
|
|
|
setQueue(() => {
|
|
|
|
return { ...values, color };
|
|
|
|
});
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<div>
|
|
|
|
<Field
|
|
|
|
as={TextField}
|
|
|
|
label={i18n.t("queueModal.form.greetingMessage")}
|
|
|
|
type="greetingMessage"
|
|
|
|
multiline
|
|
|
|
inputRef={greetingRef}
|
|
|
|
rows={5}
|
|
|
|
fullWidth
|
|
|
|
name="greetingMessage"
|
|
|
|
error={
|
|
|
|
touched.greetingMessage && Boolean(errors.greetingMessage)
|
|
|
|
}
|
|
|
|
helperText={
|
|
|
|
touched.greetingMessage && errors.greetingMessage
|
|
|
|
}
|
|
|
|
variant="outlined"
|
|
|
|
margin="dense"
|
|
|
|
/>
|
|
|
|
</div>
|
2022-11-08 20:23:13 +00:00
|
|
|
<FormControl
|
|
|
|
variant="outlined"
|
|
|
|
className={classes.formControl}
|
|
|
|
margin="dense"
|
|
|
|
>
|
|
|
|
<InputLabel id="dialogflow-selection-input-label">
|
|
|
|
{i18n.t("queueModal.form.dialogflow")}
|
|
|
|
</InputLabel>
|
|
|
|
<Field
|
|
|
|
as={Select}
|
|
|
|
label={i18n.t("queueModal.form.dialogflow")}
|
|
|
|
name="dialogflowId"
|
|
|
|
labelId="dialogflow-selection-label"
|
|
|
|
id="dialogflow-selection"
|
|
|
|
>
|
|
|
|
<MenuItem value={''}> </MenuItem>
|
|
|
|
{dialogflows.map((dialogflow) => (
|
|
|
|
<MenuItem key={dialogflow.id} value={dialogflow.id}>{dialogflow.name}</MenuItem>
|
|
|
|
))}
|
|
|
|
</Field>
|
|
|
|
</FormControl>
|
2022-01-06 01:26:15 +00:00
|
|
|
</DialogContent>
|
|
|
|
<DialogActions>
|
|
|
|
<Button
|
|
|
|
onClick={handleClose}
|
|
|
|
color="secondary"
|
|
|
|
disabled={isSubmitting}
|
|
|
|
variant="outlined"
|
|
|
|
>
|
|
|
|
{i18n.t("queueModal.buttons.cancel")}
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
type="submit"
|
|
|
|
color="primary"
|
|
|
|
disabled={isSubmitting}
|
|
|
|
variant="contained"
|
|
|
|
className={classes.btnWrapper}
|
|
|
|
>
|
|
|
|
{queueId
|
|
|
|
? `${i18n.t("queueModal.buttons.okEdit")}`
|
|
|
|
: `${i18n.t("queueModal.buttons.okAdd")}`}
|
|
|
|
{isSubmitting && (
|
|
|
|
<CircularProgress
|
|
|
|
size={24}
|
|
|
|
className={classes.buttonProgress}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</Button>
|
|
|
|
</DialogActions>
|
|
|
|
</Form>
|
|
|
|
)}
|
|
|
|
</Formik>
|
|
|
|
</Dialog>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2023-07-12 14:54:29 +00:00
|
|
|
export default QueueModal;
|