SurveyForm.tsx 3.69 KB
Newer Older
1
import React, { FormEvent, useEffect, useRef, useState } from "react";
Lee SeoYeon's avatar
Lee SeoYeon committed
2
import { useParams } from "react-router-dom";
3
import { surveyApi, answerApi } from "../apis";
Lee SeoYeon's avatar
Lee SeoYeon committed
4
import { catchErrors } from "../helpers";
Jiwon Yoon's avatar
Jiwon Yoon committed
5
import { AnswerType, SurveyType } from "../types";
Lee SeoYeon's avatar
Lee SeoYeon committed
6
import { AQuestion } from "./AQuestion";
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
7

Lee SeoYeon's avatar
0708    
Lee SeoYeon committed
8
export const SurveyForm = () => {
Lee SeoYeon's avatar
Lee SeoYeon committed
9
  let { surveyId } = useParams<{ surveyId: string }>();
10
  const [files, setFiles] = useState<{ questionId: string; file: File }[]>([]);
Lee SeoYeon's avatar
Lee SeoYeon committed
11
12
13
14
15
16
17
18
19
20
  const [error, setError] = useState("");
  const [loading, setLoading] = useState(false);
  const [success, setSuccess] = useState(false);
  const [survey, setSurvey] = useState<SurveyType>({
    _id: surveyId,
    user: {},
    title: "",
    comment: "",
    questions: [],
  });
21
22

  const answer = useRef<AnswerType>({
23
    surveyId: "surveyId",
Jiwon Yoon's avatar
Jiwon Yoon committed
24
    guestId: "",
25
    answers: {},
Jiwon Yoon's avatar
Jiwon Yoon committed
26
  });
Lee SeoYeon's avatar
Lee SeoYeon committed
27
28
29
30
31

  useEffect(() => {
    ansSurvey();
  }, [surveyId]);

32
33
34
35
36
  const addFiles = (oneFile: { questionId: string; file: File }) => {
    if (!files.find((a) => a.questionId === oneFile.questionId)) {
      setFiles([...files, oneFile]);
    }
  };
Lee SeoYeon's avatar
Lee SeoYeon committed
37
38
39
  async function ansSurvey() {
    try {
      if (surveyId) {
40
        const answersurvey: any = await surveyApi.ansSurvey(surveyId);
Lee SeoYeon's avatar
Lee SeoYeon committed
41
        console.log(answersurvey);
42
        const questionIds = answersurvey.questions.map((el: any) => {
Jiwon Yoon's avatar
Jiwon Yoon committed
43
44
45
          return { questionId: el._id, answer: "" };
        });
        console.log(questionIds);
46
        if (answersurvey) {
47
48
49
50
51
          // setResponse({
          //   ...answer,
          //   surveyId: answersurvey._id,
          //   answers: questionIds,
          // });
52
53
54
55
          setSurvey(answersurvey);
          setSuccess(true);
          setError("");
        }
Lee SeoYeon's avatar
Lee SeoYeon committed
56
57
58
59
60
61
62
63
64
65
      } else {
        setLoading(true);
      }
    } catch (error) {
      catchErrors(error, setError);
    } finally {
      setLoading(false);
    }
  }

66
  async function handleSubmit(event: FormEvent) {
Jiwon Yoon's avatar
Jiwon Yoon committed
67
    event.preventDefault();
68
69
    try {
      const formData = new FormData();
70
      formData.append("surveyId", answer.current.surveyId);
71
      formData.append("guestId", "");
72
      formData.append("answers", JSON.stringify(answer.current.answers));
73
74
75
76
77
78
79
80
81
82
83
84
      files.map((f) => {
        formData.append("files", f.file);
      });
      const newAnswer: AnswerType = await answerApi.saveAnswers(formData);
      // console.log(newAnswer);
      setSuccess(true);
      setError("");
    } catch (error) {
      catchErrors(error, setError);
    } finally {
      setLoading(false);
    }
Jiwon Yoon's avatar
Jiwon Yoon committed
85
86
87
  }

  const handleAnswer = () => {
88
89
90
    console.log("handle answer:", answer.current);
    // const newList = [...answer.answers];
    // setResponse({ ...answer, answers: newList });
Jiwon Yoon's avatar
Jiwon Yoon committed
91
92
  };

Lee SeoYeon's avatar
0708    
Lee SeoYeon committed
93
  return (
Jiwon Yoon's avatar
Jiwon Yoon committed
94
    <>
95
      {console.log("rendering survey form", answer.current)}
Jiwon Yoon's avatar
Jiwon Yoon committed
96
97
98
99
100
101
102
103
104
105
106
      <form onSubmit={handleSubmit}>
        <div className="flex flex-col place-items-center">
          <div className="flex flex-col container place-items-center mt-4">
            <p className="font-bold text-4xl text-center m-2">{survey.title}</p>
            <p className="font-bold text-1xl text-center m-2">
              {survey.comment}
            </p>
            {survey.questions.map((question) => {
              return (
                <AQuestion
                  question={question}
107
                  answers={answer.current.answers}
108
                  addFiles={addFiles}
Jiwon Yoon's avatar
Jiwon Yoon committed
109
110
111
112
113
114
115
116
117
118
119
120
121
                  handleAnswer={handleAnswer}
                ></AQuestion>
              );
            })}
            <div>
              <button
                type="submit"
                className="rounded bg-themeColor my-5 py-2 px-5 font-bold text-white"
              >
                제출하기
              </button>
            </div>
          </div>
Lee SeoYeon's avatar
Lee SeoYeon committed
122
        </div>
Jiwon Yoon's avatar
Jiwon Yoon committed
123
124
      </form>
    </>
Lee SeoYeon's avatar
0708    
Lee SeoYeon committed
125
126
  );
};