QFile.tsx 1.47 KB
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
import React, { useState } from "react";
2
import { FileType } from "../types";
Jiwon Yoon's avatar
Jiwon Yoon committed
3
import { useQuestion } from "./question.context";
4
import { TypeChange } from "./typeDD";
Jiwon Yoon's avatar
Jiwon Yoon committed
5
6
7
8
9

type Props = {
  element: FileType;
};

Jiwon Yoon's avatar
Jiwon Yoon committed
10
11
12
export const QFile = ({ element }: Props) => {
  const { questionListChange } = useQuestion();

Jiwon Yoon's avatar
Jiwon Yoon committed
13
14
15
16
17
  return (
    <div className="flex flex-col container w-4/5 h-auto border-2 border-themeColor items-center m-3 py-2">
      <div className="flex h-16 w-full place-content-between items-center">
        <input
          type="text"
Jiwon Yoon's avatar
Jiwon Yoon committed
18
19
          name="title"
          id={element._id}
Jiwon Yoon's avatar
Jiwon Yoon committed
20
21
          className="text-xl font-bold ml-6 border-b-2 w-1/2"
          placeholder={element.title}
Jiwon Yoon's avatar
Jiwon Yoon committed
22
          onChange={questionListChange}
Jiwon Yoon's avatar
Jiwon Yoon committed
23
        ></input>
24
        <TypeChange tt="file" />
Jiwon Yoon's avatar
Jiwon Yoon committed
25
26
27
28
      </div>
      <div className="flex w-full justify-center">
        <input
          type="text"
Jiwon Yoon's avatar
Jiwon Yoon committed
29
30
          name="comment"
          id={element._id}
Jiwon Yoon's avatar
Jiwon Yoon committed
31
32
          className="border w-11/12"
          placeholder="질문에 대한 설명을 입력해주세요"
Jiwon Yoon's avatar
Jiwon Yoon committed
33
          onChange={questionListChange}
Jiwon Yoon's avatar
Jiwon Yoon committed
34
35
36
37
38
39
40
41
42
43
44
45
46
        ></input>
      </div>
      <div id="commentarea" className="flex mt-4 w-full justify-center">
        <input type="file" className=" w-11/12 h-16" disabled></input>
      </div>
      <div className="flex w-full justify-end py-2">
        <button className="w-1/12">필수</button>
        <button className="w-1/12">옵션</button>
        <button className="w-1/12">삭제</button>
      </div>
    </div>
  );
};