RDropdown.tsx 739 Bytes
Newer Older
1
import React from "react";
Yoon, Daeki's avatar
Yoon, Daeki committed
2
import { IQuestionData } from "../types";
3
import chartImg1 from "../icons/chartImg1.png";
4
5

type Props = {
Yoon, Daeki's avatar
Yoon, Daeki committed
6
  question: IQuestionData;
7
8
};

9
export const RDropdown = ({ question }: Props) => {
10
11
12
13
  const result = question.answers.reduce((acc: any, cur: any) => {
    acc[cur] = (acc[cur] || 0) + 1;
    return acc;
  }, {});
Yoon, Daeki's avatar
Yoon, Daeki committed
14

15
16
  return (
    <div className="m-5">
17
      <img src={chartImg1} />
Yoon, Daeki's avatar
Yoon, Daeki committed
18
19
      {question.content.choices.map((choice: any, index: number) => (
        <div key={index} className="">
20
21
22
23
24
25
26
27
28
          <span className="font-bold">{choice.text}</span>
          <span className="ml-3">
            - {result[choice.text] ? result[choice.text] : 0}
          </span>
        </div>
      ))}
    </div>
  );
};