Back to Vendure

ActionBarDropdownMenuItem

docs/docs/reference/admin-ui-api/action-bar/action-bar-dropdown-menu-item.mdx

3.6.32.9 KB
Original Source
<GenerationInfo sourceFile="packages/admin-ui/src/lib/core/src/providers/nav-builder/nav-builder-types.ts" sourceLine="225" packageName="@vendure/admin-ui" since="2.2.0" />

A dropdown menu item in the ActionBar area at the top of one of the list or detail views.

ts
interface ActionBarDropdownMenuItem {
    id: string;
    label: string;
    locationId: ActionBarLocationId;
    hasDivider?: boolean;
    buttonState?: (context: ActionBarContext) => Observable<ActionBarButtonState | undefined>;
    onClick?: (event: MouseEvent, context: ActionBarContext) => void;
    routerLink?: RouterLinkDefinition;
    icon?: string;
    requiresPermission?: string | string[];
}
<div className="members-wrapper">

id

<MemberInfo kind="property" type={string} />

A unique identifier for the item.

label

<MemberInfo kind="property" type={string} />

The label to display for the item. This can also be a translation token, e.g. invoice-plugin.print-invoice.

locationId

<MemberInfo kind="property" type={<a href='/reference/admin-ui-api/action-bar/action-bar-location-id#actionbarlocationid'>ActionBarLocationId</a>} />

The location in the UI where this menu item should be displayed.

hasDivider

<MemberInfo kind="property" type={boolean} />

Whether to render a divider above this item.

buttonState

<MemberInfo kind="property" type={(context: <a href='/reference/admin-ui-api/action-bar/action-bar-context#actionbarcontext'>ActionBarContext</a>) => Observable<ActionBarButtonState | undefined>} />

A function which returns an observable of the button state, allowing you to dynamically enable/disable or show/hide the button.

onClick

<MemberInfo kind="property" type={(event: MouseEvent, context: <a href='/reference/admin-ui-api/action-bar/action-bar-context#actionbarcontext'>ActionBarContext</a>) => void} />

<MemberInfo kind="property" type={<a href='/reference/admin-ui-api/action-bar/router-link-definition#routerlinkdefinition'>RouterLinkDefinition</a>} />

icon

<MemberInfo kind="property" type={string} />

An optional icon to display with the item. The icon should be a valid shape name from the Clarity Icons set.

requiresPermission

<MemberInfo kind="property" type={string | string[]} />

Control the display of this item based on the user permissions. Note: if you attempt to pass a PermissionDefinition object, you will get a compilation error. Instead, pass the plain string version. For example, if the permission is defined as:

ts
export const MyPermission = new PermissionDefinition('ProductReview');

then the generated permission strings will be:

  • CreateProductReview
  • ReadProductReview
  • UpdateProductReview
  • DeleteProductReview
</div>