
fix some type errors rename quiz question count field remove some unused code remove some unused imports
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
import { QuizQuestionText } from "@frontend/squzanswerer";
|
|
import HelpQuestions from "../helpQuestions";
|
|
import SettingTextField from "./settingTextField";
|
|
import UploadImage from "../UploadImage";
|
|
|
|
interface Props {
|
|
switchState: string;
|
|
question: QuizQuestionText;
|
|
}
|
|
|
|
export default function SwitchTextField({ switchState = "setting", question }: Props) {
|
|
switch (switchState) {
|
|
case "setting":
|
|
return (
|
|
<SettingTextField
|
|
questionId={question.id}
|
|
isRequired={question.content.required}
|
|
isAutofill={question.content.autofill}
|
|
answerType={question.content.answerType}
|
|
/>
|
|
);
|
|
case "image":
|
|
return (
|
|
<UploadImage
|
|
question={question}
|
|
cropAspectRatio={{ width: 400, height: 300 }}
|
|
/>
|
|
);
|
|
case "help":
|
|
return (
|
|
<HelpQuestions
|
|
questionId={question.id}
|
|
hintText={question.content.hint.text}
|
|
hintVideo={question.content.hint.video}
|
|
/>
|
|
);
|
|
default:
|
|
return <></>;
|
|
}
|
|
}
|