AnswerSurveyForm.tsx 4.34 KB
Newer Older
1
import React, { FormEvent, useEffect, useRef, useState } from "react";
2
import { Link, useNavigate } from "react-router-dom";
Lee SeoYeon's avatar
Lee SeoYeon committed
3
import { useParams } from "react-router-dom";
4
import { surveyApi, answerApi } from "../apis";
Lee SeoYeon's avatar
Lee SeoYeon committed
5
import { catchErrors } from "../helpers";
Jiwon Yoon's avatar
Jiwon Yoon committed
6
import { Question } from "../questions";
Yoon, Daeki's avatar
Yoon, Daeki committed
7
import { AnswerSurveyType, AnswerType, SurveyType } from "../types";
Lee SeoYeon's avatar
Lee SeoYeon committed
8
import { AQuestion } from "./AQuestion";
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
9

10
export const AnswerSurveyForm = () => {
Lee SeoYeon's avatar
Lee SeoYeon committed
11
  let { surveyId } = useParams<{ surveyId: string }>();
12
  const [files, setFiles] = useState<{ questionId: string; file: File }[]>([]);
Jiwon Yoon's avatar
Jiwon Yoon committed
13
  const [requiredErrorMessage, setRequiredErrorMessage] = useState("");
Lee SeoYeon's avatar
Lee SeoYeon committed
14
15
16
  const [error, setError] = useState("");
  const [loading, setLoading] = useState(false);
  const [success, setSuccess] = useState(false);
17
  const navigate = useNavigate();
Lee SeoYeon's avatar
Lee SeoYeon committed
18
  const [survey, setSurvey] = useState<SurveyType>({
Yoon, Daeki's avatar
Yoon, Daeki committed
19
    _id: surveyId || "",
Lee SeoYeon's avatar
Lee SeoYeon committed
20
21
22
23
24
    user: {},
    title: "",
    comment: "",
    questions: [],
  });
25

Yoon, Daeki's avatar
Yoon, Daeki committed
26
  const answerSurvey = useRef<AnswerSurveyType>({
Jiwon Yoon's avatar
Jiwon Yoon committed
27
28
29
30
31
    _id: "surveyId",
    user: {},
    title: "",
    comment: "",
    questions: [],
Jiwon Yoon's avatar
Jiwon Yoon committed
32
  });
Lee SeoYeon's avatar
Lee SeoYeon committed
33

Jiwon Yoon's avatar
Jiwon Yoon committed
34
35
36
  useEffect(() => {
    ansSurvey();
  }, [surveyId]);
Yoon, Daeki's avatar
Yoon, Daeki committed
37

Jiwon Yoon's avatar
Jiwon Yoon committed
38
  // const isSurvey = localStorage.getItem(`survey_${surveyId}`);
Yoon, Daeki's avatar
Yoon, Daeki committed
39

Jiwon Yoon's avatar
Jiwon Yoon committed
40
41
42
43
44
  // if (isSurvey) {
  //   console.log("object", isSurvey);
  //   alert("제출한 설문조사입니다");
  //   navigate("/");
  // }
Jiwon Yoon's avatar
Jiwon Yoon committed
45

46
47
48
49
50
  const addFiles = (oneFile: { questionId: string; file: File }) => {
    if (!files.find((a) => a.questionId === oneFile.questionId)) {
      setFiles([...files, oneFile]);
    }
  };
Yoon, Daeki's avatar
Yoon, Daeki committed
51

Lee SeoYeon's avatar
Lee SeoYeon committed
52
53
54
  async function ansSurvey() {
    try {
      if (surveyId) {
Jiwon Yoon's avatar
Jiwon Yoon committed
55
56
57
58
59
60
        const getSurvey: any = await surveyApi.ansSurvey(surveyId);
        console.log("survey가져옴ㅎㅎ", getSurvey);
        if (getSurvey) {
          answerSurvey.current._id = getSurvey._id;
          answerSurvey.current.questions = getSurvey.questions;
          setSurvey(getSurvey);
61
62
63
          setSuccess(true);
          setError("");
        }
Lee SeoYeon's avatar
Lee SeoYeon committed
64
65
66
67
68
69
70
71
72
73
      } else {
        setLoading(true);
      }
    } catch (error) {
      catchErrors(error, setError);
    } finally {
      setLoading(false);
    }
  }

74
  async function handleSubmit(event: FormEvent) {
Jiwon Yoon's avatar
Jiwon Yoon committed
75
    event.preventDefault();
Jiwon Yoon's avatar
Jiwon Yoon committed
76
    const answers = answerSurvey.current.questions.map((q: any) => {
Jiwon Yoon's avatar
Jiwon Yoon committed
77
      return { questionId: q._id, answer: q.answer, type: q.type };
Jiwon Yoon's avatar
Jiwon Yoon committed
78
79
80
81
82
83
84
85
86
87
    });
    const requiredErrorQ = answerSurvey.current.questions.find(
      (q: any) => q.isRequired && q.isRequired !== q.requiredCheck
    );
    if (requiredErrorQ) {
      alert("필수질문에 응답하지 않으셨습니다.");
    } else {
      try {
        const formData = new FormData();
        formData.append("surveyId", answerSurvey.current._id);
Jiwon Yoon's avatar
Jiwon Yoon committed
88
        formData.append("guestId", "guest1");
Jiwon Yoon's avatar
Jiwon Yoon committed
89
90
91
92
93
        formData.append("answers", JSON.stringify(answers));
        files.map((f) => {
          formData.append("uploadFiles", f.file);
        });
        const newAnswer: AnswerType = await answerApi.saveAnswers(formData);
Jiwon Yoon's avatar
Jiwon Yoon committed
94
        console.log(newAnswer);
95
        localStorage.setItem(`survey_${surveyId}`, surveyId ?? "");
Jiwon Yoon's avatar
Jiwon Yoon committed
96
        // alert("제출되었습니다");
97

Jiwon Yoon's avatar
Jiwon Yoon committed
98
99
100
101
102
103
104
        setSuccess(true);
        setError("");
      } catch (error) {
        catchErrors(error, setError);
      } finally {
        setLoading(false);
      }
105
    }
Jiwon Yoon's avatar
Jiwon Yoon committed
106
107
  }

Lee SeoYeon's avatar
0708    
Lee SeoYeon committed
108
  return (
Jiwon Yoon's avatar
Jiwon Yoon committed
109
    <>
Jiwon Yoon's avatar
Jiwon Yoon committed
110
      {console.log("rendering survey form", answerSurvey.current)}
Jiwon Yoon's avatar
Jiwon Yoon committed
111
112
113
114
115
116
117
      <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>
Jiwon Yoon's avatar
Jiwon Yoon committed
118
            {survey.questions.map((question, index) => {
Jiwon Yoon's avatar
Jiwon Yoon committed
119
120
              return (
                <AQuestion
Yoon, Daeki's avatar
Yoon, Daeki committed
121
                  key={question._id}
Jiwon Yoon's avatar
Jiwon Yoon committed
122
                  question={question}
Jiwon Yoon's avatar
Jiwon Yoon committed
123
                  answerQuestion={answerSurvey.current.questions[index]}
124
                  addFiles={addFiles}
Jiwon Yoon's avatar
Jiwon Yoon committed
125
126
127
128
129
130
131
132
133
134
135
136
                ></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
137
        </div>
Jiwon Yoon's avatar
Jiwon Yoon committed
138
139
      </form>
    </>
Lee SeoYeon's avatar
0708    
Lee SeoYeon committed
140
141
  );
};