2023-10-03 14:03:57 +00:00
|
|
|
|
import {
|
2023-12-31 02:53:25 +00:00
|
|
|
|
Box,
|
|
|
|
|
Tooltip,
|
|
|
|
|
Typography,
|
|
|
|
|
useMediaQuery,
|
|
|
|
|
useTheme,
|
2023-10-03 14:03:57 +00:00
|
|
|
|
} from "@mui/material";
|
2023-11-27 23:07:24 +00:00
|
|
|
|
import { setQuestionInnerName, updateQuestion } from "@root/questions/actions";
|
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-20 09:07:33 +00:00
|
|
|
|
import { useDebouncedCallback } from "use-debounce";
|
2023-05-03 19:21:00 +00:00
|
|
|
|
import InfoIcon from "../../../assets/icons/InfoIcon";
|
2023-10-03 14:03:57 +00:00
|
|
|
|
import type { QuizQuestionFile } from "../../../model/questionTypes/file";
|
|
|
|
|
|
2023-08-25 09:30:25 +00:00
|
|
|
|
type SettingsUploadProps = {
|
2023-12-31 02:53:25 +00:00
|
|
|
|
question: QuizQuestionFile;
|
2023-08-25 09:30:25 +00:00
|
|
|
|
};
|
|
|
|
|
|
2023-11-16 16:41:25 +00:00
|
|
|
|
export default function SettingsUpload({ question }: SettingsUploadProps) {
|
2023-12-31 02:53:25 +00:00
|
|
|
|
const theme = useTheme();
|
|
|
|
|
const isMobile = useMediaQuery(theme.breakpoints.down(790));
|
2023-11-16 16:41:25 +00:00
|
|
|
|
|
2023-12-31 02:53:25 +00:00
|
|
|
|
const setInnerName = useDebouncedCallback((value) => {
|
|
|
|
|
setQuestionInnerName(question.id, value);
|
|
|
|
|
}, 200);
|
2023-03-31 15:48:49 +00:00
|
|
|
|
|
2023-12-31 02:53:25 +00:00
|
|
|
|
return (
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
boxSizing: "border-box",
|
|
|
|
|
pt: isMobile ? "30px" : "20px",
|
|
|
|
|
pb: "20px",
|
|
|
|
|
pl: "20px",
|
|
|
|
|
pr: isMobile ? "20px" : "0px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
gap: "14px",
|
|
|
|
|
width: isMobile ? "auto" : "100%",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2024-01-04 15:18:29 +00:00
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
height: isMobile ? "18px" : "auto",
|
|
|
|
|
fontWeight: "500",
|
|
|
|
|
fontSize: "18px",
|
|
|
|
|
color: " #4D4D4D",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Настройки вопросов
|
|
|
|
|
</Typography>
|
2023-12-31 02:53:25 +00:00
|
|
|
|
{/* <CustomCheckbox
|
2023-11-16 16:41:25 +00:00
|
|
|
|
sx={{
|
|
|
|
|
display: isMobile ? "flex" : "block",
|
|
|
|
|
mr: isMobile ? "0px" : "16px",
|
|
|
|
|
}}
|
|
|
|
|
label={"Автозаполнение адреса"}
|
|
|
|
|
checked={question.content.autofill}
|
|
|
|
|
handleChange={({ target }) => {
|
2023-11-27 23:07:24 +00:00
|
|
|
|
updateQuestion(question.id, question => {
|
2023-11-16 16:41:25 +00:00
|
|
|
|
question.content.autofill = target.checked;
|
|
|
|
|
});
|
|
|
|
|
}}
|
2023-12-14 10:37:45 +00:00
|
|
|
|
/> */}
|
2023-12-31 02:53:25 +00:00
|
|
|
|
<CustomCheckbox
|
|
|
|
|
sx={{
|
|
|
|
|
display: isMobile ? "flex" : "block",
|
|
|
|
|
mr: isMobile ? "0px" : "16px",
|
|
|
|
|
}}
|
|
|
|
|
label={"Необязательный вопрос"}
|
|
|
|
|
checked={!question.content.required}
|
|
|
|
|
handleChange={(e) => {
|
|
|
|
|
updateQuestion<QuizQuestionFile>(question.id, (question) => {
|
|
|
|
|
question.content.required = !e.target.checked;
|
|
|
|
|
});
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
{/*<Box*/}
|
|
|
|
|
{/* sx={{*/}
|
|
|
|
|
{/* width: isMobile ? "90%" : "auto",*/}
|
|
|
|
|
{/* display: "flex",*/}
|
|
|
|
|
{/* alignItems: "center",*/}
|
|
|
|
|
{/* }}*/}
|
|
|
|
|
{/*>*/}
|
|
|
|
|
{/* <CustomCheckbox*/}
|
|
|
|
|
{/* sx={{*/}
|
|
|
|
|
{/* mr: isMobile ? "0px" : "16px",*/}
|
|
|
|
|
{/* height: isMobile ? "100%" : "26px",*/}
|
|
|
|
|
{/* alignItems: "flex-start",*/}
|
|
|
|
|
{/* }}*/}
|
|
|
|
|
{/* label={"Внутреннее название вопроса"}*/}
|
|
|
|
|
{/* checked={question.content.innerNameCheck}*/}
|
|
|
|
|
{/* handleChange={({ target }) => {*/}
|
|
|
|
|
{/* updateQuestion<QuizQuestionFile>(question.id, question => {*/}
|
|
|
|
|
{/* question.content.innerNameCheck = target.checked;*/}
|
|
|
|
|
{/* question.content.innerName = target.checked ? question.content.innerName : "";*/}
|
|
|
|
|
{/* });*/}
|
|
|
|
|
{/* }}*/}
|
|
|
|
|
{/* />*/}
|
|
|
|
|
{/* <Tooltip*/}
|
|
|
|
|
{/* title="Будет отображаться как заголовок вопроса в приходящих заявках."*/}
|
|
|
|
|
{/* placement="top"*/}
|
|
|
|
|
{/* >*/}
|
|
|
|
|
{/* <Box>*/}
|
|
|
|
|
{/* <InfoIcon />*/}
|
|
|
|
|
{/* </Box>*/}
|
|
|
|
|
{/* </Tooltip>*/}
|
|
|
|
|
{/*</Box>*/}
|
|
|
|
|
{/*{question.content.innerNameCheck && (*/}
|
|
|
|
|
{/* <CustomTextField*/}
|
|
|
|
|
{/* placeholder={"Развёрнутое описание вопроса"}*/}
|
|
|
|
|
{/* text={question.content.innerName}*/}
|
|
|
|
|
{/* onChange={({ target }) => setInnerName(target.value)}*/}
|
|
|
|
|
{/* sx={{ paddingRight: "20px" }}*/}
|
|
|
|
|
{/* />*/}
|
|
|
|
|
{/*)}*/}
|
|
|
|
|
</Box>
|
|
|
|
|
);
|
2023-08-25 09:30:25 +00:00
|
|
|
|
}
|