Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2022-07-30 09:51:32 +02:00
commit afc072da2c
No known key found for this signature in database
GPG key ID: D1D45825D60C24D2

View file

@ -1,15 +1,28 @@
import React, { useRef, useState } from "react"; import React, { useRef, useState } from "react";
import styles from "./Menu.module.css"; import { AriaMenuOptions, useMenu, useMenuItem } from "@react-aria/menu";
import { useMenu, useMenuItem } from "@react-aria/menu"; import { TreeState, useTreeState } from "@react-stately/tree";
import { useTreeState } from "@react-stately/tree";
import { mergeProps } from "@react-aria/utils"; import { mergeProps } from "@react-aria/utils";
import { useFocus } from "@react-aria/interactions"; import { useFocus } from "@react-aria/interactions";
import classNames from "classnames"; import classNames from "classnames";
import { Node } from "@react-types/shared";
export function Menu({ className, onAction, ...rest }) { import styles from "./Menu.module.css";
const state = useTreeState({ ...rest, selectionMode: "none" });
interface MenuProps<T> extends AriaMenuOptions<T> {
className: String;
onAction: () => void;
onClose: () => void;
}
export function Menu<T extends object>({
className,
onAction,
onClose,
...rest
}: MenuProps<T>) {
const state = useTreeState<T>({ ...rest, selectionMode: "none" });
const menuRef = useRef(); const menuRef = useRef();
const { menuProps } = useMenu(rest, state, menuRef); const { menuProps } = useMenu<T>(rest, state, menuRef);
return ( return (
<ul <ul
@ -23,19 +36,25 @@ export function Menu({ className, onAction, ...rest }) {
item={item} item={item}
state={state} state={state}
onAction={onAction} onAction={onAction}
onClose={rest.onClose} onClose={onClose}
/> />
))} ))}
</ul> </ul>
); );
} }
function MenuItem({ item, state, onAction, onClose }) { interface MenuItemProps<T> {
item: Node<T>;
state: TreeState<T>;
onAction: () => void;
onClose: () => void;
}
function MenuItem<T>({ item, state, onAction, onClose }: MenuItemProps<T>) {
const ref = useRef(); const ref = useRef();
const { menuItemProps } = useMenuItem( const { menuItemProps } = useMenuItem(
{ {
key: item.key, key: item.key,
isDisabled: item.isDisabled,
onAction, onAction,
onClose, onClose,
}, },