frontPanel/src/pages/ViewPublicationPage/ContactForm.tsx

220 lines
6.9 KiB
TypeScript
Raw Normal View History

import { Box, Typography, Button, Paper, TextField, Link, InputAdornment } from "@mui/material";
2023-12-16 12:33:06 +00:00
import NameIcon from "@icons/ContactFormIcon/NameIcon";
import EmailIcon from "@icons/ContactFormIcon/EmailIcon";
import PhoneIcon from "@icons/ContactFormIcon/PhoneIcon";
import TextIcon from "@icons/ContactFormIcon/TextIcon";
import AddressIcon from "@icons/ContactFormIcon/AddressIcon";
2023-12-15 12:12:36 +00:00
import { useCurrentQuiz } from "@root/quizes/hooks";
import { NameplateLogo } from "@icons/NameplateLogo";
2023-12-16 12:33:06 +00:00
import CustomCheckbox from "@ui_kit/CustomCheckbox";
import { useState } from "react";
2023-12-16 09:36:35 +00:00
import { useQuestionsStore } from "@root/questions/store";
import type { AnyTypedQuizQuestion } from "../../model/questionTypes/shared";
import { enqueueSnackbar } from "notistack";
2023-12-15 12:12:36 +00:00
type ContactFormProps = {
2023-12-16 09:36:35 +00:00
currentQuestion: AnyTypedQuizQuestion;
2023-12-15 12:12:36 +00:00
showResultForm: boolean;
setShowContactForm: (show: boolean) => void;
setShowResultForm: (show: boolean) => void;
};
2023-12-16 12:33:06 +00:00
const icons = [
{ type: "name", icon: NameIcon, defaultText: "Введите имя", defaultTitle: "имя" },
{ type: "email", icon: EmailIcon, defaultText: "Введите Email", defaultTitle: "Email" },
{ type: "phone", icon: PhoneIcon, defaultText: "Введите номер телефона", defaultTitle: "номер телефона" },
{ type: "text", icon: TextIcon, defaultText: "Введите фамилию", defaultTitle: "фамилию" },
{ type: "address", icon: AddressIcon, defaultText: "Введите адрес", defaultTitle: "адрес" },
]
2023-12-15 12:12:36 +00:00
export const ContactForm = ({
2023-12-16 09:36:35 +00:00
currentQuestion,
2023-12-15 12:12:36 +00:00
showResultForm,
setShowContactForm,
setShowResultForm,
}: ContactFormProps) => {
const quiz = useCurrentQuiz();
2023-12-16 09:36:35 +00:00
const { questions } = useQuestionsStore();
2023-12-15 12:12:36 +00:00
2023-12-16 12:33:06 +00:00
const [ready, setReady] = useState(false)
2023-12-15 12:12:36 +00:00
const followNextForm = () => {
setShowContactForm(false);
setShowResultForm(true);
};
2023-12-16 09:36:35 +00:00
const resultQuestion = questions.find(
(question) =>
question.type === "result" &&
question.content.rule.parentId === currentQuestion.content.id
);
2023-12-15 12:12:36 +00:00
return (
2023-12-16 12:33:06 +00:00
<Box
sx={{
display: "flex",
alignItems: "center",
justifyContent: "center",
height: "100vh"
}}
>
<Box
sx={{
width: "800px"
}}
>
<Box>
<Typography
sx={{
textAlign: "center",
m: "20px 0",
fontSize: "28px"
}}
>
{quiz?.config.formContact.title || "Заполните форму, чтобы получить результаты теста"}
2023-12-16 12:33:06 +00:00
</Typography>
{
quiz?.config.formContact.desc &&
<Typography
sx={{
textAlign: "center",
m: "20px 0",
fontSize: "18px"
}}
>
{quiz?.config.formContact.desc}
</Typography>
}
2023-12-16 12:33:06 +00:00
</Box>
<Paper
sx={{
display: "flex",
alignItems: "center",
justifyContent: "center",
flexDirection: "column",
p: "30px"
}}>
<Box
sx={{
display: "flex",
flexDirection: "column",
my: "20px"
}}
>
<Inputs />
2023-12-16 12:33:06 +00:00
</Box>
2023-12-16 15:59:36 +00:00
{
// resultQuestion &&
// quiz?.config.resultInfo.when === "after" &&
(
<Button
disabled={!ready}
variant="contained" onClick={() => {
if (quiz?.config.resultInfo.when === "after") followNextForm()
}}>
2023-12-16 15:59:36 +00:00
Получить результаты
</Button>
)}
2023-12-16 12:33:06 +00:00
<Box
sx={{
display: "flex",
mt: "20px",
width: "450px",
}}
>
2023-12-16 15:59:36 +00:00
<CustomCheckbox label="" handleChange={({ target }) => { setReady(target.checked) }} checked={ready} />
2023-12-16 12:33:06 +00:00
<Typography>
С
<Link> Положением об обработке персональных данных </Link>
и
<Link> Политикой конфиденциальности </Link>
ознакомлен
</Typography>
</Box>
<Box
sx={{
display: "flex",
alignItems: "center",
mt: "20px"
}}
>
<NameplateLogo style={{ fontSize: "34px" }} />
<Typography sx={{ fontSize: "20px", color: "#4D4D4D", whiteSpace: "nowrap" }}>Сделано на PenaQuiz</Typography>
</Box>
2023-12-16 12:33:06 +00:00
</Paper>
2023-12-16 15:59:36 +00:00
</Box >
</Box >
2023-12-15 12:12:36 +00:00
);
};
2023-12-16 12:33:06 +00:00
const Inputs = (currentQuestion: any) => {
const quiz = useCurrentQuiz();
const { questions } = useQuestionsStore()
const [name, setName] = useState("")
const [email, setEmail] = useState("")
const [phone, setPhone] = useState("")
const [text, setText] = useState("")
const [adress, setAdress] = useState("")
//@ts-ignore
const FC: any = quiz?.config.formContact.fields
console.log(FC)
//@ts-ignore
const Name = <CustomInput onChange={({ target }) => setName(target.value)} id={name} title={FC["name"].innerText || "Введите имя"} desc={FC["name"].text || "имя"} Icon={NameIcon} />
//@ts-ignore
const Email = <CustomInput onChange={({ target }) => setEmail(target.value)} id={email} title={FC["email"].innerText || "Введите Email"} desc={FC["email"].text || "Email"} Icon={EmailIcon} />
//@ts-ignore
const Phone = <CustomInput onChange={({ target }) => setPhone(target.value)} id={phone} title={FC["phone"].innerText || "Введите номер телефона"} desc={FC["phone"].text || "номер телефона"} Icon={PhoneIcon} />
//@ts-ignore
const Text = <CustomInput onChange={({ target }) => setText(target.value)} id={text} title={FC["text"].innerText || "Введите фамилию"} desc={FC["text"].text || "фамилию"} Icon={TextIcon} />
//@ts-ignore
const Adress = <CustomInput onChange={({ target }) => setAdress(target.value)} id={adress} title={FC["address"].innerText || "Введите адрес"} desc={FC["address"].text || "адрес"} Icon={AddressIcon} />
//@ts-ignore
if (questions.some((data) => data.used)) {
return <>
{FC["name"].used ? Name : <></>}
{FC["email"].used ? Email : <></>}
{FC["phone"].used ? Phone : <></>}
{FC["text"].used ? Text : <></>}
{FC["address"].used ? Adress : <></>}
</>
} else {
return <>
{Name}
{Email}
{Phone}
</>
}
}
2023-12-16 12:33:06 +00:00
const CustomInput = ({ title, desc, Icon }: any) => {
return <Box m="15px 0">
<Typography mb="7px">{title}</Typography>
<TextField
sx={{
width: "350px",
}}
placeholder={desc}
InputProps={{
startAdornment: <InputAdornment position="start"><Icon color="gray" /></InputAdornment>,
2023-12-16 12:33:06 +00:00
}}
/>
</Box>
2023-12-16 15:59:36 +00:00
}