/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import styles from "./hotbar-icon.module.scss"; import React, { useState } from "react"; import type { CatalogEntityContextMenu } from "../../../common/catalog"; import { cssNames } from "../../utils"; import { Menu, MenuItem } from "../menu"; import { observer } from "mobx-react"; import type { AvatarProps } from "../avatar"; import { Avatar } from "../avatar"; import { Icon } from "../icon"; import { Tooltip } from "../tooltip"; import type { NormalizeCatalogEntityContextMenu } from "../../catalog/normalize-menu-item.injectable"; import { withInjectables } from "@ogre-tools/injectable-react"; import normalizeCatalogEntityContextMenuInjectable from "../../catalog/normalize-menu-item.injectable"; export interface HotbarIconProps extends AvatarProps { uid: string; source?: string; material?: string; onMenuOpen?: () => void; active?: boolean; menuItems?: CatalogEntityContextMenu[]; disabled?: boolean; tooltip?: string; } interface Dependencies { normalizeMenuItem: NormalizeCatalogEntityContextMenu; } const NonInjectedHotbarIcon = observer(({ menuItems = [], size = 40, tooltip, normalizeMenuItem, ...props }: HotbarIconProps & Dependencies) => { const { uid, title, src, material, active, className, source, disabled, onMenuOpen, onClick, children, ...rest } = props; const id = `hotbarIcon-${uid}`; const [menuOpen, setMenuOpen] = useState(false); const toggleMenu = () => { setMenuOpen(!menuOpen); }; return (
0 })}> {tooltip && ( {tooltip} )} !disabled && onClick?.(event)} > {material && } {children} { onMenuOpen?.(); toggleMenu(); }} close={() => toggleMenu()} > { menuItems .map(normalizeMenuItem) .map((menuItem) => ( {menuItem.title} )) }
); }); export const HotbarIcon = withInjectables(NonInjectedHotbarIcon, { getProps: (di, props) => ({ ...props, normalizeMenuItem: di.inject(normalizeCatalogEntityContextMenuInjectable), }), });