249 lines
7.3 KiB
TypeScript
249 lines
7.3 KiB
TypeScript
import type { QuestionVariant } from "@/model/questionTypes/shared";
|
||
import { useQuizSettings } from "@contexts/QuizDataContext";
|
||
import {
|
||
Box,
|
||
Checkbox,
|
||
FormControl,
|
||
FormControlLabel,
|
||
Input,
|
||
Radio,
|
||
TextareaAutosize,
|
||
Typography,
|
||
useTheme,
|
||
} from "@mui/material";
|
||
import { useQuizViewStore } from "@stores/quizView";
|
||
import RadioCheck from "@ui_kit/RadioCheck";
|
||
import RadioIcon from "@ui_kit/RadioIcon";
|
||
import { quizThemes } from "@utils/themes/Publication/themePublication";
|
||
import { polyfillCountryFlagEmojis } from "country-flag-emoji-polyfill";
|
||
import type { MouseEvent } from "react";
|
||
|
||
polyfillCountryFlagEmojis();
|
||
|
||
type EmojiVariantProps = {
|
||
questionId: string;
|
||
variant: QuestionVariant;
|
||
index: number;
|
||
isMulti: boolean;
|
||
own: boolean;
|
||
questionLargeCheck: boolean;
|
||
ownPlaceholder: string;
|
||
answer: string | string[] | undefined;
|
||
};
|
||
|
||
interface OwnInputProps {
|
||
questionId: string;
|
||
variant: QuestionVariant;
|
||
largeCheck: boolean;
|
||
ownPlaceholder: string;
|
||
}
|
||
const OwnInput = ({ questionId, variant, largeCheck, ownPlaceholder }: OwnInputProps) => {
|
||
const theme = useTheme();
|
||
const ownVariants = useQuizViewStore((state) => state.ownVariants);
|
||
const { updateOwnVariant } = useQuizViewStore((state) => state);
|
||
|
||
const ownAnswer = ownVariants[ownVariants.findIndex((v) => v.id === variant.id)]?.variant.answer || "";
|
||
|
||
return largeCheck ? (
|
||
<Box sx={{ overflow: "auto" }}>
|
||
<TextareaAutosize
|
||
placeholder={ownPlaceholder || "|"}
|
||
style={{
|
||
resize: "none",
|
||
width: "100%",
|
||
fontSize: "16px",
|
||
color: ownAnswer.length === 0 ? "ownPlaceholder" : theme.palette.text.primary,
|
||
letterSpacing: "-0.4px",
|
||
wordSpacing: "-3px",
|
||
outline: "0px none",
|
||
backgroundColor: "inherit",
|
||
border: "none",
|
||
//@ts-ignore
|
||
"&::-webkit-scrollbar": {
|
||
width: "4px",
|
||
},
|
||
"&::-webkit-scrollbar-thumb": {
|
||
backgroundColor: theme.palette.primary.main,
|
||
},
|
||
scrollbarColor: theme.palette.primary.main,
|
||
overflow: "auto",
|
||
}}
|
||
value={ownAnswer}
|
||
onClick={(e: React.MouseEvent<HTMLTextAreaElement>) => e.stopPropagation()}
|
||
onChange={(e: React.ChangeEvent<HTMLTextAreaElement>) => {
|
||
updateOwnVariant(variant.id, e.target.value);
|
||
}}
|
||
/>
|
||
</Box>
|
||
) : (
|
||
<Input
|
||
placeholder={ownPlaceholder || "|"}
|
||
sx={{
|
||
backgroundColor: "inherit",
|
||
width: "100%",
|
||
fontSize: "18px",
|
||
color: ownAnswer.length === 0 ? "ownPlaceholder" : theme.palette.text.primary,
|
||
}}
|
||
value={ownAnswer}
|
||
disableUnderline
|
||
onClick={(e: React.MouseEvent<HTMLElement>) => e.stopPropagation()}
|
||
onChange={(e: React.ChangeEvent<HTMLTextAreaElement>) => {
|
||
updateOwnVariant(variant.id, e.target.value);
|
||
}}
|
||
/>
|
||
);
|
||
};
|
||
|
||
export const EmojiVariant = ({
|
||
answer,
|
||
variant,
|
||
index,
|
||
questionId,
|
||
isMulti,
|
||
own,
|
||
questionLargeCheck,
|
||
ownPlaceholder,
|
||
}: EmojiVariantProps) => {
|
||
const { settings } = useQuizSettings();
|
||
const answers = useQuizViewStore((state) => state.answers);
|
||
const { updateAnswer, deleteAnswer } = useQuizViewStore((state) => state);
|
||
const theme = useTheme();
|
||
|
||
const onVariantClick = async (event: MouseEvent<HTMLDivElement>) => {
|
||
event.preventDefault();
|
||
|
||
const variantId = variant.id;
|
||
if (isMulti) {
|
||
const currentAnswer = typeof answer !== "string" ? answer || [] : [];
|
||
|
||
return updateAnswer(
|
||
questionId,
|
||
currentAnswer.includes(variantId)
|
||
? currentAnswer?.filter((item) => item !== variantId)
|
||
: [...currentAnswer, variantId],
|
||
variant.points || 0
|
||
);
|
||
}
|
||
|
||
updateAnswer(questionId, variant.id, variant.points || 0);
|
||
|
||
if (answer === variant.id) {
|
||
deleteAnswer(questionId);
|
||
}
|
||
};
|
||
|
||
return (
|
||
<FormControl
|
||
key={index}
|
||
sx={{
|
||
borderRadius: "12px",
|
||
border: `1px solid`,
|
||
borderColor: answer?.includes(variant.id) ? theme.palette.primary.main : "#9A9AAF",
|
||
overflow: "hidden",
|
||
maxWidth: "317px",
|
||
width: "100%",
|
||
height: "255px",
|
||
background:
|
||
settings.cfg.design && !quizThemes[settings.cfg.theme].isLight
|
||
? "rgba(255,255,255, 0.3)"
|
||
: (settings.cfg.design && quizThemes[settings.cfg.theme].isLight) || quizThemes[settings.cfg.theme].isLight
|
||
? "#FFFFFF"
|
||
: "transparent",
|
||
"&:hover": { borderColor: theme.palette.primary.main },
|
||
}}
|
||
// value={index}
|
||
onClick={onVariantClick}
|
||
>
|
||
<Box
|
||
sx={{
|
||
display: "flex",
|
||
alignItems: "center",
|
||
height: "193px",
|
||
background: "#ffffff",
|
||
cursor: "pointer",
|
||
}}
|
||
>
|
||
<Box
|
||
sx={{
|
||
width: "100%",
|
||
display: "flex",
|
||
justifyContent: "center",
|
||
}}
|
||
>
|
||
{variant.extendedText && <Typography fontSize="100px">{variant.extendedText}</Typography>}
|
||
</Box>
|
||
</Box>
|
||
{own && (
|
||
<Typography
|
||
sx={{
|
||
color: theme.palette.text.primary,
|
||
fontSize: "14px",
|
||
pl: "15px",
|
||
}}
|
||
>
|
||
Введите свой ответ
|
||
</Typography>
|
||
)}
|
||
<FormControlLabel
|
||
key={variant.id}
|
||
sx={{
|
||
textAlign: "center",
|
||
color: theme.palette.text.primary,
|
||
margin: 0,
|
||
padding: "15px",
|
||
display: "flex",
|
||
alignItems: variant.answer.length <= 60 ? "center" : "flex-start",
|
||
position: "relative",
|
||
height: "80px",
|
||
justifyContent: "center",
|
||
"& .MuiFormControlLabel-label": {
|
||
wordBreak: "break-word",
|
||
height: variant.answer.length <= 60 ? "100%" : "60px",
|
||
overflow: "auto",
|
||
"&::-webkit-scrollbar": { width: "4px" },
|
||
"&::-webkit-scrollbar-thumb": {
|
||
backgroundColor: theme.palette.primary.main,
|
||
},
|
||
scrollbarColor: theme.palette.primary.main,
|
||
width: "100%",
|
||
},
|
||
"& .MuiFormControlLabel-label.Mui-disabled": {
|
||
color: theme.palette.text.primary,
|
||
},
|
||
}}
|
||
value={index}
|
||
control={
|
||
isMulti ? (
|
||
<Checkbox
|
||
checked={!!answer?.includes(variant.id)}
|
||
checkedIcon={<RadioCheck color={theme.palette.primary.main} />}
|
||
icon={<RadioIcon />}
|
||
sx={{ position: "absolute", top: "-162px", right: "12px" }}
|
||
/>
|
||
) : (
|
||
<Radio
|
||
checkedIcon={<RadioCheck color={theme.palette.primary.main} />}
|
||
icon={<RadioIcon />}
|
||
sx={{ position: "absolute", top: "-162px", right: "12px" }}
|
||
/>
|
||
)
|
||
}
|
||
label={
|
||
own ? (
|
||
<OwnInput
|
||
questionId={questionId}
|
||
variant={variant}
|
||
largeCheck={questionLargeCheck}
|
||
ownPlaceholder={ownPlaceholder || "|"}
|
||
/>
|
||
) : (
|
||
<Box sx={{ display: "flex", gap: "10px" }}>
|
||
<Typography sx={{ wordBreak: "break-word", lineHeight: "normal" }}>{variant.answer}</Typography>
|
||
</Box>
|
||
)
|
||
}
|
||
/>
|
||
</FormControl>
|
||
);
|
||
};
|