смена положения блоков формы контактов при увеличении количества полей

This commit is contained in:
Tamara 2024-01-07 02:57:33 +03:00
parent 772796d1bd
commit 02b87e80c4
2 changed files with 27 additions and 4 deletions

@ -76,7 +76,7 @@ export const ContactForm = ({
const mode = modes; const mode = modes;
const { questions } = useQuestionsStore(); const { questions } = useQuestionsStore();
const theme = useTheme(); const theme = useTheme();
const isMobile = useMediaQuery(theme.breakpoints.down(600)); const isMobile = useMediaQuery(theme.breakpoints.down(850));
const [ready, setReady] = useState(false); const [ready, setReady] = useState(false);
const followNextForm = () => { const followNextForm = () => {
setShowContactForm(false); setShowContactForm(false);
@ -98,6 +98,18 @@ export const ContactForm = ({
} }
}); });
let FCcopy: any = quiz?.config.formContact.fields;
let filteredFC = {};
for (let i in FCcopy) {
let field = FCcopy[i];
if (field.used) {
filteredFC[i] = field;
}
}
let isWide = Object.keys(filteredFC).length > 2;
console.log(isWide);
return ( return (
<Box <Box
sx={{ sx={{
@ -106,17 +118,27 @@ export const ContactForm = ({
justifyContent: "center", justifyContent: "center",
backgroundColor: theme.palette.background.default, backgroundColor: theme.palette.background.default,
height: "100vh", height: "100vh",
overflow: "auto",
}} }}
> >
<Box <Box
sx={{ sx={{
width: isMobile ? "330px" : "530px", width: isWide && !isMobile ? "100%" : isMobile ? undefined : "530px",
borderRadius: "4px", borderRadius: "4px",
overflow: "auto",
height: "90vh", height: "90vh",
display: isWide && !isMobile ? "flex" : undefined,
}} }}
> >
<Box> <Box
sx={{
width: isWide && !isMobile ? "100%" : undefined,
display: "flex",
flexDirection: "column",
alignItems: "center",
justifyContent: "center",
borderRight: isWide && !isMobile ? "1px solid gray" : undefined,
}}
>
<Typography <Typography
sx={{ sx={{
textAlign: "center", textAlign: "center",

@ -75,6 +75,7 @@ export const ResultForm = ({
height: isMobile ? undefined : "100vh", height: isMobile ? undefined : "100vh",
width: "100vw", width: "100vw",
pt: "28px", pt: "28px",
overflow: "auto",
}} }}
> >
<Box <Box