frontPanel/src/pages/ViewPublicationPage/questions/Select.tsx
2023-12-11 16:07:41 +03:00

42 lines
1.1 KiB
TypeScript

import { Box, Typography } from "@mui/material";
import { Select as SelectComponent } from "../../../pages/Questions/Select";
import { useQuizViewStore, updateAnswer } from "@root/quizView";
import type { QuizQuestionSelect } from "../../../model/questionTypes/select";
type SelectProps = {
currentQuestion: QuizQuestionSelect;
};
export const Select = ({ currentQuestion }: SelectProps) => {
const { answers } = useQuizViewStore();
const { answer } =
answers.find(
({ questionId }) => questionId === currentQuestion.content.id
) ?? {};
return (
<Box>
<Typography variant="h5">{currentQuestion.title}</Typography>
<Box
sx={{
display: "flex",
flexDirection: "column",
width: "100%",
marginTop: "20px",
}}
>
<SelectComponent
activeItemIndex={answer ? Number(answer) : -1}
items={currentQuestion.content.variants.map(({ answer }) => answer)}
onChange={(_, value) => {
updateAnswer(currentQuestion.content.id, String(value));
}}
/>
</Box>
</Box>
);
};