Question.tsx 5.77 KB
Newer Older
Yoon, Daeki's avatar
Yoon, Daeki committed
1
2
import React, { useState } from "react";
import { BasicQuestionType } from "../types";
Jiwon Yoon's avatar
Jiwon Yoon committed
3
import { questionApi } from "../apis";
4
import { EssayForm } from "./EssayForm";
Jiwon Yoon's avatar
Jiwon Yoon committed
5
6
7
8
9
import { CheckboxForm } from "./CheckboxForm";
import { RadioForm } from "./RadioForm";
import { DropdownForm } from "./DropdownForm";
import { FileForm } from "./FileForm";
import { RatingForm } from "./RatingForm";
Jiwon Yoon's avatar
Jiwon Yoon committed
10
import { DateForm } from "./DateForm";
Yoon, Daeki's avatar
Yoon, Daeki committed
11
import { QUESTION_TYPES } from "../commons";
12
13
14

type Props = {
  element: BasicQuestionType;
Jiwon Yoon's avatar
Jiwon Yoon committed
15
16
  handleQuestion: (id: string) => void;
  deleteQuestion: (id: string) => void;
17
18
};

Jiwon Yoon's avatar
Jiwon Yoon committed
19
20
21
22
23
export const Question = ({
  element,
  handleQuestion,
  deleteQuestion,
}: Props) => {
Jiwon Yoon's avatar
Jiwon Yoon committed
24
  const [save, setSave] = useState(true);
Jiwon Yoon's avatar
Jiwon Yoon committed
25
  async function handleEditComplete() {
Jiwon Yoon's avatar
Jiwon Yoon committed
26
27
28
29
30
    try {
      const newQuestion: BasicQuestionType = await questionApi.updateQuestion(
        element
      );
      console.log(newQuestion);
Jiwon Yoon's avatar
Jiwon Yoon committed
31
      setSave(true);
Jiwon Yoon's avatar
Jiwon Yoon committed
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
      // setSuccess(true);
      // setError("");
    } catch (error) {
      console.log("에러발생");
      // catchErrors(error, setError)
    } finally {
      // setLoading(false);
    }
  }

  function handleSelect(event: React.ChangeEvent<HTMLSelectElement>) {
    const selectedType = event.currentTarget.value;
    console.log(selectedType);
    if (
      selectedType === "radio" ||
      selectedType === "dropdown" ||
      selectedType === "checkbox"
    ) {
      element.content = {
        choices: [
Jiwon Yoon's avatar
Jiwon Yoon committed
52
53
54
          { text: "", value: 0 },
          { text: "", value: 1 },
          { text: "", value: 2 },
Jiwon Yoon's avatar
Jiwon Yoon committed
55
56
57
58
59
60
        ],
      };
    } else if (selectedType === "essay") {
      element.content = { choices: [] };
    } else if (selectedType === "rating") {
      element.content = {
Jiwon Yoon's avatar
Jiwon Yoon committed
61
62
        minRateDescription: "",
        maxRateDescription: "",
Jiwon Yoon's avatar
Jiwon Yoon committed
63
        choices: [
Jiwon Yoon's avatar
Jiwon Yoon committed
64
65
66
          { text: "", value: 0 },
          { text: "", value: 1 },
          { text: "", value: 2 },
Jiwon Yoon's avatar
Jiwon Yoon committed
67
68
69
70
71
72
73
74
75
76
77
78
        ],
      };
    }
    element.type = selectedType;
    handleQuestion(element._id);
  }

  function handleQuestionInfo(event: React.ChangeEvent<HTMLInputElement>) {
    const { name, value } = event.currentTarget;
    element[name] = value;
    handleQuestion(element._id);
  }
79
80
81
82

  function getContent(element: BasicQuestionType) {
    switch (element.type) {
      case "essay":
Jiwon Yoon's avatar
Jiwon Yoon committed
83
        return <EssayForm element={element} save={save} />;
84
      case "radio":
Jiwon Yoon's avatar
Jiwon Yoon committed
85
86
87
88
        return (
          <RadioForm
            handleQuestion={handleQuestion}
            element={element}
Jiwon Yoon's avatar
Jiwon Yoon committed
89
            save={save}
Jiwon Yoon's avatar
Jiwon Yoon committed
90
91
          />
        );
92
      case "checkbox":
Jiwon Yoon's avatar
Jiwon Yoon committed
93
        return (
Jiwon Yoon's avatar
Jiwon Yoon committed
94
95
96
          <CheckboxForm
            handleQuestion={handleQuestion}
            element={element}
Jiwon Yoon's avatar
Jiwon Yoon committed
97
            save={save}
Jiwon Yoon's avatar
Jiwon Yoon committed
98
          />
Jiwon Yoon's avatar
Jiwon Yoon committed
99
        );
100
      case "dropdown":
Jiwon Yoon's avatar
Jiwon Yoon committed
101
        return (
Jiwon Yoon's avatar
Jiwon Yoon committed
102
103
104
          <DropdownForm
            handleQuestion={handleQuestion}
            element={element}
Jiwon Yoon's avatar
Jiwon Yoon committed
105
            save={save}
Jiwon Yoon's avatar
Jiwon Yoon committed
106
          />
Jiwon Yoon's avatar
Jiwon Yoon committed
107
        );
108
      case "file":
Jiwon Yoon's avatar
Jiwon Yoon committed
109
        return <FileForm element={element} save={save} />;
110
      case "rating":
Jiwon Yoon's avatar
Jiwon Yoon committed
111
112
113
114
        return (
          <RatingForm
            handleQuestion={handleQuestion}
            element={element}
Jiwon Yoon's avatar
Jiwon Yoon committed
115
            save={save}
Jiwon Yoon's avatar
Jiwon Yoon committed
116
117
          />
        );
Jiwon Yoon's avatar
Jiwon Yoon committed
118
119
      case "date":
        return <DateForm />;
120
121
122
123
      default:
        return <></>;
    }
  }
124
125
126
127
128
129
130
131
132
  const handleRequired = (event: React.ChangeEvent<HTMLInputElement>) => {
    const { checked, value } = event.currentTarget;
    element[value] = checked;
    handleQuestion(element._id);
  };
  const handleDelete = () => {
    deleteQuestion(element._id);
  };
  const handleEditClick = () => {
Jiwon Yoon's avatar
Jiwon Yoon committed
133
    setSave(false);
134
  };
135
  return (
Jiwon Yoon's avatar
Jiwon Yoon committed
136
    <div
Jiwon Yoon's avatar
Jiwon Yoon committed
137
      style={{ borderColor: save ? "#58ACFA" : "red" }}
Jiwon Yoon's avatar
Jiwon Yoon committed
138
139
      className="flex flex-col container w-4/5 h-auto border-2 items-center m-3 py-2"
    >
140
141
142
143
144
145
      <div className="flex h-16 w-full place-content-between items-center">
        <input
          type="text"
          name="title"
          id={element._id}
          className="text-xl font-bold ml-6 border-b-2 w-1/2"
Jiwon Yoon's avatar
Jiwon Yoon committed
146
147
148
          placeholder={"Question Title"}
          value={element.title}
          onChange={handleQuestionInfo}
Jiwon Yoon's avatar
Jiwon Yoon committed
149
          disabled={save}
150
151
        ></input>
        <select
Jiwon Yoon's avatar
Jiwon Yoon committed
152
          id={element._id}
153
          name="type"
Jiwon Yoon's avatar
Jiwon Yoon committed
154
          onChange={handleSelect}
155
          disabled={save}
156
157
          className="w-36 bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-themeColor w-full mr-3 p-2.5"
        >
Yoon, Daeki's avatar
Yoon, Daeki committed
158
          {Array.from(QUESTION_TYPES.entries()).map(([key, value]) => (
Jiwon Yoon's avatar
Jiwon Yoon committed
159
            <option
160
              key={key}
Jiwon Yoon's avatar
Jiwon Yoon committed
161
162
163
164
165
166
              id={element._id}
              value={key}
              selected={key === element.type}
            >
              {value}
            </option>
167
168
169
170
171
172
173
174
175
176
          ))}
        </select>
      </div>
      <div className="flex w-full justify-center">
        <input
          type="text"
          name="comment"
          id={element._id}
          className="border w-11/12"
          placeholder="질문에 대한 설명을 입력해주세요"
Jiwon Yoon's avatar
Jiwon Yoon committed
177
178
          value={element.comment}
          onChange={handleQuestionInfo}
Jiwon Yoon's avatar
Jiwon Yoon committed
179
          disabled={save}
180
181
182
183
        ></input>
      </div>
      {getContent(element)}

Jiwon Yoon's avatar
Jiwon Yoon committed
184
      <div className="place-self-end py-2">
185
186
187
188
189
        <input
          type="checkbox"
          id="isRequired"
          value="isRequired"
          onChange={handleRequired}
Jiwon Yoon's avatar
Jiwon Yoon committed
190
          disabled={save}
191
192
193
          checked={element.isRequired}
        />
        <label htmlFor="isRequired" className="px-1">
Jiwon Yoon's avatar
Jiwon Yoon committed
194
          필수
195
        </label>
Jiwon Yoon's avatar
Jiwon Yoon committed
196
197
198
        <button type="button" className="px-1" onClick={handleDelete}>
          삭제
        </button>
Jiwon Yoon's avatar
Jiwon Yoon committed
199
        {save ? (
Jiwon Yoon's avatar
Jiwon Yoon committed
200
          <button type="button" className="px-1" onClick={handleEditClick}>
Jiwon Yoon's avatar
Jiwon Yoon committed
201
202
            수정하기
          </button>
Jiwon Yoon's avatar
Jiwon Yoon committed
203
204
205
206
        ) : (
          <button type="button" className="px-1" onClick={handleEditComplete}>
            수정완료
          </button>
Jiwon Yoon's avatar
Jiwon Yoon committed
207
        )}
208
209
210
211
      </div>
    </div>
  );
};