frontPanel/src/pages/Questions/branchingQuestions.tsx

347 lines
12 KiB
TypeScript
Raw Normal View History

2023-08-24 20:53:27 +00:00
import { useEffect } from "react";
import {
2023-04-15 09:10:59 +00:00
Box,
Button,
2023-08-24 20:53:27 +00:00
Chip,
2023-04-15 09:10:59 +00:00
FormControl,
FormControlLabel,
IconButton,
Link,
Modal,
Radio,
RadioGroup,
Typography,
useTheme,
} from "@mui/material";
2023-08-24 20:53:27 +00:00
import {
questionStore,
resetSomeField,
updateQuestionsList,
} from "@root/questions";
import { branchStore, updateBranchState } from "@root/branches";
2023-08-15 14:04:01 +00:00
import { Select } from "./Select";
2023-08-24 20:53:27 +00:00
import DeleteIcon from "@icons/questionsPage/deleteIcon";
import RadioCheck from "@ui_kit/RadioCheck";
import RadioIcon from "@ui_kit/RadioIcon";
2023-08-15 14:04:01 +00:00
import InfoIcon from "@icons/Info";
2023-08-24 20:53:27 +00:00
type BranchingQuestionsProps = {
totalIndex: number;
};
2023-08-16 12:00:35 +00:00
const ACTIONS = ["Показать", "Скрыть"];
2023-08-24 20:53:27 +00:00
const STIPULATIONS = ["Условие 1", "Условие 2", "Условие 3"];
const ANSWERS = ["Ответ 1", "Ответ 2", "Ответ 3"];
2023-08-16 12:00:35 +00:00
const CONDITIONS = [
"Все условия обязательны",
"Обязательно хотя бы одно условие",
];
2023-08-24 20:53:27 +00:00
export default function BranchingQuestions({
totalIndex,
}: BranchingQuestionsProps) {
const { openedModalSettings, listQuestions } = questionStore();
const { branch } = branchStore();
2023-07-30 15:35:40 +00:00
const theme = useTheme();
2023-08-16 12:00:35 +00:00
useEffect(() => {
2023-08-24 20:53:27 +00:00
updateBranchState({
action: listQuestions[totalIndex].content.rule.show
? ACTIONS[0]
: ACTIONS[1],
condition: listQuestions[totalIndex].content.rule.or
? CONDITIONS[0]
: CONDITIONS[1],
});
2023-08-16 12:00:35 +00:00
}, []);
const handleClose = () => {
2023-07-30 15:35:40 +00:00
resetSomeField({ openedModalSettings: "" });
};
2023-04-15 09:10:59 +00:00
return (
<>
<Modal
open={Boolean(openedModalSettings)}
onClose={handleClose}
2023-04-15 09:10:59 +00:00
aria-labelledby="modal-modal-title"
aria-describedby="modal-modal-description"
>
<Box
sx={{
position: "absolute" as "absolute",
2023-08-15 12:20:09 +00:00
overflow: "hidden",
2023-04-15 09:10:59 +00:00
top: "50%",
left: "50%",
transform: "translate(-50%, -50%)",
maxWidth: "620px",
width: "100%",
bgcolor: "background.paper",
borderRadius: "12px",
boxShadow: 24,
p: 0,
}}
>
2023-08-15 12:20:09 +00:00
<Box
sx={{
boxSizing: "border-box",
background: "#F2F3F7",
padding: "25px",
height: "70px",
display: "flex",
}}
>
<Typography sx={{ color: "#9A9AAF" }}>()</Typography>
<InfoIcon width={24} height={24} />
</Box>
2023-04-15 09:10:59 +00:00
<Box
sx={{
padding: "20px",
display: "flex",
flexDirection: "column",
gap: "30px",
}}
>
<Box
sx={{
display: "flex",
gap: "20px",
alignItems: "center",
}}
>
2023-08-15 14:04:01 +00:00
<Select
2023-08-16 12:00:35 +00:00
items={ACTIONS}
2023-08-24 20:53:27 +00:00
activeItemIndex={
listQuestions[totalIndex].content.rule.show ? 0 : 1
}
2023-08-15 14:04:01 +00:00
sx={{ maxWidth: "140px" }}
2023-08-24 20:53:27 +00:00
onChange={(action) => {
const clonContent = listQuestions[totalIndex].content;
clonContent.rule.show = action === ACTIONS[0];
updateQuestionsList(totalIndex, { content: clonContent });
updateBranchState({ action });
}}
2023-08-15 14:04:01 +00:00
/>
2023-08-15 12:20:09 +00:00
<Typography sx={{ color: theme.palette.grey2.main }}>
если в ответе на вопрос
</Typography>
2023-04-15 09:10:59 +00:00
</Box>
2023-08-24 20:53:27 +00:00
{listQuestions[totalIndex].content.rule.reqs.map(
(request, index) => (
2023-08-15 12:20:09 +00:00
<Box
2023-08-24 20:53:27 +00:00
key={index}
2023-08-15 12:20:09 +00:00
sx={{
2023-08-24 20:53:27 +00:00
padding: "20px",
borderRadius: "8px",
height: "100%",
bgcolor: "#F2F3F7",
2023-08-15 12:20:09 +00:00
}}
>
2023-08-24 20:53:27 +00:00
<Box
sx={{
display: "flex",
justifyContent: "space-between",
alignItems: "center",
pb: "5px",
}}
>
<Typography sx={{ color: "#4D4D4D", fontWeight: "500" }}>
Условие 1
</Typography>
<IconButton
sx={{ borderRadius: "6px", padding: "2px" }}
onClick={() => {
const clonContent = listQuestions[totalIndex].content;
clonContent.rule.reqs.splice(index, 1);
updateQuestionsList(totalIndex, {
content: clonContent,
});
2023-08-16 12:00:35 +00:00
}}
2023-08-15 14:04:01 +00:00
>
2023-08-24 20:53:27 +00:00
<DeleteIcon color={"#4D4D4D"} />
</IconButton>
</Box>
<Select
empty
activeItemIndex={Number(request.id) || -1}
items={STIPULATIONS}
onChange={(stipulation) => {
const clonContent = listQuestions[totalIndex].content;
clonContent.rule.reqs[index] = {
id: String(
STIPULATIONS.findIndex((item) =>
item.includes(stipulation)
)
),
vars: request.vars,
};
updateQuestionsList(totalIndex, { content: clonContent });
updateBranchState({ stipulation });
}}
sx={{ marginBottom: "15px" }}
/>
{request.id && (
<>
<Box
sx={{
display: "flex",
alignItems: "center",
pb: "10px",
}}
>
<Typography
sx={{ color: "#4D4D4D", fontWeight: "500" }}
>
Дан ответ
</Typography>
<Typography sx={{ color: "#7E2AEA", pl: "10px" }}>
(Укажите один или несколько вариантов)
</Typography>
</Box>
<Select
empty
activeItemIndex={-1}
items={ANSWERS}
onChange={(answer) => {
const clonContent = listQuestions[totalIndex].content;
const answerItemIndex = ANSWERS.findIndex(
(answerItem) => answerItem === answer
);
if (
!clonContent.rule.reqs[index].vars.includes(
answerItemIndex
)
) {
listQuestions[totalIndex].content.rule.reqs[
index
].vars.push(answerItemIndex);
}
updateQuestionsList(totalIndex, {
content: clonContent,
});
updateBranchState({ answer });
}}
sx={{
marginBottom: "10px",
".MuiSelect-select.MuiInputBase-input": {
color: "transparent",
},
}}
/>
<Box
sx={{
display: "flex",
gap: "10px",
}}
>
{listQuestions[totalIndex].content.rule.reqs[
index
].vars.map((item, varIndex) => (
<Chip
key={varIndex}
label={ANSWERS[item]}
variant="outlined"
onDelete={() => {
const clonContent =
listQuestions[totalIndex].content;
const removedItemIndex = clonContent.rule.reqs[
index
].vars.findIndex((varItem) => varItem === item);
clonContent.rule.reqs[index].vars.splice(
removedItemIndex,
1
);
updateQuestionsList(totalIndex, {
content: clonContent,
});
}}
/>
))}
</Box>
</>
)}
</Box>
)
2023-04-15 09:10:59 +00:00
)}
<Box
sx={{
display: "flex",
flexDirection: "column",
alignItems: "baseline",
}}
>
<Link
variant="body2"
2023-08-15 12:20:09 +00:00
sx={{
color: theme.palette.brightPurple.main,
marginBottom: "10px",
}}
2023-08-24 20:53:27 +00:00
onClick={() => {
const clonContent = listQuestions[totalIndex].content;
clonContent.rule.reqs.push({ id: "", vars: [] });
updateQuestionsList(totalIndex, { content: clonContent });
}}
2023-04-15 09:10:59 +00:00
>
Добавить условие
</Link>
<FormControl>
<RadioGroup
aria-labelledby="demo-controlled-radio-buttons-group"
2023-08-24 20:53:27 +00:00
defaultValue={branch.condition === CONDITIONS[0] ? 0 : 1}
onChange={({ target }) => {
const clonContent = listQuestions[totalIndex].content;
clonContent.rule.or = target.value === CONDITIONS[0];
updateQuestionsList(totalIndex, { content: clonContent });
2023-08-16 12:00:35 +00:00
updateBranchState({
condition: CONDITIONS[Number(target.value)],
2023-08-24 20:53:27 +00:00
});
}}
2023-04-15 09:10:59 +00:00
>
2023-08-16 12:00:35 +00:00
{CONDITIONS.map((condition, index) => (
<FormControlLabel
2023-08-24 20:53:27 +00:00
key={index}
2023-08-16 12:00:35 +00:00
sx={{ color: theme.palette.grey2.main }}
value={index}
control={
<Radio
checkedIcon={<RadioCheck />}
icon={<RadioIcon />}
/>
}
label={condition}
/>
))}
2023-04-15 09:10:59 +00:00
</RadioGroup>
</FormControl>
</Box>
<Box sx={{ display: "flex", justifyContent: "end", gap: "10px" }}>
2023-08-15 12:20:09 +00:00
<Button
variant="outlined"
onClick={handleClose}
2023-08-16 12:00:35 +00:00
sx={{ width: "100%", maxWidth: "130px" }}
2023-08-15 12:20:09 +00:00
>
2023-04-15 09:10:59 +00:00
Отмена
</Button>
2023-08-15 12:20:09 +00:00
<Button
variant="contained"
2023-08-16 12:00:35 +00:00
sx={{ width: "100%", maxWidth: "130px" }}
onClick={handleClose}
2023-08-15 12:20:09 +00:00
>
Готово
</Button>
2023-04-15 09:10:59 +00:00
</Box>
</Box>
</Box>
</Modal>
</>
);
}