useClickableContainer@xds/core · hooks

Usage

Makes a container element clickable while preserving nested interactive element behavior. Solves the "nested interactive elements" problem: when a card is clickable but contains buttons/links, clicking those should NOT trigger the card's action. Detects interactive ancestors between the click target and the container, and ignores text selections. Supports href navigation (including middle-click and Ctrl/Cmd+click for new tabs).

Best practices

GuidancePractices
DoAttach both onClick and onMouseUp to the container element for full click handling including middle-click.
DoUse inside XDSClickableCard or XDSSelectableCard for the standard card interaction pattern.
Don'tUse when the entire container is a single interactive element — just use a <button> or <a> directly.

Parameters

ParamTypeDescription
optionsrequired
UseClickableContainerOptionsConfiguration object for the clickable container.
options.containerRefrequired
RefObject<HTMLElement | null>Ref to the outer container element.
options.interactiveRef
RefObject<HTMLElement | null>Ref to the primary interactive element inside (link, button). If no onClick or href is provided, clicks are proxied to this element.
options.onClick
(event: MouseEvent<HTMLElement>) => voidClick handler fired when the container surface (not a nested interactive element) is clicked.
options.href
stringNavigation URL. When provided, clicking the container navigates to this URL.
options.target
stringLink target (e.g., '_blank'). Used with href for navigation behavior.
options.disabled
boolean (default: false)Whether the container is disabled.

Returns

FieldTypeDescription
onClick(event: MouseEvent<HTMLElement>) => voidClick handler to attach to the container element.
onMouseUp(event: MouseEvent<HTMLElement>) => voidMouse up handler to attach to the container (handles middle-click navigation for href).

Import

ts
import {useClickableContainer} from '@xds/core/hooks'