enes

Menu

Menu is a component for displaying a list of actions or options in a dropdown format. It can be used in various contexts, such as navigation, settings, or context menus.

This component relies on the Floating UI library for positioning. It provides a flexible API for creating complex menu structures, including nested menus, checkable items, and disabled items.

To create a menu, you will need to use the following components:

  • Menu: The root component that creates all the state and provides context to its children.
  • MenuTrigger: Handles all the logic for the trigger element that opens the menu. It uses a render prop pattern to provide the necessary props and state to the trigger element.
  • ContextMenuTrigger: A variant of MenuTrigger that is designed to be used for context menus. It attaches the menu to a specified element and opens on right-click.
  • MenuPopover: The container for the menu content. It handles the positioning and accessibility of the menu.
  • MenuList: A wrapper for the list of menu items.
  • MenuItem: Represents a single item in the menu. It can be a simple action or a trigger for a nested menu.
  • SplitButton or Button: The trigger element for the menu.

Other components that can be used within the menu include:

  • MenuGroup: A wrapper for grouping related menu items together, with an optional header.
  • MenuDivider: A visual separator between menu items or groups.
  • MenuItemCheckbox: A menu item that can be checked or unchecked.
  • MenuItemSwitch: A menu item that can be toggled on or off.
  • MenuItemRadio: A menu item that can be selected as part of a group of radio items.

To correctly attach events to the trigger element, you should wrap the element with the children() snippet . This allows you to bind the necessary props and state to your trigger element, ensuring that the menu opens and closes as expected.

<script>
	import { Button, Menu, MenuTrigger, MenuPopover, MenuList, MenuGroup, MenuItem, MenuDivider } from 'fluentui-svelte';
</script>

<Menu>
	<MenuTrigger>
		{#snippet children({ state, menuTriggerProps })}
			<Button bind:ref={state.ref} {...menuTriggerProps}>Open Menu</Button>
		{/snippet}
	</MenuTrigger>
	<MenuPopover>
		<MenuList>
			<MenuGroup header="Group 1">
				<MenuItem>Item 1</MenuItem>
				<MenuItem>Item 2</MenuItem>
			</MenuGroup>
			<MenuDivider />
			<MenuGroup header="Group 2">
				<MenuItem>Item 3</MenuItem>
				<MenuItem>Item 4</MenuItem>
			</MenuGroup>
		</MenuList>
	</MenuPopover>
</Menu>
<Menu hasCheckmarks hasIcons {checkedValues} onCheckedValueChange={(e, value) => (checkedValues = value)}>
	<MenuTrigger>
		{#snippet children({ state, menuTriggerProps })}
			<Button isMenuButton bind:ref={state.ref} {...menuTriggerProps}>
				<AccessTimeRegular /> Open Menu
			</Button>
		{/snippet}
	</MenuTrigger>
	<MenuPopover>
		<MenuList>
			<MenuItem subText="An explanation here">Item With Subtext</MenuItem>
			<MenuDivider />
			<MenuItem disabled>I'm Disabled</MenuItem>
			<MenuItemCheckbox name="item4" value="item4" icon={AccessTimeRegular}>I'm a checkbox</MenuItemCheckbox>
			<MenuItemSwitch>I'm a switch</MenuItemSwitch>
			<MenuItemRadio name="item6" value="item6" icon={AccessTimeRegular}>I'm a radio</MenuItemRadio>
		</MenuList>
	</MenuPopover>
</Menu>
<Menu>
	<MenuTrigger>
		{#snippet children({ state, menuTriggerProps, primaryButtonProps })}
			<SplitButton
				bind:menuTriggerRef={state.ref}
				{menuTriggerProps}
				primaryButtonProps={{ onclick: () => alert('Primary action'), ...primaryButtonProps }}
			>
				Primary Action
			</SplitButton>
		{/snippet}
	</MenuTrigger>
	<MenuPopover>
		<MenuList>
			<MenuItem>Item 1</MenuItem>
			<MenuItem>Item 2</MenuItem>
		</MenuList>
	</MenuPopover>
</Menu>

This variant of the MenuTrigger component allows you to create context menus that open on right-click. You can specify the element to which the context menu should be attached using the ref prop. If no element is provided, it will attach to the document.body by default.

Right click anywhere in this box to open the context menu.
NameTypeDescription
checkedValuesRecord<string, string[]>Map-like object of checked values, keyed by group name.
onCheckedValueChange(e: Event, checkedValues: Record<string, string[]>) => voidCallback fired when checked values change.
hasCheckmarksbooleanStates that menu items can contain selectable items and reserve slots for item alignment.
hasIconsbooleanStates that menu items can contain icons and reserve slots for item alignment.
openingDelaynumberThe delay in milliseconds before opening a submenu on hover. Default is 0.
openbooleanControls the open state of the menu.
onOpenChange(e: Event, open: boolean) => voidCallback fired when the open state of the menu changes.
openOnHoverbooleanIf true, the menu will open when the trigger is hovered.
persistOnItemActivationbooleanIf true, the menu will not close when a menu item is activated.
positionConfigPartial<ComputePositionConfig>Configuration for the Floating UI positioning. It will be passed down to MenuPopover.
NameTypeDescription
shaperounded | circular | squareThe shape of the trigger element. Default is 'rounded'.
iconSnippet | ComponentAn optional icon to display in the trigger element.
disabledbooleanIf true, the trigger element will be disabled.
NameTypeDescription
iconSnippet | ComponentAn optional icon to display in the menu item.
subTextstringOptional subtext to display below the main content of the menu item.
secondaryContentstringOptional secondary content to display like a hint text.
hrefstringIf provided, the menu item will render as an anchor element.
disabledbooleanIf true, the menu item will be disabled.
onClick(e: Event) => voidCallback fired when the menu item is clicked.
NameTypeDescription
All MenuItem propsAll props from the MenuItem component are compatible.
valuestringThe value of the checkbox item. This is required for the item to be checkable.
checkedbooleanControls the checked state of the checkbox item. (Bindable)
namestringThe name of the checkbox item, used for grouping related checkboxes.
NameTypeDescription
headerstringOptional header text to display above the group.