Componentcontext-menu
Context Menu
Displays a menu to the user — triggered by a right-click or long-press.
Preview
Displays a menu to the user — triggered by a right-click or long-press.
Context Menu
Context Menu example
@ui.ContextMenu(ui.ContextMenuProps{}) {
@ui.ContextMenuTrigger(ui.DOMProps{Class: "flex h-[150px] w-[300px] items-center justify-center rounded-md border border-dashed text-sm"}) {
Right click here
}
@ui.ContextMenuContent(ui.DOMProps{Class: "w-64"}) {
@ui.ContextMenuItem(ui.DropdownMenuItemProps{Value: "back"}) { Back }
@ui.ContextMenuItem(ui.DropdownMenuItemProps{Value: "forward", Disabled: true}) { Forward }
@ui.ContextMenuItem(ui.DropdownMenuItemProps{Value: "reload"}) { Reload }
}
}Installation
Add this component to your project using the CLI.
templcn add context-menuUsage
1. Import the component in your Go or templ file:
import "your-module/ui"2. Use the component in your template:
@ui.ContextMenu(ui.ContextMenuProps{}) {
@ui.ContextMenuTrigger(ui.DOMProps{Class: "flex h-[150px] w-[300px] items-center justify-center rounded-md border border-dashed text-sm"}) {
Right click here
}
@ui.ContextMenuContent(ui.DOMProps{Class: "w-64"}) {
@ui.ContextMenuItem(ui.DropdownMenuItemProps{Value: "back"}) { Back }
@ui.ContextMenuItem(ui.DropdownMenuItemProps{Value: "forward", Disabled: true}) { Forward }
@ui.ContextMenuItem(ui.DropdownMenuItemProps{Value: "reload"}) { Reload }
}
}Composition
Use these parts together to build the component.
ContextMenu
├── ContextMenuTrigger
├── ContextMenuContent
├── ContextMenuItemExamples
Named examples and common variations.
Default
Right click trigger area with contextual options.
Context Menu
Context Menu example
@ui.ContextMenu(ui.ContextMenuProps{}) {
@ui.ContextMenuTrigger(ui.DOMProps{}) { Right click here }
@ui.ContextMenuContent(ui.DOMProps{}) {
@ui.ContextMenuItem(ui.DropdownMenuItemProps{Value: "reload"}) { Reload }
}
}API Reference
| Prop | Type | Default | Description |
|---|---|---|---|
| Variant | string | "" | Item variant. |
View source
package ui
import (
"context"
"io"
"github.com/a-h/templ"
)
type ContextMenuProps struct{ DOMProps }
func ContextMenu(props ContextMenuProps) templ.Component {
return templ.ComponentFunc(func(ctx context.Context, w io.Writer) error {
attrs := attrsFromDOMProps(props.DOMProps, "context-menu", "relative inline-block")
if _, ok := attrs["data-state"]; !ok {
attrs["data-state"] = "closed"
}
ctx = context.WithValue(ctx, menuRenderStateKey{}, menuRenderState{open: false})
return renderElement(ctx, w, "div", attrs, templ.GetChildren(ctx))
})
}
func ContextMenuTrigger(props DOMProps) templ.Component {
return templ.ComponentFunc(func(ctx context.Context, w io.Writer) error {
attrs := attrsFromDOMProps(props, "context-menu-trigger", "")
if _, ok := attrs["aria-haspopup"]; !ok {
attrs["aria-haspopup"] = "menu"
}
return renderElement(ctx, w, "div", attrs, templ.GetChildren(ctx))
})
}
func ContextMenuPortal(props DOMProps) templ.Component {
return templ.ComponentFunc(func(ctx context.Context, w io.Writer) error {
return renderElement(ctx, w, "div", attrsFromDOMProps(props, "context-menu-portal", ""), templ.GetChildren(ctx))
})
}
func ContextMenuContent(props DOMProps) templ.Component {
return templ.ComponentFunc(func(ctx context.Context, w io.Writer) error {
attrs := attrsFromDOMProps(props, "context-menu-content", "z-50 max-h-(--radix-context-menu-content-available-height) min-w-[8rem] origin-(--radix-context-menu-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95")
if _, ok := attrs["role"]; !ok {
attrs["role"] = "menu"
}
if _, ok := attrs["data-state"]; !ok {
attrs["data-state"] = menuStateFromContext(ctx)
}
if !menuOpenFromContext(ctx) {
attrs["hidden"] = true
}
return renderElement(ctx, w, "div", attrs, templ.GetChildren(ctx))
})
}
func ContextMenuItem(props DropdownMenuItemProps) templ.Component {
return templ.ComponentFunc(func(ctx context.Context, w io.Writer) error {
className := "relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[inset]:pl-8 data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 data-[variant=destructive]:focus:text-destructive dark:data-[variant=destructive]:focus:bg-destructive/20 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 [&_svg:not([class*='text-'])]:text-muted-foreground data-[variant=destructive]:*:[svg]:text-destructive!"
attrs := attrsFromDOMProps(props.DOMProps, "context-menu-item", className)
if props.Inset {
attrs["data-inset"] = true
}
if props.Variant != "" {
attrs["data-variant"] = props.Variant
} else {
attrs["data-variant"] = "default"
}
if _, ok := attrs["type"]; !ok {
attrs["type"] = "button"
}
if _, ok := attrs["role"]; !ok {
attrs["role"] = "menuitem"
}
if props.Value != "" {
attrs["data-value"] = props.Value
}
if props.Disabled {
attrs["disabled"] = true
attrs["aria-disabled"] = "true"
}
return renderElement(ctx, w, "button", attrs, templ.GetChildren(ctx))
})
}
func ContextMenuCheckboxItem(props DropdownMenuItemProps) templ.Component {
return templ.ComponentFunc(func(ctx context.Context, w io.Writer) error {
attrs := attrsFromDOMProps(props.DOMProps, "context-menu-checkbox-item", "relative flex cursor-default items-center gap-2 rounded-sm py-1.5 pr-2 pl-8 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4")
attrs["type"] = "button"
attrs["role"] = "menuitemcheckbox"
return renderElement(ctx, w, "button", attrs, templ.GetChildren(ctx))
})
}
func ContextMenuRadioItem(props DropdownMenuItemProps) templ.Component {
return templ.ComponentFunc(func(ctx context.Context, w io.Writer) error {
attrs := attrsFromDOMProps(props.DOMProps, "context-menu-radio-item", "relative flex cursor-default items-center gap-2 rounded-sm py-1.5 pr-2 pl-8 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4")
attrs["type"] = "button"
attrs["role"] = "menuitemradio"
return renderElement(ctx, w, "button", attrs, templ.GetChildren(ctx))
})
}
func ContextMenuRadioGroup(props DropdownMenuRadioGroupProps) templ.Component {
return templ.ComponentFunc(func(ctx context.Context, w io.Writer) error {
attrs := attrsFromDOMProps(props.DOMProps, "context-menu-radio-group", "")
if props.Value != "" {
attrs["data-value"] = props.Value
}
return renderElement(ctx, w, "div", attrs, templ.GetChildren(ctx))
})
}
func ContextMenuLabel(props DOMProps) templ.Component {
return templ.ComponentFunc(func(ctx context.Context, w io.Writer) error {
return renderElement(ctx, w, "div", attrsFromDOMProps(props, "context-menu-label", "px-2 py-1.5 text-sm font-medium text-foreground data-[inset]:pl-8"), templ.GetChildren(ctx))
})
}
func ContextMenuSeparator(props DOMProps) templ.Component {
return templ.ComponentFunc(func(ctx context.Context, w io.Writer) error {
return renderElement(ctx, w, "div", attrsFromDOMProps(props, "context-menu-separator", "-mx-1 my-1 h-px bg-border"), nil)
})
}
func ContextMenuShortcut(props DOMProps) templ.Component {
return templ.ComponentFunc(func(ctx context.Context, w io.Writer) error {
return renderElement(ctx, w, "span", attrsFromDOMProps(props, "context-menu-shortcut", "ml-auto text-xs tracking-widest text-muted-foreground"), templ.GetChildren(ctx))
})
}
func ContextMenuGroup(props DOMProps) templ.Component {
return templ.ComponentFunc(func(ctx context.Context, w io.Writer) error {
attrs := attrsFromDOMProps(props, "context-menu-group", "")
attrs["role"] = "group"
return renderElement(ctx, w, "div", attrs, templ.GetChildren(ctx))
})
}
func ContextMenuSub(props DOMProps) templ.Component {
return templ.ComponentFunc(func(ctx context.Context, w io.Writer) error {
return renderElement(ctx, w, "div", attrsFromDOMProps(props, "context-menu-sub", "relative"), templ.GetChildren(ctx))
})
}
func ContextMenuSubContent(props DOMProps) templ.Component {
return templ.ComponentFunc(func(ctx context.Context, w io.Writer) error {
attrs := attrsFromDOMProps(props, "context-menu-sub-content", "z-50 min-w-[8rem] origin-(--radix-context-menu-content-transform-origin) overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95")
attrs["role"] = "menu"
attrs["data-state"] = "closed"
attrs["hidden"] = true
return renderElement(ctx, w, "div", attrs, templ.GetChildren(ctx))
})
}
func ContextMenuSubTrigger(props DropdownMenuItemProps) templ.Component {
return templ.ComponentFunc(func(ctx context.Context, w io.Writer) error {
ctx, ownChildren := childrenFromContext(ctx)
attrs := attrsFromDOMProps(props.DOMProps, "context-menu-sub-trigger", "flex cursor-default items-center rounded-sm px-2 py-1.5 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground data-[inset]:pl-8 data-[state=open]:bg-accent data-[state=open]:text-accent-foreground [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 [&_svg:not([class*='text-'])]:text-muted-foreground")
attrs["type"] = "button"
if props.Inset {
attrs["data-inset"] = true
}
children := templ.ComponentFunc(func(ctx context.Context, w io.Writer) error {
if err := renderChildren(ctx, w, ownChildren); err != nil {
return err
}
_, err := io.WriteString(w, `<svg xmlns="http://www.w3.org/2000/svg" class="ml-auto" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="m9 18 6-6-6-6"></path></svg>`)
return err
})
return renderElement(ctx, w, "button", attrs, children)
})
}