2023-08-12 08:31:21 +00:00
|
|
|
|
import { Box, Link, Typography, useTheme } from "@mui/material";
|
2023-05-03 19:21:00 +00:00
|
|
|
|
import AddImage from "../../../assets/icons/questionsPage/addImage";
|
|
|
|
|
import EnterIcon from "../../../assets/icons/questionsPage/enterIcon";
|
2023-03-30 18:39:59 +00:00
|
|
|
|
import ButtonsOptionsAndPict from "../ButtonsOptionsAndPict";
|
|
|
|
|
import SwitchOptionsAndPict from "./switchOptionsAndPict";
|
|
|
|
|
import React from "react";
|
|
|
|
|
|
2023-06-30 14:39:07 +00:00
|
|
|
|
interface Props {
|
2023-08-12 08:31:21 +00:00
|
|
|
|
totalIndex: number;
|
2023-06-30 14:39:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-08-12 08:31:21 +00:00
|
|
|
|
export default function OptionsAndPicture({ totalIndex }: Props) {
|
|
|
|
|
const theme = useTheme();
|
|
|
|
|
const [switchState, setSwitchState] = React.useState("setting");
|
|
|
|
|
const SSHC = (data: string) => {
|
|
|
|
|
setSwitchState(data);
|
|
|
|
|
};
|
|
|
|
|
return (
|
2023-03-30 18:39:59 +00:00
|
|
|
|
<>
|
2023-08-12 08:31:21 +00:00
|
|
|
|
<Box sx={{ padding: "20px" }}>
|
|
|
|
|
<Box sx={{ display: "flex", alignItems: "center", paddingBottom: "25px" }}>
|
|
|
|
|
<AddImage />
|
|
|
|
|
<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" }}>
|
|
|
|
|
<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 />
|
2023-03-30 18:39:59 +00:00
|
|
|
|
</Box>
|
2023-08-12 08:31:21 +00:00
|
|
|
|
</Box>
|
|
|
|
|
<ButtonsOptionsAndPict switchState={switchState} SSHC={SSHC} totalIndex={totalIndex} />
|
|
|
|
|
<SwitchOptionsAndPict switchState={switchState} />
|
2023-03-30 18:39:59 +00:00
|
|
|
|
</>
|
2023-08-12 08:31:21 +00:00
|
|
|
|
);
|
|
|
|
|
}
|