frontPanel/src/pages/Questions/branchingQuestions.tsx

395 lines
13 KiB
TypeScript
Raw Normal View History

2023-09-19 11:41:38 +00:00
import { useState, useRef, useEffect } from "react";
2023-09-06 13:20:12 +00:00
import { useParams } from "react-router-dom";
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,
2023-10-04 13:40:22 +00:00
Tooltip,
2023-04-15 09:10:59 +00:00
Typography,
useTheme,
} from "@mui/material";
2023-10-31 09:59:41 +00:00
import { questionStore, updateQuestionsList } from "@root/questions";
2023-08-15 14:04:01 +00:00
import { Select } from "./Select";
2023-08-24 20:53:27 +00:00
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-09-25 13:43:15 +00:00
import { DeleteIcon } from "@icons/questionsPage/deleteIcon";
2023-10-04 09:07:59 +00:00
import type { QuizQuestionBase } from "../../model/questionTypes/shared";
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) {
2023-09-29 04:24:06 +00:00
const theme = useTheme();
2023-10-06 08:34:44 +00:00
const [title, setTitle] = useState<string>("");
2023-09-19 11:41:38 +00:00
const [titleInputWidth, setTitleInputWidth] = useState<number>(0);
2023-09-06 13:20:12 +00:00
const quizId = Number(useParams().quizId);
2023-10-31 09:59:41 +00:00
const { listQuestions } = questionStore();
2023-09-19 11:41:38 +00:00
const titleRef = useRef<HTMLDivElement>(null);
2023-10-04 09:07:59 +00:00
const question = listQuestions[quizId][totalIndex] as QuizQuestionBase;
2023-09-19 11:41:38 +00:00
useEffect(() => {
setTitleInputWidth(titleRef.current?.offsetWidth || 0);
}, [title]);
const handleClose = () => {
2023-10-31 09:59:41 +00:00
updateQuestionsList<QuizQuestionBase>(quizId, totalIndex, {
openedModalSettings: false,
});
2023-07-30 15:35:40 +00:00
};
2023-04-15 09:10:59 +00:00
return (
<>
2023-10-31 09:59:41 +00:00
<Modal open={question.openedModalSettings} onClose={handleClose}>
2023-04-15 09:10:59 +00:00
<Box
sx={{
2023-10-31 09:59:41 +00:00
position: "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",
height: "70px",
2023-10-04 13:40:22 +00:00
padding: "0 25px",
2023-08-15 12:20:09 +00:00
display: "flex",
2023-10-04 13:40:22 +00:00
alignItems: "center",
2023-08-15 12:20:09 +00:00
}}
>
2023-09-19 11:41:38 +00:00
<Box sx={{ color: "#9A9AAF" }}>
<Typography component="span">(</Typography>
<Box sx={{ display: "inline" }}>
<Typography
ref={titleRef}
sx={{
position: "absolute",
opacity: 0,
zIndex: "-100",
whiteSpace: "pre",
}}
>
{title}
</Typography>
<input
type="text"
value={title}
2023-09-28 07:39:43 +00:00
placeholder="Заголовок вопроса"
2023-09-19 11:41:38 +00:00
onChange={({ target }) => setTitle(target.value)}
style={{
2023-09-28 09:35:25 +00:00
width: titleInputWidth ? titleInputWidth : 170,
2023-09-19 11:41:38 +00:00
outline: "none",
background: "transparent",
border: "none",
fontSize: "18px",
2023-09-28 07:39:43 +00:00
minWidth: "50px",
2023-09-19 11:41:38 +00:00
maxWidth: "500px",
2023-09-28 07:39:43 +00:00
fontFamily: "Rubik",
transition: ".2s",
2023-09-19 11:41:38 +00:00
}}
/>
</Box>
<Typography component="span">)</Typography>
</Box>
2023-10-04 13:40:22 +00:00
<Tooltip
title="Настройте условия, при которых данный вопрос будет отображаться в квизе."
placement="top"
>
<Box>
<InfoIcon />
</Box>
</Tooltip>
2023-08-15 12:20:09 +00:00
</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-10-04 09:45:51 +00:00
activeItemIndex={question.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) => {
2023-10-04 11:35:02 +00:00
updateQuestionsList<QuizQuestionBase>(quizId, totalIndex, {
2023-10-04 09:45:51 +00:00
content: {
...question.content,
rule: {
...question.content.rule,
show: action === ACTIONS[0],
},
},
2023-09-06 13:20:12 +00:00
});
2023-08-24 20:53:27 +00:00
}}
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-10-04 09:45:51 +00:00
{question.content.rule.reqs.map((request, index) => (
<Box
key={index}
sx={{
padding: "20px",
borderRadius: "8px",
height: "100%",
bgcolor: "#F2F3F7",
}}
>
2023-08-15 12:20:09 +00:00
<Box
sx={{
2023-10-04 09:45:51 +00:00
display: "flex",
justifyContent: "space-between",
alignItems: "center",
pb: "5px",
2023-08-15 12:20:09 +00:00
}}
>
2023-10-04 09:45:51 +00:00
<Typography sx={{ color: "#4D4D4D", fontWeight: "500" }}>
Условие 1
</Typography>
<IconButton
sx={{ borderRadius: "6px", padding: "2px" }}
onClick={() => {
const clonedContent = { ...question.content };
clonedContent.rule.reqs.splice(index, 1);
2023-10-04 11:35:02 +00:00
updateQuestionsList<QuizQuestionBase>(
quizId,
totalIndex,
{
content: clonedContent,
}
);
2023-08-24 20:53:27 +00:00
}}
>
2023-10-04 09:45:51 +00:00
<DeleteIcon color={"#4D4D4D"} />
</IconButton>
</Box>
<Select
empty
activeItemIndex={request.id ? Number(request.id) : -1}
items={STIPULATIONS}
onChange={(stipulation) => {
const clonedContent = { ...question.content };
2023-08-24 20:53:27 +00:00
2023-10-04 09:45:51 +00:00
clonedContent.rule.reqs[index] = {
id: String(
STIPULATIONS.findIndex((item) =>
item.includes(stipulation)
)
),
vars: request.vars,
};
2023-10-04 11:35:02 +00:00
updateQuestionsList<QuizQuestionBase>(quizId, totalIndex, {
2023-10-04 09:45:51 +00:00
content: clonedContent,
});
}}
sx={{ marginBottom: "15px" }}
/>
{request.id && (
<>
<Box
sx={{
display: "flex",
alignItems: "center",
pb: "10px",
2023-08-16 12:00:35 +00:00
}}
2023-08-15 14:04:01 +00:00
>
2023-10-04 09:45:51 +00:00
<Typography sx={{ color: "#4D4D4D", fontWeight: "500" }}>
Дан ответ
</Typography>
<Typography sx={{ color: "#7E2AEA", pl: "10px" }}>
(Укажите один или несколько вариантов)
</Typography>
</Box>
<Select
empty
activeItemIndex={-1}
items={ANSWERS}
onChange={(answer) => {
const clonedContent = { ...question.content };
const answerItemIndex = ANSWERS.findIndex(
(answerItem) => answerItem === answer
);
2023-08-24 20:53:27 +00:00
2023-10-04 09:45:51 +00:00
if (
!clonedContent.rule.reqs[index].vars.includes(
answerItemIndex
2023-08-24 20:53:27 +00:00
)
2023-10-04 09:45:51 +00:00
) {
question.content.rule.reqs[index].vars.push(
answerItemIndex
2023-08-24 20:53:27 +00:00
);
2023-10-04 09:45:51 +00:00
}
2023-08-24 20:53:27 +00:00
2023-10-04 11:35:02 +00:00
updateQuestionsList<QuizQuestionBase>(
quizId,
totalIndex,
{
content: clonedContent,
}
);
2023-10-04 09:45:51 +00:00
}}
sx={{
marginBottom: "10px",
".MuiSelect-select.MuiInputBase-input": {
color: "transparent",
},
}}
/>
<Box
sx={{
display: "flex",
gap: "10px",
}}
>
{question.content.rule.reqs[index].vars.map(
(item, varIndex) => (
2023-08-24 20:53:27 +00:00
<Chip
key={varIndex}
label={ANSWERS[item]}
variant="outlined"
onDelete={() => {
2023-10-04 09:45:51 +00:00
const clonedContent = { ...question.content };
const removedItemIndex = clonedContent.rule.reqs[
2023-08-24 20:53:27 +00:00
index
].vars.findIndex((varItem) => varItem === item);
2023-10-04 09:45:51 +00:00
clonedContent.rule.reqs[index].vars.splice(
2023-08-24 20:53:27 +00:00
removedItemIndex,
1
);
2023-10-04 11:35:02 +00:00
updateQuestionsList<QuizQuestionBase>(
quizId,
totalIndex,
{
content: clonedContent,
}
);
2023-08-24 20:53:27 +00:00
}}
/>
2023-10-04 09:45:51 +00:00
)
)}
</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={() => {
2023-10-04 09:45:51 +00:00
const clonedContent = { ...question.content };
clonedContent.rule.reqs.push({ id: "", vars: [] });
2023-10-04 11:35:02 +00:00
updateQuestionsList<QuizQuestionBase>(quizId, totalIndex, {
2023-10-04 09:45:51 +00:00
content: clonedContent,
2023-09-06 13:20:12 +00:00
});
2023-08-24 20:53:27 +00:00
}}
2023-04-15 09:10:59 +00:00
>
Добавить условие
</Link>
<FormControl>
<RadioGroup
aria-labelledby="demo-controlled-radio-buttons-group"
2023-10-04 09:45:51 +00:00
value={question.content.rule.or ? 1 : 0}
2023-09-07 07:48:19 +00:00
onChange={(_, value) => {
2023-10-04 11:35:02 +00:00
updateQuestionsList<QuizQuestionBase>(quizId, totalIndex, {
2023-10-04 09:45:51 +00:00
content: {
...question.content,
rule: {
...question.content.rule,
or: Boolean(Number(value)),
},
},
2023-09-06 13:20:12 +00:00
});
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>
</>
);
}