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

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

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

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