aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/common/menu/Menu.tsx
blob: 65cd55b40019fe6b054d618f49a2a19c0a8ea313 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import { CSSProperties } from "react";
import classNames from "classnames";

import { useC, Text, ThemeColor } from "../common";

import "./Menu.css";
import Icon from "../Icon";

export type MenuItem =
  | {
      type: "divider";
    }
  | {
      type: "button";
      text: Text;
      icon?: string;
      color?: ThemeColor;
      onClick: () => void;
    };

export type MenuItems = MenuItem[];

export type MenuProps = {
  color?: ThemeColor;
  items: MenuItems;
  onItemClicked?: () => void;
  className?: string;
  style?: CSSProperties;
};

export default function Menu({
  color,
  items,
  onItemClicked,
  className,
  style,
}: MenuProps) {
  const c = useC();

  return (
    <div
      className={classNames(`cru-menu cru-button-${color ?? "primary"}`, className)}
      style={style}
    >
      {items.map((item, index) => {
        if (item.type === "divider") {
          return <hr key={index} className="cru-menu-divider" />;
        } else {
          const { text, color, icon, onClick } = item;
          return (
            <div
              key={index}
              className={`cru-menu-item cru-button-${color ?? "primary"}`}
              onClick={() => {
                onClick();
                onItemClicked?.();
              }}
            >
              {icon != null && <Icon color={color} icon={icon} />}
              {c(text)}
            </div>
          );
        }
      })}
    </div>
  );
}