2023-03-30 18:39:59 +00:00
|
|
|
|
import {Box, Link, Typography, useTheme} from "@mui/material";
|
|
|
|
|
import React from "react";
|
2023-05-03 19:21:00 +00:00
|
|
|
|
import EnterIcon from "../../../assets/icons/questionsPage/enterIcon";
|
|
|
|
|
import AddImage from "../../../assets/icons/questionsPage/addImage";
|
2023-03-30 18:39:59 +00:00
|
|
|
|
import ButtonsOptions from "../ButtonsOptions";
|
|
|
|
|
import SwitchAnswerOptionsPict from "./switchOptionsPict";
|
2023-06-30 14:39:07 +00:00
|
|
|
|
interface Props {
|
|
|
|
|
totalIndex: number
|
|
|
|
|
}
|
|
|
|
|
export default function OptionsPicture({totalIndex}: Props) {
|
2023-03-30 18:39:59 +00:00
|
|
|
|
const theme = useTheme();
|
|
|
|
|
const [switchState, setSwitchState] = React.useState('setting');
|
|
|
|
|
// const [addInput, setAddInput] = React.useState([
|
|
|
|
|
// 0: {name: "распутье", variants: ["дорога влево", "дорога вправо"]};
|
|
|
|
|
// ]);
|
|
|
|
|
const SSHC = (data: string) => {
|
|
|
|
|
setSwitchState(data)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// const createCondition = (name) => {
|
|
|
|
|
// addInput([...state, {name: name}])
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// const deleteCondition = (index) => {
|
|
|
|
|
//
|
|
|
|
|
// }
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<Box sx={{ padding: '20px'}}>
|
2023-03-31 15:48:49 +00:00
|
|
|
|
<Box sx={{display: 'flex', alignItems: 'center', paddingBottom: '25px'}}>
|
2023-03-30 18:39:59 +00:00
|
|
|
|
<AddImage/>
|
2023-03-31 15:48:49 +00:00
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
padding: '0 0 0 20px',
|
|
|
|
|
fontWeight: 400,
|
|
|
|
|
fontSize: '18px',
|
|
|
|
|
lineHeight: '21.33px',
|
|
|
|
|
color: theme.palette.grey2.main
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Добавьте ответ
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
|
|
|
|
|
<Box sx={{ display: 'flex', alignItems: 'center', gap: '10px'}}>
|
2023-03-30 18:39:59 +00:00
|
|
|
|
<Link
|
|
|
|
|
component="button"
|
|
|
|
|
variant="body2"
|
|
|
|
|
sx={{color: theme.palette.brightPurple.main}}
|
|
|
|
|
// onClick={() => {
|
|
|
|
|
// console.info("I'm a button.");
|
|
|
|
|
// }}
|
|
|
|
|
>
|
|
|
|
|
Добавьте ответ
|
|
|
|
|
</Link>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontWeight: 400,
|
|
|
|
|
fontSize: '18px',
|
|
|
|
|
lineHeight: '21.33px',
|
|
|
|
|
color: theme.palette.grey2.main
|
|
|
|
|
}}
|
|
|
|
|
>или нажмите Enter</Typography>
|
|
|
|
|
<EnterIcon/>
|
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
2023-06-30 14:39:07 +00:00
|
|
|
|
<ButtonsOptions switchState={switchState} SSHC={SSHC} totalIndex={totalIndex}/>
|
2023-03-30 18:39:59 +00:00
|
|
|
|
<SwitchAnswerOptionsPict switchState={switchState}/>
|
|
|
|
|
</>
|
|
|
|
|
)
|
|
|
|
|
}
|