/** @jsx jsx */ import { jsx, css } from "@emotion/react"; import React, { ChangeEvent } from "react"; import { Question, QuestionType } from "../api/question"; import { selectable } from "../commonStyles"; import create_input from "./InputTypes"; import ErrorMessage from "./ErrorMessage"; const skip_normal_state: Array = [ QuestionType.Radio, QuestionType.Checkbox, QuestionType.Select, QuestionType.Section, QuestionType.Range ]; export type QuestionProp = { question: Question, public_state: Map, scroll_ref: React.RefObject, // eslint-disable-next-line @typescript-eslint/no-explicit-any focus_ref: React.RefObject } class RenderedQuestion extends React.Component { constructor(props: QuestionProp) { super(props); if (props.question.type === QuestionType.TextArea) { this.handler = this.text_area_handler.bind(this); } else { this.handler = this.normal_handler.bind(this); } this.blurHandler = this.blurHandler.bind(this); this.setPublicState("valid", true); this.setPublicState("error", ""); if (!skip_normal_state.includes(props.question.type)) { this.setPublicState("value", ""); } } setPublicState(target: string, value: string | boolean | null, callback?:() => void): void { this.setState({[target]: value}, callback); this.props.public_state.set(target, value); } // This is here to allow dynamic selection between the general handler, and the textarea handler. handler(_: ChangeEvent): void {} // eslint-disable-line blurHandler(): void { if (this.props.question.required) { if (!this.props.public_state.get("value")) { this.setPublicState("error", "Field must be filled."); this.setPublicState("valid", false); } else { this.setPublicState("error", ""); this.setPublicState("valid", true); } } } normal_handler(event: ChangeEvent): void { let target: string; let value: string | boolean; switch (event.target.type) { case "checkbox": target = event.target.name; value = event.target.checked; break; case "radio": // This handles radios and ranges, as they are both based on the same fundamental input type target = "value"; if (event.target.parentElement) { value = event.target.parentElement.innerText.trimEnd(); } else { value = event.target.value; } break; default: target = "value"; value = event.target.value; } this.setPublicState(target, value); // Toggle checkbox class if (event.target.type == "checkbox" && event.target.parentElement !== null) { event.target.parentElement.classList.toggle("unselected"); event.target.parentElement.classList.toggle("selected"); } const options: string | string[] = this.props.question.data["options"]; switch (event.target.type) { case "text": this.setPublicState("valid", true); break; case "checkbox": // We need to check this here, because checkbox doesn't have onBlur if (this.props.question.required && typeof options !== "string") { const keys: string[] = []; options.forEach((val, index) => { keys.push(`${("000" + index).slice(-4)}. ${val}`); }); if (keys.every(v => !this.props.public_state.get(v))) { this.setPublicState("error", "Field must be filled."); this.setPublicState("valid", false); } else { this.setPublicState("error", ""); this.setPublicState("valid", true); } } break; } } text_area_handler(event: ChangeEvent): void { // We will validate again when focusing out. this.setPublicState("valid", true); this.setPublicState("error", ""); this.setPublicState("value", event.target.value); } validateField(): void { if (!this.props.question.required) { return; } let invalid = false; const options: string | string[] = this.props.question.data["options"]; switch (this.props.question.type) { case QuestionType.TextArea: case QuestionType.ShortText: if (this.props.public_state.get("value") === "") { invalid = true; } break; case QuestionType.Select: case QuestionType.Range: case QuestionType.Radio: if (!this.props.public_state.get("value")) { invalid = true; } break; case QuestionType.Checkbox: if (typeof options !== "string") { const keys: string[] = []; options.forEach((val, index) => { keys.push(`${("000" + index).slice(-4)}. ${val}`); }); if (keys.every(v => !this.props.public_state.get(v))) { invalid = true; } } break; } if (invalid) { this.setPublicState("error", "Field must be filled."); this.setPublicState("valid", false); } else { this.setPublicState("error", ""); this.setPublicState("valid", true); } } componentDidMount(): void { // Initialize defaults for complex and nested fields const options: string | string[] = this.props.question.data["options"]; if (this.props.public_state.size === 0) { switch (this.props.question.type) { case QuestionType.Checkbox: if (typeof options === "string") { return; } options.forEach((option, index) => { this.setPublicState(`${("000" + index).slice(-4)}. ${option}`, false); }); break; case QuestionType.Range: case QuestionType.Radio: case QuestionType.Select: this.setPublicState("value", null); break; } } } render(): JSX.Element { const question = this.props.question; if (question.type === QuestionType.Section) { const styles = css` h1 { margin-bottom: 0; } h3 { margin-top: 0; } h1, h3 { text-align: center; padding: 0 2rem; } @media (max-width: 500px) { h1, h3 { padding: 0; } } `; return

{question.name}

{ question.data["text"] ?

{question.data["text"]}

: "" }
; } else { const requiredStarStyles = css` span { display: none; } .required { display: inline-block; position: relative; color: red; top: -0.2rem; margin-left: 0.2rem; } `; let valid = true; if (!this.props.public_state.get("valid")) { valid = false; } const rawError = this.props.public_state.get("error"); let error = ""; if (typeof rawError === "string") { error = rawError; } return

{question.name}*

{ create_input(this.props, this.handler, this.blurHandler, this.props.focus_ref) }
; } } } export default RenderedQuestion;