// @flow import * as React from "react"; import cn from "classnames"; import { Popper } from "react-popper"; import type { Placement, PopperChildrenProps } from "react-popper"; import type { Style } from "typed-styles"; type StyleOffsets = { top: number, left: number }; type StylePosition = { position: "absolute" | "fixed" }; export type Props = {| +children?: React.Node, +className?: string, +position?: Placement, /** * Display an arrow pointing towards the trigger */ +arrow?: boolean, /** * The position of the arrow pointing towards the trigger */ +arrowPosition?: "left" | "right", +style?: Style & StyleOffsets & StylePosition, +rootRef?: (?HTMLElement) => void, /** * Show the DropdownMenu */ show?: boolean, |}; /** * The wrapper element for a Dropdowns Items */ function DropdownMenu({ className, children, position = "bottom", arrow, arrowPosition = "left", style, rootRef, show = false, }: Props): React.Node { const classes = cn( { "dropdown-menu": true, [`dropdown-menu-${arrowPosition}`]: arrowPosition, [`dropdown-menu-arrow`]: arrow, show: show, }, className ); return ( show && ( {({ ref, style, placement }: PopperChildrenProps) => { return (
{children}
); }}
) ); } DropdownMenu.displayName = "Dropdown.Menu"; export default DropdownMenu;