frontPanel/src/pages/Questions/RatingOptions/settingRating.tsx

151 lines
5.7 KiB
TypeScript
Raw Normal View History

2023-09-06 13:20:12 +00:00
import { useParams } from "react-router-dom";
2023-09-15 12:37:12 +00:00
import { Box, ButtonBase, Slider, Typography, useMediaQuery, useTheme } from "@mui/material";
2023-04-23 08:39:34 +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
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-09-06 06:47:23 +00:00
type SettingSliderProps = {
totalIndex: number;
};
type ButtonRatingFrom = {
name: string;
icon: JSX.Element;
};
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-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();
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-04-23 08:39:34 +00:00
return (
2023-09-15 12:37:12 +00:00
<Box sx={{ display: "flex", justifyContent: "space-between", flexDirection: isWrappColumn ? "column" : null }}>
2023-04-23 08:39:34 +00:00
<Box sx={{ padding: "20px" }}>
2023-09-15 12:37:12 +00:00
<Typography sx={{ marginBottom: "15px" }}>Настройки рейтинга</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-09-06 13:20:12 +00:00
const clonContent = listQuestions[quizId][totalIndex].content;
2023-09-06 06:47:23 +00:00
clonContent.form = name;
2023-09-06 13:20:12 +00:00
updateQuestionsList(quizId, totalIndex, {
content: clonContent,
});
2023-04-23 08:39:34 +00:00
}}
sx={{
2023-09-06 06:47:23 +00:00
backgroundColor:
2023-09-06 13:20:12 +00:00
listQuestions[quizId][totalIndex].content.form === name
2023-09-06 06:47:23 +00:00
? theme.palette.brightPurple.main
: "transparent",
2023-09-15 12:37:12 +00:00
color: listQuestions[quizId][totalIndex].content.form === name ? "#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>
))}
</Box>
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-09-06 13:20:12 +00:00
value={listQuestions[quizId][totalIndex].content.steps}
2023-04-23 08:39:34 +00:00
min={1}
max={10}
aria-label="Default"
valueLabelDisplay="auto"
sx={{ color: theme.palette.brightPurple.main }}
2023-09-06 06:47:23 +00:00
onChange={(_, value) => {
2023-09-06 13:20:12 +00:00
const clonContent = listQuestions[quizId][totalIndex].content;
2023-09-06 06:47:23 +00:00
clonContent.steps = Number(value) || 1;
2023-09-06 13:20:12 +00:00
updateQuestionsList(quizId, totalIndex, { content: clonContent });
2023-09-06 06:47:23 +00:00
}}
2023-04-23 08:39:34 +00:00
/>
</Box>
<Box sx={{ padding: "20px" }}>
<Typography>Настройки вопросов</Typography>
2023-09-08 13:42:52 +00:00
<CustomCheckbox
label={"Необязательный вопрос"}
checked={!listQuestions[quizId][totalIndex].required}
handleChange={(e) => {
updateQuestionsList(quizId, totalIndex, {
required: !e.target.checked,
});
}}
/>
<Box sx={{ display: "flex", alignItems: "center" }}>
<CustomCheckbox
label={"Внутреннее название вопроса"}
checked={listQuestions[quizId][totalIndex].content.innerNameCheck}
handleChange={(e) => {
let clonContent = listQuestions[quizId][totalIndex].content;
clonContent.innerNameCheck = e.target.checked;
if (!e.target.checked) {
clonContent.innerName = "";
}
updateQuestionsList(quizId, totalIndex, { content: clonContent });
}}
/>{" "}
<InfoIcon />
</Box>
{listQuestions[quizId][totalIndex].content.innerNameCheck && (
<CustomTextField
placeholder={"Развёрнутое описание вопроса"}
text={listQuestions[quizId][totalIndex].content.innerName}
onChange={({ target }) => {
let clonContent = listQuestions[quizId][totalIndex].content;
clonContent.innerName = target.value;
updateQuestionsList(quizId, totalIndex, { content: clonContent });
}}
/>
)}
2023-04-23 08:39:34 +00:00
</Box>
</Box>
);
}