2023-09-06 08:01:44 +00:00
|
|
|
|
import { Box, Typography } from "@mui/material";
|
2023-03-31 15:48:49 +00:00
|
|
|
|
import CustomCheckbox from "@ui_kit/CustomCheckbox";
|
2023-05-03 19:21:00 +00:00
|
|
|
|
import InfoIcon from "../../../assets/icons/InfoIcon";
|
2023-09-06 08:01:44 +00:00
|
|
|
|
import { questionStore, updateQuestionsList } from "@root/questions";
|
2023-03-31 15:48:49 +00:00
|
|
|
|
|
2023-09-06 08:01:44 +00:00
|
|
|
|
type SettingSliderProps = {
|
|
|
|
|
totalIndex: number;
|
|
|
|
|
};
|
2023-03-31 15:48:49 +00:00
|
|
|
|
|
2023-09-06 08:01:44 +00:00
|
|
|
|
export default function SettingSlider({ totalIndex }: SettingSliderProps) {
|
|
|
|
|
const { listQuestions } = questionStore();
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Box sx={{ display: "flex" }}>
|
|
|
|
|
<Box sx={{ padding: "20px" }}>
|
|
|
|
|
<Typography>Настройки ползунка</Typography>
|
|
|
|
|
<CustomCheckbox
|
|
|
|
|
label={"Выбор диапозона (два ползунка)"}
|
|
|
|
|
checked={listQuestions[totalIndex].content.chooseRange}
|
|
|
|
|
handleChange={(e) => {
|
|
|
|
|
let clonContent = listQuestions[totalIndex].content;
|
|
|
|
|
clonContent.chooseRange = e.target.checked;
|
|
|
|
|
updateQuestionsList(totalIndex, { content: clonContent });
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box sx={{ padding: "20px" }}>
|
|
|
|
|
<Typography>Настройки вопросов</Typography>
|
|
|
|
|
<CustomCheckbox label={"Необязательный вопрос"} />
|
|
|
|
|
<CustomCheckbox label={"Внутреннее название вопроса"} /> <InfoIcon />
|
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
);
|
|
|
|
|
}
|