2023-07-06 15:54:12 +00:00
|
|
|
import {
|
|
|
|
Box,
|
|
|
|
Checkbox,
|
|
|
|
FormControl,
|
|
|
|
FormControlLabel,
|
|
|
|
IconButton,
|
|
|
|
InputAdornment,
|
|
|
|
Paper,
|
|
|
|
TextField,
|
|
|
|
useTheme
|
|
|
|
} from "@mui/material";
|
2023-06-28 23:32:43 +00:00
|
|
|
import CustomTextField from "@ui_kit/CustomTextField";
|
|
|
|
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
|
2023-06-30 14:39:07 +00:00
|
|
|
import ExpandLessIcon from '@mui/icons-material/ExpandLess';
|
2023-06-28 23:32:43 +00:00
|
|
|
import OneIcon from "@icons/questionsPage/OneIcon";
|
|
|
|
import PointsIcon from "@icons/questionsPage/PointsIcon";
|
|
|
|
import TypeQuestions from "./TypeQuestions";
|
|
|
|
import SwitchQuestionsPage from "./SwitchQuestionsPage";
|
2023-06-30 14:39:07 +00:00
|
|
|
import React, {useState} from "react";
|
|
|
|
import DeleteIcon from "@icons/questionsPage/deleteIcon";
|
|
|
|
import {useParams} from "react-router-dom";
|
2023-07-20 22:02:20 +00:00
|
|
|
import {questionStore, updateQuestionsList, removeQuestion} from "@root/questions";
|
2023-06-30 17:59:50 +00:00
|
|
|
import CopyIcon from "@icons/questionsPage/CopyIcon";
|
|
|
|
import CrossedEyeIcon from "@icons/CrossedEyeIcon";
|
|
|
|
import HideIcon from "@icons/questionsPage/hideIcon";
|
2023-07-06 15:54:12 +00:00
|
|
|
import Answer from "@icons/questionsPage/answer";
|
|
|
|
import OptionsPict from "@icons/questionsPage/options_pict";
|
|
|
|
import OptionsAndPict from "@icons/questionsPage/options_and_pict";
|
|
|
|
import Emoji from "@icons/questionsPage/emoji";
|
|
|
|
import Input from "@icons/questionsPage/input";
|
|
|
|
import DropDown from "@icons/questionsPage/drop_down";
|
|
|
|
import Date from "@icons/questionsPage/date";
|
|
|
|
import Slider from "@icons/questionsPage/slider";
|
|
|
|
import Download from "@icons/questionsPage/download";
|
|
|
|
import Page from "@icons/questionsPage/page";
|
|
|
|
import RatingIcon from "@icons/questionsPage/rating";
|
2023-06-28 23:32:43 +00:00
|
|
|
|
|
|
|
interface Props {
|
2023-06-30 14:39:07 +00:00
|
|
|
totalIndex: number
|
2023-06-28 23:32:43 +00:00
|
|
|
}
|
|
|
|
|
2023-07-20 22:02:20 +00:00
|
|
|
const IconAndrom = (isExpanded:boolean, switchState:string) => {
|
2023-07-06 15:54:12 +00:00
|
|
|
switch (switchState) {
|
|
|
|
case 'variant':
|
|
|
|
return (<Answer color={isExpanded ? "#9A9AAF" : "white"} sx={{height:"22px", width:"20px"}}/>);
|
|
|
|
case 'images':
|
|
|
|
return (<OptionsPict color={isExpanded ? "#9A9AAF" : "white"} sx={{height:"22px", width:"20px"}}/>);
|
|
|
|
case 'varimg':
|
|
|
|
return (<OptionsAndPict color={isExpanded ? "#9A9AAF" : "white"} sx={{height:"22px", width:"20px"}}/>);
|
|
|
|
case 'emoji':
|
|
|
|
return (<Emoji color={isExpanded ? "#9A9AAF" : "white"} sx={{height:"22px", width:"20px"}}/>);
|
|
|
|
case 'text':
|
|
|
|
return (<Input color={isExpanded ? "#9A9AAF" : "white"} sx={{height:"22px", width:"20px"}}/>);
|
|
|
|
case 'select':
|
|
|
|
return (<DropDown color={isExpanded ? "#9A9AAF" : "white"} sx={{height:"22px", width:"20px"}}/>);
|
|
|
|
case 'date':
|
|
|
|
return (<Date color={isExpanded ? "#9A9AAF" : "white"} sx={{height:"22px", width:"20px"}}/>);
|
|
|
|
case 'number':
|
|
|
|
return (<Slider color={isExpanded ? "#9A9AAF" : "white"} sx={{height:"22px", width:"20px"}}/>);
|
|
|
|
case 'file':
|
|
|
|
return (<Download color={isExpanded ? "#9A9AAF" : "white"} sx={{height:"22px", width:"20px"}}/>);
|
|
|
|
case 'page':
|
|
|
|
return (<Page color={isExpanded ? "#9A9AAF" : "white"} sx={{height:"22px", width:"20px"}}/>);
|
|
|
|
case 'rating':
|
|
|
|
return (<RatingIcon color={isExpanded ? "#9A9AAF" : "white"} sx={{height:"22px", width:"20px"}}/>);
|
|
|
|
default:
|
|
|
|
return (<></>)
|
|
|
|
}
|
|
|
|
}
|
2023-07-20 22:02:20 +00:00
|
|
|
export default function QuestionsPageCard({totalIndex}: Props) {
|
|
|
|
|
|
|
|
function onDragStart(event: any) {
|
|
|
|
event
|
|
|
|
.dataTransfer
|
|
|
|
.setData('text', event.target.id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const theme = useTheme();
|
|
|
|
const {listQuestions} = questionStore()
|
|
|
|
const [isExpanded, setIsExpanded] = useState<boolean>(false);
|
|
|
|
const switchState = listQuestions[totalIndex].type
|
|
|
|
console.log(listQuestions[totalIndex].type)
|
|
|
|
console.log(totalIndex)
|
2023-06-28 23:32:43 +00:00
|
|
|
return (
|
2023-06-30 19:10:47 +00:00
|
|
|
<Paper
|
2023-07-22 20:07:57 +00:00
|
|
|
// draggable="true"
|
|
|
|
// id={String(totalIndex)}
|
2023-06-30 19:10:47 +00:00
|
|
|
sx={{
|
|
|
|
maxWidth: "796px",
|
|
|
|
width: "100%",
|
|
|
|
borderRadius: "12px",
|
|
|
|
margin: "20px 0",
|
|
|
|
backgroundColor: isExpanded ? "white" : "#333647"
|
|
|
|
}}
|
|
|
|
>
|
2023-06-28 23:32:43 +00:00
|
|
|
<Box
|
|
|
|
sx={{ width: "100%", maxWidth: "760px", display: "flex", alignItems: "center", gap: "10px", padding: "20px" }}
|
|
|
|
>
|
2023-07-06 15:54:12 +00:00
|
|
|
<FormControl
|
|
|
|
fullWidth
|
|
|
|
variant="standard"
|
|
|
|
sx={{ p: 0 }}
|
|
|
|
>
|
|
|
|
<TextField
|
|
|
|
defaultValue={""}
|
|
|
|
fullWidth
|
2023-07-22 20:07:57 +00:00
|
|
|
value={listQuestions[totalIndex].title}
|
2023-07-06 15:54:12 +00:00
|
|
|
placeholder={"Заголовок вопроса"}
|
|
|
|
onChange={e => {
|
2023-07-20 22:02:20 +00:00
|
|
|
updateQuestionsList(totalIndex, {title: e.target.value})
|
|
|
|
console.log(listQuestions[totalIndex].title)
|
2023-07-06 15:54:12 +00:00
|
|
|
}}
|
|
|
|
InputProps={{
|
|
|
|
startAdornment: (
|
|
|
|
<InputAdornment position="start">
|
2023-07-20 22:02:20 +00:00
|
|
|
{IconAndrom(isExpanded, switchState)}
|
2023-07-06 15:54:12 +00:00
|
|
|
</InputAdornment>
|
|
|
|
),
|
|
|
|
}}
|
|
|
|
sx={{
|
|
|
|
"& .MuiInputBase-root": {
|
|
|
|
color: isExpanded ? "#9A9AAF" : "white",
|
|
|
|
backgroundColor: isExpanded ? theme.palette.background.default : "transparent",
|
|
|
|
height: "48px",
|
|
|
|
borderRadius: "10px",
|
|
|
|
|
|
|
|
},
|
|
|
|
}}
|
|
|
|
inputProps={{
|
|
|
|
|
|
|
|
sx: {
|
|
|
|
borderRadius: "10px",
|
|
|
|
fontSize: "18px",
|
|
|
|
lineHeight: "21px",
|
|
|
|
py: 0,
|
|
|
|
paddingLeft: switchState.length === 0 ? 0 : "18px"
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</FormControl>
|
|
|
|
|
|
|
|
|
2023-06-30 14:39:07 +00:00
|
|
|
<IconButton onClick={() => setIsExpanded((prev) => !prev)}>
|
2023-06-28 23:32:43 +00:00
|
|
|
{" "}
|
2023-06-30 14:39:07 +00:00
|
|
|
{isExpanded ?
|
|
|
|
<ExpandMoreIcon />
|
|
|
|
:<ExpandLessIcon fill="#7E2AEA"/>
|
|
|
|
}
|
2023-06-28 23:32:43 +00:00
|
|
|
</IconButton>
|
2023-07-01 20:48:23 +00:00
|
|
|
{isExpanded ?
|
|
|
|
<></>
|
|
|
|
:
|
|
|
|
<Box sx={{display: "flex", borderRight: "solid 1px white"}}>
|
|
|
|
<FormControlLabel
|
|
|
|
control={
|
|
|
|
<Checkbox
|
2023-07-06 18:48:39 +00:00
|
|
|
icon={<HideIcon color={"#7E2AEA"}/>}
|
2023-07-01 20:48:23 +00:00
|
|
|
checkedIcon={<CrossedEyeIcon />}
|
|
|
|
/>}
|
|
|
|
label={""}
|
|
|
|
sx={{
|
|
|
|
color: theme.palette.grey2.main,
|
|
|
|
ml: "-9px",
|
|
|
|
mr: 0,
|
|
|
|
userSelect: "none",
|
|
|
|
}}
|
|
|
|
|
|
|
|
/>
|
2023-07-06 18:48:39 +00:00
|
|
|
<IconButton><CopyIcon color={"white"}/></IconButton>
|
2023-07-20 22:02:20 +00:00
|
|
|
<IconButton sx={{ borderRadius: "6px", padding: "2px" }} onClick={() => removeQuestion(totalIndex)}>
|
2023-07-06 18:48:39 +00:00
|
|
|
<DeleteIcon color={"white"}/>
|
2023-07-01 20:48:23 +00:00
|
|
|
</IconButton>
|
|
|
|
</Box>
|
|
|
|
|
|
|
|
}
|
2023-06-30 17:59:50 +00:00
|
|
|
|
2023-06-28 23:32:43 +00:00
|
|
|
<OneIcon />
|
|
|
|
<PointsIcon />
|
2023-06-30 17:59:50 +00:00
|
|
|
|
2023-06-28 23:32:43 +00:00
|
|
|
</Box>
|
2023-06-30 14:39:07 +00:00
|
|
|
{isExpanded && (
|
|
|
|
<Box sx={{display: "flex", flexDirection: "column", padding: 0, borderRadius: "12px"}}>
|
|
|
|
{switchState.length === 0 ?
|
2023-06-30 17:59:50 +00:00
|
|
|
<TypeQuestions totalIndex={totalIndex}/>
|
2023-06-30 14:39:07 +00:00
|
|
|
:
|
2023-06-30 17:59:50 +00:00
|
|
|
<SwitchQuestionsPage totalIndex={totalIndex}/>}
|
2023-06-30 14:39:07 +00:00
|
|
|
</Box>)
|
|
|
|
}
|
2023-07-22 20:07:57 +00:00
|
|
|
|
2023-06-28 23:32:43 +00:00
|
|
|
</Paper>
|
|
|
|
|
|
|
|
)
|
|
|
|
}
|