frontPanel/src/pages/ViewPublicationPage/questions/Select.tsx

39 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={Number(answer) || 0}
items={currentQuestion.content.variants.map(({ answer }) => answer)}
onChange={(_, value) => {
updateAnswer(currentQuestion.content.id, String(value));
}}
/>
</Box>
</Box>
);
};