2023-09-21 07:00:08 +00:00
|
|
|
|
import { DoubleArrowRight } from "@icons/questionsPage/DoubleArrowRight";
|
2023-11-16 16:41:25 +00:00
|
|
|
|
import { DoubleTick } from "@icons/questionsPage/DoubleTick";
|
2023-09-21 07:00:08 +00:00
|
|
|
|
import { VectorQuestions } from "@icons/questionsPage/VectorQuestions";
|
2023-09-25 13:43:15 +00:00
|
|
|
|
import { DeleteIcon } from "@icons/questionsPage/deleteIcon";
|
2023-10-10 13:33:21 +00:00
|
|
|
|
import type { SxProps } from "@mui/material";
|
2023-11-16 16:41:25 +00:00
|
|
|
|
import {
|
|
|
|
|
Box,
|
|
|
|
|
IconButton,
|
|
|
|
|
Tooltip,
|
|
|
|
|
Typography,
|
|
|
|
|
useMediaQuery,
|
|
|
|
|
useTheme,
|
|
|
|
|
} from "@mui/material";
|
2023-12-04 11:44:08 +00:00
|
|
|
|
import {copyQuestion, deleteQuestion, updateOpenBranchingPanel, updateQuestion} from "@root/questions/actions";
|
2023-11-16 16:41:25 +00:00
|
|
|
|
import MiniButtonSetting from "@ui_kit/MiniButtonSetting";
|
|
|
|
|
import { CopyIcon } from "../../assets/icons/questionsPage/CopyIcon";
|
|
|
|
|
import Branching from "../../assets/icons/questionsPage/branching";
|
|
|
|
|
import Clue from "../../assets/icons/questionsPage/clue";
|
|
|
|
|
import { HideIcon } from "../../assets/icons/questionsPage/hideIcon";
|
|
|
|
|
import SettingIcon from "../../assets/icons/questionsPage/settingIcon";
|
2023-11-29 13:49:52 +00:00
|
|
|
|
import type { AnyTypedQuizQuestion } from "../../model/questionTypes/shared";
|
2023-12-03 02:16:53 +00:00
|
|
|
|
import { updateOpenedModalSettingsId } from "@root/questions/actions";
|
2023-12-04 16:33:50 +00:00
|
|
|
|
import { useCurrentQuiz } from "@root/quizes/hooks";
|
2023-12-04 11:44:08 +00:00
|
|
|
|
import {enqueueSnackbar} from "notistack";
|
2023-12-04 16:33:45 +00:00
|
|
|
|
import {useQuestionsStore} from "@root/questions/store";
|
2023-11-16 16:41:25 +00:00
|
|
|
|
|
2023-03-15 22:56:53 +00:00
|
|
|
|
|
2023-03-18 21:35:09 +00:00
|
|
|
|
interface Props {
|
2023-11-16 16:41:25 +00:00
|
|
|
|
switchState: string;
|
|
|
|
|
SSHC: (data: string) => void;
|
2023-11-29 13:49:52 +00:00
|
|
|
|
question: AnyTypedQuizQuestion;
|
2023-11-16 16:41:25 +00:00
|
|
|
|
sx?: SxProps;
|
2023-03-18 21:35:09 +00:00
|
|
|
|
}
|
2023-03-15 22:56:53 +00:00
|
|
|
|
|
2023-09-22 07:26:07 +00:00
|
|
|
|
export default function ButtonsOptions({
|
2023-11-16 16:41:25 +00:00
|
|
|
|
SSHC,
|
|
|
|
|
switchState,
|
|
|
|
|
question,
|
2023-09-22 07:26:07 +00:00
|
|
|
|
}: Props) {
|
2023-11-16 16:41:25 +00:00
|
|
|
|
const theme = useTheme();
|
|
|
|
|
const isMobile = useMediaQuery(theme.breakpoints.down(790));
|
|
|
|
|
const isWrappMiniButtonSetting = useMediaQuery(theme.breakpoints.down(920));
|
2023-12-04 16:33:50 +00:00
|
|
|
|
const quiz = useCurrentQuiz();
|
2023-09-21 07:00:08 +00:00
|
|
|
|
|
2023-12-04 16:49:57 +00:00
|
|
|
|
const {openBranchingPanel} = useQuestionsStore.getState()
|
2023-11-16 16:41:25 +00:00
|
|
|
|
const openedModal = () => {
|
2023-12-03 02:16:53 +00:00
|
|
|
|
updateOpenedModalSettingsId(question.id)
|
2023-11-16 16:41:25 +00:00
|
|
|
|
};
|
2023-09-20 17:39:17 +00:00
|
|
|
|
|
2023-12-04 11:44:08 +00:00
|
|
|
|
const handleClickBranching = (_, value) => {
|
|
|
|
|
const parentId = question.content.rule.parentId
|
2023-12-04 15:41:40 +00:00
|
|
|
|
if (parentId.length === 0 ){
|
|
|
|
|
return enqueueSnackbar("Вопрос не учавствует в ветвлении")
|
|
|
|
|
}
|
|
|
|
|
if (parentId === "root") {
|
|
|
|
|
return enqueueSnackbar("У корня нет условий ветвления")
|
|
|
|
|
}
|
2023-12-04 11:44:08 +00:00
|
|
|
|
if (parentId.length !== 0) {
|
|
|
|
|
setTimeout(() => updateOpenBranchingPanel(!value), 10)
|
2023-12-04 16:33:45 +00:00
|
|
|
|
openedModal()
|
2023-12-04 11:44:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-16 16:41:25 +00:00
|
|
|
|
const buttonSetting: {
|
|
|
|
|
icon: JSX.Element;
|
|
|
|
|
title: string;
|
|
|
|
|
value: string;
|
|
|
|
|
myFunc?: any;
|
|
|
|
|
}[] = [
|
|
|
|
|
{
|
|
|
|
|
icon: (
|
|
|
|
|
<SettingIcon
|
|
|
|
|
color={
|
|
|
|
|
switchState === "setting" ? "#ffffff" : theme.palette.grey3.main
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
),
|
|
|
|
|
title: "Настройки",
|
|
|
|
|
value: "setting",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
icon: (
|
|
|
|
|
<Clue
|
|
|
|
|
color={switchState === "help" ? "#ffffff" : theme.palette.grey3.main}
|
|
|
|
|
/>
|
|
|
|
|
),
|
|
|
|
|
title: "Подсказка",
|
|
|
|
|
value: "help",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
icon: (
|
|
|
|
|
<Branching
|
|
|
|
|
color={
|
|
|
|
|
switchState === "branching" ? "#ffffff" : theme.palette.grey3.main
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
),
|
|
|
|
|
title: "Ветвление",
|
|
|
|
|
value: "branching",
|
2023-12-04 17:15:30 +00:00
|
|
|
|
myFunc: () => handleClickBranching(question.id, openBranchingPanel),
|
2023-11-16 16:41:25 +00:00
|
|
|
|
},
|
|
|
|
|
];
|
2023-09-21 07:00:08 +00:00
|
|
|
|
|
2023-11-16 16:41:25 +00:00
|
|
|
|
return (
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
width: "100%",
|
|
|
|
|
background: "#f2f3f7",
|
|
|
|
|
height: isMobile ? "92px" : "70px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
padding: isMobile ? " 3px 12px 11px" : "20px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexWrap: isMobile ? "wrap" : "nowrap",
|
|
|
|
|
gap: "6px",
|
2023-10-13 13:42:28 +00:00
|
|
|
|
}}
|
2023-11-16 16:41:25 +00:00
|
|
|
|
>
|
|
|
|
|
{buttonSetting.map(({ icon, title, value, myFunc }) => (
|
|
|
|
|
<Box key={value}>
|
|
|
|
|
{value === "branching" ? (
|
|
|
|
|
<Tooltip
|
|
|
|
|
arrow
|
|
|
|
|
placement="right"
|
|
|
|
|
componentsProps={{
|
|
|
|
|
tooltip: {
|
|
|
|
|
sx: {
|
|
|
|
|
background: "#fff",
|
|
|
|
|
borderRadius: "6px",
|
|
|
|
|
color: "#9A9AAF",
|
|
|
|
|
boxShadow: "0px 8px 24px rgba(210, 208, 225, 0.4)",
|
|
|
|
|
"& .MuiTooltip-arrow": {
|
|
|
|
|
color: "#FFF",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}}
|
|
|
|
|
title={
|
|
|
|
|
<Box>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
color: "#4D4D4D",
|
|
|
|
|
fontWeight: "bold",
|
|
|
|
|
fontSize: "14px",
|
|
|
|
|
marginBottom: "10px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Будет показан при условии
|
|
|
|
|
</Typography>
|
|
|
|
|
<Typography sx={{ fontWeight: "bold", fontSize: "12px" }}>
|
|
|
|
|
Название
|
|
|
|
|
</Typography>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontWeight: "bold",
|
|
|
|
|
fontSize: "12px",
|
|
|
|
|
marginBottom: "10px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Условие 1, Условие 2
|
|
|
|
|
</Typography>
|
|
|
|
|
<Typography sx={{ color: "#7E2AEA", fontSize: "12px" }}>
|
|
|
|
|
Все условия обязательны
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
}
|
|
|
|
|
>
|
|
|
|
|
<MiniButtonSetting
|
|
|
|
|
key={title}
|
|
|
|
|
onClick={() => {
|
|
|
|
|
SSHC(value);
|
|
|
|
|
myFunc();
|
|
|
|
|
}}
|
|
|
|
|
sx={{
|
|
|
|
|
backgroundColor:
|
|
|
|
|
switchState === value
|
|
|
|
|
? theme.palette.brightPurple.main
|
|
|
|
|
: "transparent",
|
|
|
|
|
color:
|
|
|
|
|
switchState === value
|
|
|
|
|
? "#ffffff"
|
|
|
|
|
: theme.palette.grey3.main,
|
|
|
|
|
minWidth: isWrappMiniButtonSetting ? "30px" : "64px",
|
|
|
|
|
height: "30px",
|
|
|
|
|
"&:hover": {
|
|
|
|
|
color: theme.palette.grey3.main,
|
|
|
|
|
"& path": { stroke: theme.palette.grey3.main },
|
|
|
|
|
},
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{icon}
|
|
|
|
|
{isWrappMiniButtonSetting ? null : title}
|
|
|
|
|
</MiniButtonSetting>
|
|
|
|
|
</Tooltip>
|
|
|
|
|
) : (
|
|
|
|
|
<>
|
|
|
|
|
<MiniButtonSetting
|
|
|
|
|
key={title}
|
|
|
|
|
onClick={() => {
|
|
|
|
|
SSHC(value);
|
|
|
|
|
myFunc();
|
|
|
|
|
}}
|
|
|
|
|
sx={{
|
|
|
|
|
backgroundColor:
|
|
|
|
|
switchState === value
|
|
|
|
|
? theme.palette.brightPurple.main
|
|
|
|
|
: "transparent",
|
|
|
|
|
color:
|
|
|
|
|
switchState === value
|
|
|
|
|
? "#ffffff"
|
|
|
|
|
: theme.palette.grey3.main,
|
|
|
|
|
minWidth: isWrappMiniButtonSetting ? "30px" : "64px",
|
|
|
|
|
height: "30px",
|
|
|
|
|
"&:hover": {
|
|
|
|
|
color: theme.palette.grey3.main,
|
|
|
|
|
"& path": { stroke: theme.palette.grey3.main },
|
|
|
|
|
},
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{icon}
|
|
|
|
|
{isWrappMiniButtonSetting ? null : title}
|
|
|
|
|
</MiniButtonSetting>
|
|
|
|
|
</>
|
|
|
|
|
)}
|
|
|
|
|
</Box>
|
|
|
|
|
))}
|
|
|
|
|
<>
|
|
|
|
|
<MiniButtonSetting
|
|
|
|
|
onClick={undefined} // TODO
|
|
|
|
|
sx={{
|
|
|
|
|
minWidth: "30px",
|
|
|
|
|
height: "30px",
|
|
|
|
|
backgroundColor: "#FEDFD0",
|
|
|
|
|
}}
|
2023-10-13 11:28:51 +00:00
|
|
|
|
>
|
2023-11-16 16:41:25 +00:00
|
|
|
|
<DoubleTick style={{ color: "#FC712F", fontSize: "9px" }} />
|
|
|
|
|
</MiniButtonSetting>
|
|
|
|
|
<MiniButtonSetting
|
|
|
|
|
onClick={undefined} // TODO
|
|
|
|
|
sx={{
|
|
|
|
|
minWidth: "30px",
|
|
|
|
|
height: "30px",
|
|
|
|
|
backgroundColor: "#FEDFD0",
|
|
|
|
|
}}
|
2023-10-13 11:28:51 +00:00
|
|
|
|
>
|
2023-11-16 16:41:25 +00:00
|
|
|
|
<DoubleArrowRight style={{ color: "#FC712F", fontSize: "9px" }} />
|
|
|
|
|
</MiniButtonSetting>
|
|
|
|
|
<MiniButtonSetting
|
|
|
|
|
onClick={undefined} // TODO
|
|
|
|
|
sx={{
|
|
|
|
|
minWidth: "30px",
|
|
|
|
|
height: "30px",
|
|
|
|
|
backgroundColor: "#FEDFD0",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<VectorQuestions style={{ color: "#FC712F", fontSize: "9px" }} />
|
|
|
|
|
</MiniButtonSetting>
|
|
|
|
|
</>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
padding: "20px",
|
|
|
|
|
display: "flex",
|
2023-12-01 20:45:35 +00:00
|
|
|
|
gap: "6px",
|
2023-11-16 16:41:25 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<IconButton sx={{ borderRadius: "6px", padding: "2px" }}>
|
|
|
|
|
<HideIcon style={{ color: "#4D4D4D" }} />
|
|
|
|
|
</IconButton>
|
|
|
|
|
<IconButton
|
|
|
|
|
sx={{ borderRadius: "6px", padding: "2px" }}
|
|
|
|
|
onClick={() => copyQuestion(question.id, question.quizId)}
|
2023-10-13 11:28:51 +00:00
|
|
|
|
>
|
2023-11-16 16:41:25 +00:00
|
|
|
|
<CopyIcon color={"#4D4D4D"} />
|
|
|
|
|
</IconButton>
|
|
|
|
|
<IconButton
|
|
|
|
|
sx={{ borderRadius: "6px", padding: "2px" }}
|
|
|
|
|
onClick={() => { // TODO
|
|
|
|
|
// const removedId = question.id;
|
|
|
|
|
// if (question.deleteTimeoutId) {
|
|
|
|
|
// clearTimeout(question.deleteTimeoutId);
|
|
|
|
|
// }
|
2023-09-27 14:14:48 +00:00
|
|
|
|
|
2023-11-16 16:41:25 +00:00
|
|
|
|
// removeQuestion(quizId, totalIndex);
|
2023-09-27 14:14:48 +00:00
|
|
|
|
|
2023-11-16 16:41:25 +00:00
|
|
|
|
// const newTimeoutId = window.setTimeout(() => {
|
|
|
|
|
// removeQuestionForce(quizId, removedId);
|
|
|
|
|
// }, 5000);
|
2023-09-27 14:14:48 +00:00
|
|
|
|
|
2023-11-16 16:41:25 +00:00
|
|
|
|
// updateQuestionsList<QuizQuestionBase>(quizId, totalIndex, {
|
|
|
|
|
// ...question,
|
|
|
|
|
// deleteTimeoutId: newTimeoutId,
|
|
|
|
|
// });
|
|
|
|
|
|
2023-12-04 16:33:50 +00:00
|
|
|
|
deleteQuestion(question.id, quiz.id);
|
2023-11-16 16:41:25 +00:00
|
|
|
|
}}
|
2023-11-27 23:07:24 +00:00
|
|
|
|
data-cy="delete-question"
|
2023-11-16 16:41:25 +00:00
|
|
|
|
>
|
|
|
|
|
<DeleteIcon color={"#4D4D4D"} />
|
|
|
|
|
</IconButton>
|
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
);
|
2023-04-15 09:10:59 +00:00
|
|
|
|
}
|