EditSurvey.tsx 2.61 KB
Newer Older
1
import React, { ChangeEvent, useState } from "react";
2
import { Navigate, useLocation, useParams } from "react-router-dom";
Yoon, Daeki's avatar
Yoon, Daeki committed
3
import { surveyApi } from "../apis";
4
import type { CreateQuestionData, IQuestionData, ISurvey } from "../types";
Yoon, Daeki's avatar
Yoon, Daeki committed
5
import { ModifySurvey } from "./ModifySurvey";
6
import { useSurvey } from "../layouts/SurveyLayout";
7
8
import { SpinnerIcon } from "../icons";
import { ModifySurveyView } from "./ModifySurveyView";
Yoon, Daeki's avatar
Yoon, Daeki committed
9
10

export const EditSurvey = () => {
11
  const { survey, update } = useSurvey();
12
13
14
15
16
17
18
  // const [survey, setSurvey] = useState<ISurvey>(surveyData);
  // const [questions, setQuestions] = useState<CreateQuestionData[]>(() => {
  //   const questions = survey.questions;
  //   return questions.map((question) => ({ ...question, isEditing: false }));
  // });

  const questions = survey.questions;
Yoon, Daeki's avatar
Yoon, Daeki committed
19

20
  console.log("survey", survey);
21
  console.log("questions", questions);
Yoon, Daeki's avatar
Yoon, Daeki committed
22

23
24
25
26
27
  // const update = async (surveyData: ISurvey) => {
  //   const result = await surveyApi.updateSurvey(surveyData);
  //   return result;
  // };

28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
  const handleTitle = (title: string) => {
    console.log("title in handle title:", title);
    // survey.title = title
    update({ ...survey, title: title });
  };

  /**
   * 수정된 질문을 입력받아 기존 질문을 대체합니다.
   * @param question 수정할 질문
   * @returns 없음
   */
  const updateQuestion = (question: CreateQuestionData) => {
    const index = questions.findIndex((q) => q._id === question._id);
    if (index < 0) {
      return;
    }
    questions[index] = question;
    console.log("questions in update question:", questions);
    // setQuestions([...questions]);
    survey.questions = questions;
    update(survey);
  };

  const addQuestion = () => {
    const question: CreateQuestionData = {
      _id: Math.random().toString(),
      order: questions.length,
      type: "singletext",
      title: "",
      comment: "",
      isRequired: false,
      content: { choices: [] },
      isEditing: true,
    };
    // setQuestions([...questions, question]);
  };

  async function deleteQuestion(id: string) {
    const delQuestions = questions.filter((question) => question._id !== id);
    // setQuestions(delQuestions);
  }

70
  if (!survey) {
71
72
73
74
75
    return (
      <div className="flex justify-center mt-5">
        <SpinnerIcon className="animate-spin h-10 w-10 mr-1 bg-white text-slate-500" />
      </div>
    );
76
77
  }

78
79
80
81
82
83
84
85
86
87
88
  return (
    <ModifySurveyView
      questions={questions}
      survey={survey}
      addQuestion={addQuestion}
      deleteQuestion={deleteQuestion}
      handleQuestion={updateQuestion}
      handleTitle={handleTitle}
      callApi={update}
    />
  );
Yoon, Daeki's avatar
Yoon, Daeki committed
89
};