frontAnswerer/lib/components/ViewPublicationPage/questions/Variant/VariantItem.tsx

217 lines
6.2 KiB
TypeScript
Raw Normal View History

2025-05-01 13:15:54 +00:00
import { useQuizStore } from "@/stores/useQuizStore";
import type { QuestionVariant } from "@model/questionTypes/shared";
import {
Checkbox,
FormControlLabel,
Input,
TextField as MuiTextField,
Radio,
TextFieldProps,
TextareaAutosize,
Typography,
useTheme,
} from "@mui/material";
import { useQuizViewStore } from "@stores/quizView";
2024-04-23 14:45:49 +00:00
import RadioCheck from "@ui_kit/RadioCheck";
import RadioIcon from "@ui_kit/RadioIcon";
import { quizThemes } from "@utils/themes/Publication/themePublication";
2024-04-23 14:45:49 +00:00
import type { FC, MouseEvent } from "react";
2025-04-20 15:16:22 +00:00
import { useTranslation } from "react-i18next";
2024-04-23 14:45:49 +00:00
const TextField = MuiTextField as unknown as FC<TextFieldProps>;
interface OwnInputProps {
questionId: string;
variant: QuestionVariant;
largeCheck: boolean;
ownPlaceholder: string;
}
const OwnInput = ({ questionId, variant, largeCheck, ownPlaceholder }: OwnInputProps) => {
const theme = useTheme();
2025-04-20 15:16:22 +00:00
const ownVariants = useQuizViewStore((state) => state.ownVariants);
const { updateOwnVariant } = useQuizViewStore((state) => state);
const ownAnswer = ownVariants[ownVariants.findIndex((v) => v.id === variant.id)]?.variant.answer || "";
2024-12-22 11:49:56 +00:00
return largeCheck ? (
<TextareaAutosize
2024-10-08 20:14:02 +00:00
placeholder={ownPlaceholder || "|"}
style={{
resize: "none",
width: "100%",
fontSize: "16px",
2024-11-24 23:42:33 +00:00
color: ownAnswer.length === 0 ? "ownPlaceholder" : theme.palette.text.primary,
letterSpacing: "-0.4px",
wordSpacing: "-3px",
outline: "0px none",
2024-10-08 20:14:02 +00:00
backgroundColor: "inherit",
border: "none",
//@ts-ignore
"&::-webkit-scrollbar": {
width: "4px",
},
"&::-webkit-scrollbar-thumb": {
2024-09-26 19:12:11 +00:00
backgroundColor: theme.palette.primary.main,
},
2024-09-26 19:12:11 +00:00
scrollbarColor: theme.palette.primary.main,
}}
value={ownAnswer}
onClick={(e: React.MouseEvent<HTMLTextAreaElement>) => e.stopPropagation()}
onChange={(e: React.ChangeEvent<HTMLTextAreaElement>) => {
updateOwnVariant(variant.id, e.target.value);
}}
/>
) : (
<Input
2024-10-08 20:14:02 +00:00
placeholder={ownPlaceholder || "|"}
sx={{
2024-10-08 20:14:02 +00:00
backgroundColor: "inherit",
width: "100%",
fontSize: "18px",
2024-11-24 23:42:33 +00:00
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);
}}
/>
);
};
2024-04-23 14:45:49 +00:00
export const VariantItem = ({
questionId,
isMulti,
2024-04-23 14:45:49 +00:00
variant,
answer,
index,
own = false,
questionLargeCheck,
ownPlaceholder,
2024-04-23 14:45:49 +00:00
}: {
isMulti: boolean;
questionId: string;
2024-04-23 14:45:49 +00:00
variant: QuestionVariant;
answer: string | string[] | undefined;
index: number;
own: boolean;
questionLargeCheck: boolean;
ownPlaceholder: string;
2024-04-23 14:45:49 +00:00
}) => {
2025-05-01 13:15:54 +00:00
const { settings } = useQuizStore();
2024-04-23 14:45:49 +00:00
const theme = useTheme();
const { updateAnswer, deleteAnswer } = useQuizViewStore((state) => state);
2025-04-20 15:16:22 +00:00
const { t } = useTranslation();
2024-04-23 14:45:49 +00:00
const sendVariant = async (event: MouseEvent<HTMLLabelElement>) => {
event.preventDefault();
const variantId = variant.id;
2024-04-23 14:45:49 +00:00
if (isMulti) {
2024-04-23 14:45:49 +00:00
const currentAnswer = typeof answer !== "string" ? answer || [] : [];
return updateAnswer(
questionId,
currentAnswer.includes(variantId)
? currentAnswer?.filter((item) => item !== variantId)
: [...currentAnswer, variantId],
variant.points || 0
2024-04-23 14:45:49 +00:00
);
}
updateAnswer(questionId, variantId, answer === variantId ? 0 : variant.points || 0);
2024-04-23 14:45:49 +00:00
if (answer === variantId) {
deleteAnswer(questionId);
2024-04-23 14:45:49 +00:00
}
};
return (
<FormControlLabel
key={variant.id}
sx={{
position: "relative",
2024-04-23 14:45:49 +00:00
margin: "0",
mt: own ? "10px" : "0",
2024-04-23 14:45:49 +00:00
borderRadius: "12px",
color: theme.palette.text.primary,
padding: "15px",
border: `1px solid`,
2024-05-31 16:41:18 +00:00
borderColor: answer === variant.id ? theme.palette.primary.main : "#9A9AAF",
2024-04-23 14:45:49 +00:00
backgroundColor: settings.cfg.design
? quizThemes[settings.cfg.theme].isLight
? "#FFFFFF"
: "rgba(255,255,255, 0.3)"
: quizThemes[settings.cfg.theme].isLight
2024-05-31 16:41:18 +00:00
? "white"
: theme.palette.background.default,
2024-04-23 14:45:49 +00:00
display: "flex",
maxWidth: "685px",
maxHeight: "85px",
justifyContent: "space-between",
width: "100%",
"&:hover": { borderColor: theme.palette.primary.main },
"&.MuiFormControl-root": { width: "100%" },
"& .MuiFormControlLabel-label": {
width: "100%",
maxHeight: "100%",
2024-04-23 14:45:49 +00:00
wordBreak: "break-word",
height: variant.answer.length <= 60 ? undefined : "60px",
overflow: "auto",
lineHeight: "normal",
"&::-webkit-scrollbar": { width: "4px" },
"&::-webkit-scrollbar-thumb": { backgroundColor: theme.palette.primary.main },
2024-09-26 19:12:11 +00:00
scrollbarColor: theme.palette.primary.main,
2024-04-23 14:45:49 +00:00
},
"& .MuiFormControlLabel-label.Mui-disabled": {
color: theme.palette.text.primary,
},
}}
value={index}
labelPlacement="start"
control={
isMulti ? (
<Radio
2024-04-23 14:45:49 +00:00
checked={!!answer?.includes(variant.id)}
checkedIcon={<RadioCheck color={theme.palette.primary.main} />}
icon={<RadioIcon />}
2024-04-23 14:45:49 +00:00
/>
) : (
<Radio
checkedIcon={<RadioCheck color={theme.palette.primary.main} />}
icon={<RadioIcon />}
/>
2024-04-23 14:45:49 +00:00
)
}
label={
own ? (
<>
<Typography
sx={{
2024-10-08 20:14:02 +00:00
color: theme.palette.text.primary,
fontSize: "14px",
position: "absolute",
top: "-23px",
}}
>
2025-04-20 15:16:22 +00:00
{t("Enter your answer")}
</Typography>
<OwnInput
questionId={questionId}
variant={variant}
largeCheck={questionLargeCheck}
2024-10-08 20:14:02 +00:00
ownPlaceholder={ownPlaceholder || "|"}
/>
</>
) : (
variant.answer
)
}
2024-04-23 14:45:49 +00:00
onClick={sendVariant}
/>
);
};