frontAnswerer/lib/components/ViewPublicationPage/StartPageViewPublication/StartPageDesktop.tsx

267 lines
8.7 KiB
TypeScript
Raw Normal View History

2024-04-29 12:45:33 +00:00
import {Box} from "@mui/material";
2024-02-29 13:44:45 +00:00
2024-04-29 12:45:33 +00:00
import {useRootContainerSize} from "@contexts/RootContainerWidthContext";
import {useQuizData} from "@contexts/QuizDataContext";
2024-02-29 13:44:45 +00:00
2024-04-29 12:45:33 +00:00
import {notReachable} from "@utils/notReachable";
import {quizThemes} from "@utils/themes/Publication/themePublication";
2024-02-29 13:44:45 +00:00
import type {
QuizStartpageAlignType,
QuizStartpageType,
2024-02-29 13:44:45 +00:00
} from "@model/settingsData";
2024-04-29 12:45:33 +00:00
import {DESIGN_LIST} from "@/utils/designList";
2024-02-29 13:44:45 +00:00
type StartPageDesktopProps = {
quizHeaderBlock: JSX.Element;
quizMainBlock: JSX.Element;
backgroundBlock: JSX.Element | null;
startpageType: QuizStartpageType;
alignType: QuizStartpageAlignType;
2024-02-29 13:44:45 +00:00
};
type LayoutProps = Omit<StartPageDesktopProps, "startpageType">;
const StandartLayout = ({
alignType,
quizHeaderBlock,
quizMainBlock,
backgroundBlock,
2024-03-06 15:45:45 +00:00
}: LayoutProps) => {
2024-05-02 13:13:41 +00:00
const size = useRootContainerSize();
const isTablet = size >= 700 && size < 1100;
const { settings } = useQuizData();
2024-03-06 15:45:45 +00:00
return (
<Box
id="pain"
sx={{
display: "flex",
flexDirection: alignType === "left" ? "row" : "row-reverse",
height: "100%",
backgroundPosition: "center",
backgroundSize: "cover",
backgroundImage: settings.cfg.design
? `url(${DESIGN_LIST[settings.cfg.theme]})`
: null,
2024-04-17 00:02:08 +00:00
scrollbarWidth: "none",
"&::-webkit-scrollbar": {
width: 0,
},
overflowY: "auto",
2024-04-29 12:45:33 +00:00
padding: isTablet ? "15px" : "0",
}}
>
<Box
sx={{
width: "40%",
height: "100%",
display: "flex",
flexDirection: "column",
justifyContent: "space-between",
alignItems: "flex-start",
2024-05-02 08:20:01 +00:00
p: isTablet? "25px" : alignType === 'left'? "25px 25px 25px 35px" : "25px 35px 25px 25px" ,
2024-04-09 19:52:45 +00:00
overflowY: "auto",
background:
settings.cfg.design && !quizThemes[settings.cfg.theme].isLight
? "linear-gradient(90deg,#272626,transparent)"
: null,
2024-04-17 00:02:08 +00:00
scrollbarWidth: "none",
"&::-webkit-scrollbar": {
width: 0,
},
}}
>
{quizHeaderBlock}
{quizMainBlock}
</Box>
{settings.cfg.startpage.background.desktop && (
2024-04-29 12:45:33 +00:00
<Box sx={{ width: "60%", overflow: "hidden" }}><Box
sx={{
width: "100%",
height: "100%",
padding: alignType === "left"? "25px 25px 25px 15px" : "25px 15px 25px 25px",
display: "flex",
justifyContent: "center",
"& > img": { width: "100%", borderRadius: "12px" },
}}
>{backgroundBlock}</Box></Box>
)}
</Box>
);
2024-03-06 15:45:45 +00:00
};
2024-02-29 13:44:45 +00:00
const ExpandedLayout = ({
alignType,
quizHeaderBlock,
quizMainBlock,
backgroundBlock,
}: LayoutProps) => {
const size = useRootContainerSize();
const isTablet = size >= 700 && size < 1100;
return (
<>
<Box
sx={{
height: "100%",
width: alignType === "center" ? "100%" : isTablet ? "46%" : "42%",
display: "flex",
2024-04-29 12:45:33 +00:00
padding:
alignType === "center"
? isTablet ? "30px 40px" : "30px 35px"
2024-04-29 12:45:33 +00:00
: alignType === "left"
? isTablet ? "25px 0 31px 40px" : "25px 0 31px 35px"
: isTablet ? "25px 40px 31px 0" : "25px 35px 31px 0",
margin:
alignType === "center"
? "0 auto"
: alignType === "left"
? "0"
: "0 0 0 auto",
2024-04-17 00:02:08 +00:00
scrollbarWidth: "none",
"&::-webkit-scrollbar": {
width: 0,
},
overflowY: "auto",
}}
>
<Box
sx={{
minHeight: "calc(100% - 32px)",
position: "relative",
width: "100%",
padding:
alignType === "center"
? "0"
: alignType === "left"
? "0 40px 0 0"
: "0 0 0 40px",
display: "flex",
flexDirection: "column",
justifyContent: "space-between",
alignItems: alignType === "center" ? "center" : "start",
borderRight: alignType === "left" ? "1px solid #9A9AAF80" : null,
borderLeft: alignType === "right" ? "1px solid #9A9AAF80" : null,
scrollbarWidth: "none",
"&::-webkit-scrollbar": {
width: 0,
},
}}
>
{alignType !== "center" && quizHeaderBlock}
{quizMainBlock}
</Box>
</Box>
<Box
sx={{
position: "absolute",
zIndex: -1,
left: 0,
top: 0,
height: "100%",
width: "100%",
overflow: "hidden",
}}
>
{backgroundBlock}
</Box>
</>
);
}
2024-02-29 13:44:45 +00:00
const CenteredLayout = ({
quizHeaderBlock,
quizMainBlock,
backgroundBlock,
2024-02-29 13:44:45 +00:00
}: LayoutProps) => {
const isTablet = useRootContainerSize() < 1100;
const { settings } = useQuizData();
return (
2024-02-29 13:44:45 +00:00
<Box
sx={{
overflow: "auto",
padding: isTablet ? "25px 40px 40px" : "25px 25px 25px",
display: "flex",
flexDirection: "column",
alignItems: "center",
height: "100%",
backgroundPosition: "center",
backgroundSize: "cover",
backgroundImage: settings.cfg.design
? `url(${DESIGN_LIST[settings.cfg.theme]})`
: null,
2024-04-17 00:02:08 +00:00
scrollbarWidth: "none",
"&::-webkit-scrollbar": {
width: 0,
},
overflowY: "auto",
}}
2024-02-29 13:44:45 +00:00
>
{quizHeaderBlock}
{backgroundBlock && settings.cfg.startpage.background.desktop && (
<Box
sx={{
width: "100%",
maxWidth: "844px",
height: isTablet ? "530px" : "306px",
display: "flex",
justifyContent: "center",
"& > img": { width: "100%", borderRadius: "12px" },
}}
>
{backgroundBlock}
</Box>
)}
{quizMainBlock}
2024-02-29 13:44:45 +00:00
</Box>
);
2024-02-29 13:44:45 +00:00
};
export const StartPageDesktop = ({
quizHeaderBlock,
quizMainBlock,
backgroundBlock,
startpageType,
alignType,
2024-02-29 13:44:45 +00:00
}: StartPageDesktopProps) => {
switch (startpageType) {
case null:
case "standard": {
return (
<StandartLayout
alignType={alignType}
quizHeaderBlock={quizHeaderBlock}
quizMainBlock={quizMainBlock}
backgroundBlock={backgroundBlock}
/>
);
}
2024-02-29 13:44:45 +00:00
case "expanded": {
return (
<ExpandedLayout
alignType={alignType}
quizHeaderBlock={quizHeaderBlock}
quizMainBlock={quizMainBlock}
backgroundBlock={backgroundBlock}
/>
);
}
2024-02-29 13:44:45 +00:00
case "centered": {
return (
<CenteredLayout
alignType={alignType}
quizHeaderBlock={quizHeaderBlock}
quizMainBlock={quizMainBlock}
backgroundBlock={backgroundBlock}
/>
);
}
2024-02-29 13:44:45 +00:00
default:
notReachable(startpageType);
}
2024-02-29 13:44:45 +00:00
};