frontPanel/src/pages/Questions/branchingQuestions.tsx

231 lines
7.1 KiB
TypeScript
Raw Normal View History

import {
2023-04-15 09:10:59 +00:00
Box,
Button,
FormControl,
FormControlLabel,
IconButton,
Link,
Modal,
Radio,
RadioGroup,
Typography,
useTheme,
} from "@mui/material";
2023-08-16 12:00:35 +00:00
import { useState, useEffect } from "react";
2023-08-15 12:20:09 +00:00
import { questionStore, resetSomeField } from "@root/questions";
2023-08-16 12:00:35 +00:00
import { updateBranchState } from "@root/branches";
2023-08-15 14:04:01 +00:00
import { Select } from "./Select";
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-16 12:00:35 +00:00
const ACTIONS = ["Показать", "Скрыть"];
const STIPULATION = ["Условие 1", "Условие 2", "Условие 3"];
const ANSWER = ["Условие 1", "Условие 2", "Условие 3"];
const CONDITIONS = [
"Все условия обязательны",
"Обязательно хотя бы одно условие",
];
export default function BranchingQuestions() {
2023-08-16 12:00:35 +00:00
const [condition, setCondition] = useState<boolean>(false);
2023-08-15 14:04:01 +00:00
const [conditionSelected, setConditionSelected] = useState<boolean>(false);
2023-07-30 15:35:40 +00:00
const { openedModalSettings } = questionStore();
const theme = useTheme();
2023-08-16 12:00:35 +00:00
useEffect(() => {
updateBranchState({ action: ACTIONS[0], condition: CONDITIONS[0] });
}, []);
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-15 14:04:01 +00:00
sx={{ maxWidth: "140px" }}
2023-08-16 12:00:35 +00:00
onChange={(action) => 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>
{condition ? (
2023-08-15 12:20:09 +00:00
<Box
sx={{
padding: "20px",
borderRadius: "8px",
height: "100%",
bgcolor: "#F2F3F7",
}}
>
<Box
sx={{
display: "flex",
justifyContent: "space-between",
alignItems: "center",
2023-08-15 14:04:01 +00:00
pb: "5px",
2023-08-15 12:20:09 +00:00
}}
>
2023-08-15 14:04:01 +00:00
<Typography sx={{ color: "#4D4D4D", fontWeight: "500" }}>
Условие 1
</Typography>
2023-04-15 09:10:59 +00:00
<IconButton sx={{ borderRadius: "6px", padding: "2px" }}>
2023-07-30 15:35:40 +00:00
<DeleteIcon color={"#4D4D4D"} />
2023-04-15 09:10:59 +00:00
</IconButton>
</Box>
2023-08-15 14:04:01 +00:00
<Select
empty
2023-08-16 12:00:35 +00:00
items={STIPULATION}
onChange={(stipulation) => {
setConditionSelected(true);
updateBranchState({ stipulation });
}}
2023-08-15 14:04:01 +00:00
sx={{ marginBottom: "15px" }}
2023-04-15 09:10:59 +00:00
/>
2023-08-15 14:04:01 +00:00
{conditionSelected && (
<>
<Box
2023-08-16 12:00:35 +00:00
sx={{
display: "flex",
alignItems: "center",
pb: "10px",
}}
2023-08-15 14:04:01 +00:00
>
<Typography sx={{ color: "#4D4D4D", fontWeight: "500" }}>
Дан ответ
</Typography>
<Typography sx={{ color: "#7E2AEA", pl: "10px" }}>
(Укажите один или несколько вариантов)
</Typography>
</Box>
<Select
empty
2023-08-16 12:00:35 +00:00
items={ANSWER}
onChange={(answer) => updateBranchState({ answer })}
2023-08-15 14:04:01 +00:00
/>
</>
)}
2023-04-15 09:10:59 +00:00
</Box>
) : (
""
)}
<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-04-15 09:10:59 +00:00
onClick={() => setCondition(true)}
>
Добавить условие
</Link>
<FormControl>
<RadioGroup
aria-labelledby="demo-controlled-radio-buttons-group"
2023-08-16 12:00:35 +00:00
defaultValue={0}
onChange={({ target }) =>
updateBranchState({
condition: CONDITIONS[Number(target.value)],
})
}
2023-04-15 09:10:59 +00:00
>
2023-08-16 12:00:35 +00:00
{CONDITIONS.map((condition, index) => (
<FormControlLabel
key={condition + index}
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>
</>
);
}