RadioForm.tsx 1.92 KB
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
import React, { useState } from "react";
2
3
4
5
import { RadioType } from "../types";

type Props = {
  element: RadioType;
Jiwon Yoon's avatar
Jiwon Yoon committed
6
  handleQuestion: (id: string) => void;
Yoon, Daeki's avatar
Yoon, Daeki committed
7
  isEditing: boolean;
8
9
};

Yoon, Daeki's avatar
Yoon, Daeki committed
10
export const RadioForm = ({ element, handleQuestion, isEditing }: Props) => {
Jiwon Yoon's avatar
Jiwon Yoon committed
11
12
13
14
15
16
17
18
19
  const [choices, setChoices] = useState([...element.content.choices]);

  function handleContent(event: React.ChangeEvent<HTMLInputElement>) {
    const { id, value } = event.target;
    choices[+id].text = value;
    element.content.choices = choices;
    handleQuestion(element._id);
    console.log(choices);
  }
Jiwon Yoon's avatar
Jiwon Yoon committed
20
21
22
23
24
25
26
27
28
29
30
31
  function deleteValue() {
    //제일 마지막 index 제거
    choices.splice(-1, 1);
    element.content.choices = choices;
    handleQuestion(element._id);
  }
  function addValue() {
    choices.push({ text: "", value: choices.length });
    element.content.choices = choices;
    handleQuestion(element._id);
  }

32
  return (
Jiwon Yoon's avatar
Jiwon Yoon committed
33
34
35
    <>
      <div id="content" className="mt-4 p-5">
        {choices.map((choice: any, index: number) => (
jang dong hyeok's avatar
jang dong hyeok committed
36
          <div key={choice.value} className="m-5">
Jiwon Yoon's avatar
Jiwon Yoon committed
37
38
39
40
41
42
43
44
            <input type="radio" disabled></input>
            <input
              id={`${index}`}
              type="text"
              className="mx-2 border-b-2"
              placeholder="선택지"
              value={choice.text}
              onChange={handleContent}
Yoon, Daeki's avatar
Yoon, Daeki committed
45
              disabled={!isEditing}
Jiwon Yoon's avatar
Jiwon Yoon committed
46
47
48
49
50
51
52
53
54
55
            ></input>
          </div>
        ))}
      </div>
      <div>
        <button
          type="button"
          name="rateValues"
          className="border border-red-500 rounded mx-2 px-2"
          onClick={deleteValue}
Yoon, Daeki's avatar
Yoon, Daeki committed
56
          disabled={!isEditing}
Jiwon Yoon's avatar
Jiwon Yoon committed
57
58
59
60
61
62
63
64
        >
          삭제
        </button>
        <button
          type="button"
          name="rateValues"
          className="border border-blue-500 rounded mx-2 px-2"
          onClick={addValue}
Yoon, Daeki's avatar
Yoon, Daeki committed
65
          disabled={!isEditing}
Jiwon Yoon's avatar
Jiwon Yoon committed
66
67
68
69
70
        >
          추가
        </button>
      </div>
    </>
71
72
  );
};