2023-09-06 13:20:12 +00:00
|
|
|
|
import { useParams } from "react-router-dom";
|
2023-09-26 21:11:27 +00:00
|
|
|
|
import { Box, ButtonBase, Slider, Typography, Tooltip, useMediaQuery, useTheme } from "@mui/material";
|
2023-09-20 09:07:33 +00:00
|
|
|
|
import { useDebouncedCallback } from "use-debounce";
|
2023-04-23 08:39:34 +00:00
|
|
|
|
|
2023-03-31 15:48:49 +00:00
|
|
|
|
import CustomCheckbox from "@ui_kit/CustomCheckbox";
|
2023-09-08 13:42:52 +00:00
|
|
|
|
import CustomTextField from "@ui_kit/CustomTextField";
|
2023-09-06 06:47:23 +00:00
|
|
|
|
import { questionStore, updateQuestionsList } from "@root/questions";
|
2023-04-23 08:39:34 +00:00
|
|
|
|
|
2023-05-03 19:21:00 +00:00
|
|
|
|
import InfoIcon from "../../../assets/icons/InfoIcon";
|
|
|
|
|
import TropfyIcon from "../../../assets/icons/questionsPage/tropfyIcon";
|
|
|
|
|
import FlagIcon from "../../../assets/icons/questionsPage/FlagIcon";
|
|
|
|
|
import HeartIcon from "../../../assets/icons/questionsPage/heartIcon";
|
|
|
|
|
import LikeIcon from "../../../assets/icons/questionsPage/likeIcon";
|
|
|
|
|
import LightbulbIcon from "../../../assets/icons/questionsPage/lightbulbIcon";
|
|
|
|
|
import HashtagIcon from "../../../assets/icons/questionsPage/hashtagIcon";
|
|
|
|
|
import StarIconMini from "../../../assets/icons/questionsPage/StarIconMini";
|
2023-03-31 15:48:49 +00:00
|
|
|
|
|
2023-09-18 07:45:14 +00:00
|
|
|
|
import type { ButtonRatingFrom } from "./RatingOptions";
|
2023-10-03 14:03:57 +00:00
|
|
|
|
import type { QuizQuestionNumber } from "../../../model/questionTypes/number";
|
2023-09-18 07:45:14 +00:00
|
|
|
|
|
2023-09-06 06:47:23 +00:00
|
|
|
|
type SettingSliderProps = {
|
|
|
|
|
totalIndex: number;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function SettingSlider({ totalIndex }: SettingSliderProps) {
|
2023-09-06 13:20:12 +00:00
|
|
|
|
const quizId = Number(useParams().quizId);
|
2023-04-23 08:39:34 +00:00
|
|
|
|
const theme = useTheme();
|
2023-09-26 21:11:27 +00:00
|
|
|
|
const isFigmaTablte = useMediaQuery(theme.breakpoints.down(990));
|
2023-09-15 12:37:12 +00:00
|
|
|
|
const isMobile = useMediaQuery(theme.breakpoints.down(790));
|
|
|
|
|
const isWrappColumn = useMediaQuery(theme.breakpoints.down(980));
|
2023-09-06 06:47:23 +00:00
|
|
|
|
const { listQuestions } = questionStore();
|
2023-10-03 14:03:57 +00:00
|
|
|
|
const question = listQuestions[quizId][totalIndex] as QuizQuestionNumber;
|
2023-09-20 09:07:33 +00:00
|
|
|
|
const debounced = useDebouncedCallback((value) => {
|
2023-10-04 11:35:02 +00:00
|
|
|
|
updateQuestionsList<QuizQuestionNumber>(quizId, totalIndex, {
|
2023-10-03 14:03:57 +00:00
|
|
|
|
content: { ...question.content, innerName: value },
|
|
|
|
|
});
|
2023-09-20 09:07:33 +00:00
|
|
|
|
}, 1000);
|
2023-09-06 06:47:23 +00:00
|
|
|
|
|
|
|
|
|
const buttonRatingForm: ButtonRatingFrom[] = [
|
|
|
|
|
{ name: "star", icon: <StarIconMini color={theme.palette.grey3.main} /> },
|
|
|
|
|
{ name: "trophie", icon: <TropfyIcon color={theme.palette.grey3.main} /> },
|
|
|
|
|
{ name: "flag", icon: <FlagIcon color={theme.palette.grey3.main} /> },
|
|
|
|
|
{ name: "heart", icon: <HeartIcon color={theme.palette.grey3.main} /> },
|
|
|
|
|
{ name: "like", icon: <LikeIcon color={theme.palette.grey3.main} /> },
|
|
|
|
|
{
|
|
|
|
|
name: "bubble",
|
|
|
|
|
icon: <LightbulbIcon color={theme.palette.grey3.main} />,
|
|
|
|
|
},
|
|
|
|
|
{ name: "hashtag", icon: <HashtagIcon color={theme.palette.grey3.main} /> },
|
2023-04-23 08:39:34 +00:00
|
|
|
|
];
|
2023-03-31 15:48:49 +00:00
|
|
|
|
|
2023-04-23 08:39:34 +00:00
|
|
|
|
return (
|
2023-09-18 07:45:14 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
flexDirection: isWrappColumn ? "column" : null,
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-09-26 21:11:27 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
pt: isMobile ? "25px" : "20px",
|
|
|
|
|
pb: isMobile ? "25px" : "20px",
|
|
|
|
|
pl: "20px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
gap: "14px",
|
2023-09-28 21:17:01 +00:00
|
|
|
|
maxWidth: "340px",
|
2023-09-26 21:11:27 +00:00
|
|
|
|
width: "100%",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Typography sx={{ height: isMobile ? "18px" : "auto", fontWeight: "500", fontSize: "18px", color: " #4D4D4D" }}>
|
2023-09-18 07:45:14 +00:00
|
|
|
|
Настройки рейтинга
|
|
|
|
|
</Typography>
|
2023-09-06 06:47:23 +00:00
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
color: theme.palette.grey2.main,
|
|
|
|
|
fontSize: "16px",
|
|
|
|
|
fontWeight: 400,
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Форма
|
|
|
|
|
</Typography>
|
2023-04-23 08:39:34 +00:00
|
|
|
|
<Box sx={{ display: "flex", marginBottom: "15px" }}>
|
2023-09-06 06:47:23 +00:00
|
|
|
|
{buttonRatingForm.map(({ name, icon }, index) => (
|
2023-04-23 08:39:34 +00:00
|
|
|
|
<ButtonBase
|
|
|
|
|
key={index}
|
|
|
|
|
onClick={() => {
|
2023-10-04 11:35:02 +00:00
|
|
|
|
updateQuestionsList<QuizQuestionNumber>(quizId, totalIndex, {
|
2023-10-03 14:03:57 +00:00
|
|
|
|
content: { ...question.content, form: name },
|
2023-09-06 13:20:12 +00:00
|
|
|
|
});
|
2023-04-23 08:39:34 +00:00
|
|
|
|
}}
|
|
|
|
|
sx={{
|
2023-09-06 06:47:23 +00:00
|
|
|
|
backgroundColor:
|
2023-10-03 14:03:57 +00:00
|
|
|
|
question.content.form === name
|
2023-09-06 06:47:23 +00:00
|
|
|
|
? theme.palette.brightPurple.main
|
|
|
|
|
: "transparent",
|
2023-09-18 07:45:14 +00:00
|
|
|
|
color:
|
2023-10-03 14:03:57 +00:00
|
|
|
|
question.content.form === name
|
2023-09-18 07:45:14 +00:00
|
|
|
|
? "#ffffff"
|
|
|
|
|
: theme.palette.grey3.main,
|
2023-04-23 08:39:34 +00:00
|
|
|
|
width: "40px",
|
|
|
|
|
height: "40px",
|
|
|
|
|
borderRadius: "4px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-09-06 06:47:23 +00:00
|
|
|
|
{icon}
|
2023-04-23 08:39:34 +00:00
|
|
|
|
</ButtonBase>
|
|
|
|
|
))}
|
2023-03-31 15:48:49 +00:00
|
|
|
|
</Box>
|
2023-09-26 21:11:27 +00:00
|
|
|
|
|
2023-09-06 06:47:23 +00:00
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
color: theme.palette.grey2.main,
|
|
|
|
|
fontSize: "16px",
|
|
|
|
|
fontWeight: 400,
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Количество
|
|
|
|
|
</Typography>
|
2023-04-23 08:39:34 +00:00
|
|
|
|
<Slider
|
2023-10-03 14:03:57 +00:00
|
|
|
|
value={question.content.steps}
|
2023-09-21 12:15:49 +00:00
|
|
|
|
min={2}
|
2023-04-23 08:39:34 +00:00
|
|
|
|
max={10}
|
|
|
|
|
aria-label="Default"
|
|
|
|
|
valueLabelDisplay="auto"
|
2023-09-26 21:11:27 +00:00
|
|
|
|
sx={{ color: theme.palette.brightPurple.main, padding: "0" }}
|
2023-09-06 06:47:23 +00:00
|
|
|
|
onChange={(_, value) => {
|
2023-10-04 11:35:02 +00:00
|
|
|
|
updateQuestionsList<QuizQuestionNumber>(quizId, totalIndex, {
|
2023-10-03 14:03:57 +00:00
|
|
|
|
content: { ...question.content, steps: Number(value) || 1 },
|
|
|
|
|
});
|
2023-09-06 06:47:23 +00:00
|
|
|
|
}}
|
2023-04-23 08:39:34 +00:00
|
|
|
|
/>
|
|
|
|
|
</Box>
|
2023-09-26 21:11:27 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
2023-10-06 19:28:30 +00:00
|
|
|
|
boxSizing: "border-box",
|
2023-09-26 21:11:27 +00:00
|
|
|
|
pt: isMobile ? "30px" : "20px",
|
|
|
|
|
pb: "20px",
|
2023-09-28 21:17:01 +00:00
|
|
|
|
pl: isFigmaTablte ? (isMobile ? "20px" : "34px") : "40px",
|
2023-09-26 21:11:27 +00:00
|
|
|
|
pr: isFigmaTablte ? "19px" : "20px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
gap: isMobile ? "13px" : "14px",
|
|
|
|
|
width: "100%",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Typography sx={{ height: isMobile ? "18px" : "auto", fontWeight: "500", fontSize: "18px", color: " #4D4D4D" }}>
|
|
|
|
|
Настройки вопросов
|
|
|
|
|
</Typography>
|
2023-09-08 13:42:52 +00:00
|
|
|
|
<CustomCheckbox
|
2023-09-21 07:00:08 +00:00
|
|
|
|
sx={{ display: "block", mr: isMobile ? "0px" : "16px" }}
|
2023-09-08 13:42:52 +00:00
|
|
|
|
label={"Необязательный вопрос"}
|
2023-10-04 09:45:51 +00:00
|
|
|
|
checked={!question.required}
|
2023-09-08 13:42:52 +00:00
|
|
|
|
handleChange={(e) => {
|
2023-10-04 11:35:02 +00:00
|
|
|
|
updateQuestionsList<QuizQuestionNumber>(quizId, totalIndex, {
|
2023-09-08 13:42:52 +00:00
|
|
|
|
required: !e.target.checked,
|
|
|
|
|
});
|
|
|
|
|
}}
|
|
|
|
|
/>
|
2023-09-21 12:15:49 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
width: isMobile ? "90%" : "auto",
|
|
|
|
|
display: "flex",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-09-08 13:42:52 +00:00
|
|
|
|
<CustomCheckbox
|
2023-09-21 07:00:08 +00:00
|
|
|
|
sx={{ mr: isMobile ? "0px" : "16px" }}
|
2023-09-08 13:42:52 +00:00
|
|
|
|
label={"Внутреннее название вопроса"}
|
2023-10-03 14:03:57 +00:00
|
|
|
|
checked={question.content.innerNameCheck}
|
|
|
|
|
handleChange={({ target }) => {
|
2023-10-04 11:35:02 +00:00
|
|
|
|
updateQuestionsList<QuizQuestionNumber>(quizId, totalIndex, {
|
2023-10-03 14:03:57 +00:00
|
|
|
|
content: {
|
|
|
|
|
...question.content,
|
|
|
|
|
innerNameCheck: target.checked,
|
|
|
|
|
innerName: target.checked ? question.content.innerName : "",
|
|
|
|
|
},
|
|
|
|
|
});
|
2023-09-08 13:42:52 +00:00
|
|
|
|
}}
|
2023-09-18 12:34:41 +00:00
|
|
|
|
/>
|
2023-09-26 21:11:27 +00:00
|
|
|
|
<Tooltip title="Будет отображаться как заголовок вопроса в приходящих заявках." placement="top">
|
2023-09-18 12:34:41 +00:00
|
|
|
|
<Box>
|
|
|
|
|
<InfoIcon />
|
|
|
|
|
</Box>
|
|
|
|
|
</Tooltip>
|
2023-09-08 13:42:52 +00:00
|
|
|
|
</Box>
|
2023-10-03 14:03:57 +00:00
|
|
|
|
{question.content.innerNameCheck && (
|
2023-09-08 13:42:52 +00:00
|
|
|
|
<CustomTextField
|
|
|
|
|
placeholder={"Развёрнутое описание вопроса"}
|
2023-10-03 14:03:57 +00:00
|
|
|
|
text={question.content.innerName}
|
2023-09-20 09:07:33 +00:00
|
|
|
|
onChange={({ target }) => debounced(target.value)}
|
2023-09-08 13:42:52 +00:00
|
|
|
|
/>
|
|
|
|
|
)}
|
2023-04-23 08:39:34 +00:00
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
);
|
|
|
|
|
}
|