SurveyForm.tsx 3.6 KB
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
import React, { FormEvent, useEffect, 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, setResponse] = useState<AnswerType>({
    surveyId: "surveyId",
Jiwon Yoon's avatar
Jiwon Yoon committed
23
24
25
    guestId: "",
    answers: [{ questionId: "", answer: "" }],
  });
Lee SeoYeon's avatar
Lee SeoYeon committed
26
27
28
29
30

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

31
32
33
34
35
  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
36
37
38
  async function ansSurvey() {
    try {
      if (surveyId) {
39
        const answersurvey: any = await surveyApi.ansSurvey(surveyId);
Lee SeoYeon's avatar
Lee SeoYeon committed
40
        console.log(answersurvey);
41
        const questionIds = answersurvey.questions.map((el: any) => {
Jiwon Yoon's avatar
Jiwon Yoon committed
42
43
44
          return { questionId: el._id, answer: "" };
        });
        console.log(questionIds);
45
46
47
48
49
50
51
52
53
54
        if (answersurvey) {
          setResponse({
            ...answer,
            surveyId: answersurvey._id,
            answers: questionIds,
          });
          setSurvey(answersurvey);
          setSuccess(true);
          setError("");
        }
Lee SeoYeon's avatar
Lee SeoYeon committed
55
56
57
58
59
60
61
62
63
64
      } else {
        setLoading(true);
      }
    } catch (error) {
      catchErrors(error, setError);
    } finally {
      setLoading(false);
    }
  }

65
  async function handleSubmit(event: FormEvent) {
Jiwon Yoon's avatar
Jiwon Yoon committed
66
    event.preventDefault();
67
68
69
70
71
72
    try {
      const formData = new FormData();
      formData.append("surveyId", answer.surveyId);
      formData.append("guestId", "");
      formData.append("answers", JSON.stringify(answer.answers));
      files.map((f) => {
Jiwon Yoon's avatar
Jiwon Yoon committed
73
        formData.append("uploadFiles", f.file);
74
75
76
77
78
79
80
81
82
83
      });
      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
84
85
86
  }

  const handleAnswer = () => {
87
88
    const newList = [...answer.answers];
    setResponse({ ...answer, answers: newList });
Jiwon Yoon's avatar
Jiwon Yoon committed
89
90
  };

Lee SeoYeon's avatar
0708    
Lee SeoYeon committed
91
  return (
Jiwon Yoon's avatar
Jiwon Yoon committed
92
    <>
93
      {console.log(answer)}
Jiwon Yoon's avatar
Jiwon Yoon committed
94
95
96
97
98
99
100
101
102
103
104
      <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}
105
106
                  response={answer}
                  addFiles={addFiles}
Jiwon Yoon's avatar
Jiwon Yoon committed
107
108
109
110
111
112
113
114
115
116
117
118
119
                  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
120
        </div>
Jiwon Yoon's avatar
Jiwon Yoon committed
121
122
      </form>
    </>
Lee SeoYeon's avatar
0708    
Lee SeoYeon committed
123
124
  );
};