Drawer
import {Drawer} from "@qualcomm-ui/react/drawer"Overview
The drawer's API is similar to the Dialog component.
Examples
Placement End
The drawer's default placement is end, which maps to the right side of the screen in LTR languages and the left side in RTL languages.
Placement Start
Use placement start to change the placement to the left side of the screen.
<Drawer.Root placement="start">Controlled State
Drawer visibility can be controlled using the open, onOpenChange and defaultOpen props. These props follow our controlled state pattern.
Custom Container
Use the container prop of the Portal component to render the drawer in a custom container. You'll need to override the positioner's default styles to position the drawer correctly.
Consider setting closeOnInteractOutside to false to prevent the drawer from closing when interacting outside the drawer.
import {type ReactElement, useRef} from "react"
import {Button} from "@qualcomm-ui/react/button"
import {Drawer} from "@qualcomm-ui/react/drawer"
import {Portal} from "@qualcomm-ui/react-core/portal"
export default function DrawerCustomContainerDemo(): ReactElement {
const containerRef = useRef<HTMLDivElement | null>(null)
return (
<div className="grid gap-4">
<Drawer.Root
closeOnEscape={false}
closeOnInteractOutside={false}
preventScroll={false}
trapFocus={false}
>
<div
ref={containerRef}
className="border-neutral-03 relative flex h-96 w-[600px] overflow-hidden border p-8"
>
<Drawer.Trigger>
<Button emphasis="primary" variant="fill">
Open Drawer
</Button>
</Drawer.Trigger>
</div>
<Portal container={containerRef}>
<Drawer.Positioner className="absolute z-0 h-full w-full">
<Drawer.Content>
<Drawer.Body>
<Drawer.Heading>Title</Drawer.Heading>
<Drawer.CloseButton />
<Drawer.Description>Description</Drawer.Description>
</Drawer.Body>
<Drawer.Footer>
<Drawer.CloseTrigger>
<Button emphasis="primary" size="sm" variant="fill">
Confirm
</Button>
</Drawer.CloseTrigger>
</Drawer.Footer>
</Drawer.Content>
</Drawer.Positioner>
</Portal>
</Drawer.Root>
</div>
)
}
Shortcuts
<Drawer.FloatingPortal>
A helper component that combines the portal, positioner, and content components. This shortcut is equivalent to:
<Portal {...props}>
<Drawer.Backdrop {...backdropProps} />
<Drawer.Positioner {...positionerProps}>
<Drawer.Content {...contentProps}>{children}</Drawer.Content>
</Drawer.Positioner>
</Portal>API
The Drawer shares many of its props and data attributes with the Dialog component.
<Drawer.Root>
| Prop | Type | Default |
|---|---|---|
Human readable label for the dialog, used when the dialog title is not rendered | string | |
Whether to close the dialog when the escape key is pressed | boolean | true |
Whether to close the dialog when the outside is clicked | boolean | true |
The initial open state of the dialog when rendered.
Use when you don't need to control the open state of the dialog. | boolean | false |
The document's text/writing direction. | 'ltr' | 'rtl' | 'ltr' |
Element to receive focus when the dialog is closed | () => HTMLElement | |
A root node to correctly resolve document in custom environments. i.e.,
Iframes, Electron. | () => | |
Whether to synchronize the present change immediately or defer it to the next
frame | boolean | |
Element to receive focus when the dialog is opened | () => HTMLElement | |
When true, the component will not be rendered in the DOM until it becomes
visible or active. | boolean | false |
Whether to prevent pointer interaction outside the element and hide all content
below it | boolean | true |
Function called when the escape key is pressed | ( | |
Function called when the animation ends in the closed state | VoidFunction | |
Function called when the focus is moved outside the component | ( | |
Function called when an interaction happens outside the component | ( | |
Function invoked when the dialog opens or closes
| ( | |
Function called when the pointer is pressed down outside the component | ( | |
Function called when this layer is closed due to a parent layer being closed | ( | |
The controlled open state of the dialog | boolean | |
Returns the persistent elements that: - should not have pointer-events disabled - should not trigger the dismiss event | Array< | |
The horizontal placement of the drawer within the viewport. | | 'start' | 'end' |
Whether the node is present (controlled by the user) | boolean | |
Whether to prevent scrolling behind the dialog when it's opened | boolean | true |
Whether to restore focus to the element that had focus before the dialog was
opened | boolean | true |
The dialog's role | | 'dialog' | 'dialog' |
Defines the scroll behavior of the dialog content when modal content exceeds
viewport height. | | 'inside' | 'outside' |
The size of the drawer's width, font sizes, and internal spacing. | 'sm' | 'md' | 'sm' |
Whether to allow the initial presence animation. | boolean | false |
Whether to trap focus inside the dialog when it's opened | boolean | true |
When true, the component will be completely removed from the DOM when it
becomes inactive or hidden, rather than just being hidden with CSS. | boolean | false |
stringbooleanbooleanboolean'ltr' | 'rtl'
() => HTMLElement
() =>
| Node
| ShadowRoot
| Document
boolean() => HTMLElement
booleanboolean(
event: KeyboardEvent,
) => void
VoidFunction(
event: FocusOutsideEvent,
) => void
(
event: InteractOutsideEvent,
) => void
(
open: boolean,
) => void
- openThe next value of the open state.
(
event: PointerDownOutsideEvent,
) => void
(
event: CustomEvent<{
originalIndex: number
originalLayer: HTMLElement
targetIndex: number
targetLayer: HTMLElement
}>,
) => void
booleanArray<
() => Element
>
- should not have pointer-events disabled
- should not trigger the dismiss event
| 'start'
| 'end'
booleanbooleanboolean| 'dialog'
| 'alertdialog'
| 'inside'
| 'outside'
'sm' | 'md'
booleanbooleanboolean<Drawer.Backdrop>
<div> element by default.| Prop | Type |
|---|---|
id attribute. If
omitted, a unique identifier will be automatically generated for accessibility. | string |
Allows you to replace the component's HTML element with a different tag or component. Learn more | | ReactElement |
string| ReactElement
| ((
props: object,
) => ReactElement)
| Attribute / Property | Value |
|---|---|
className | 'qui-dialog__backdrop' |
data-part | 'backdrop' |
data-scope | 'dialog' |
data-state | | 'open' |
hidden | boolean |
className'qui-dialog__backdrop'data-part'backdrop'data-scope'dialog'data-state| 'open'
| 'closed'
hiddenboolean<Drawer.Positioner>
<div> element by
default.| Prop | Type |
|---|---|
id attribute. If
omitted, a unique identifier will be automatically generated for accessibility. | string |
Allows you to replace the component's HTML element with a different tag or component. Learn more | | ReactElement |
string| ReactElement
| ((
props: object,
) => ReactElement)
| Attribute / Property | Value |
|---|---|
className | 'qui-drawer__positioner' |
data-part | 'positioner' |
data-placement | | 'start' |
data-scope | 'dialog' |
style |
className'qui-drawer__positioner'data-part'positioner'data-placement| 'start'
| 'end'
data-scope'dialog'style<Drawer.Content>
<section> element by default.<Dialog.Root>
<Dialog.Positioner>
<Dialog.Content></Dialog.Content>
</Dialog.Positioner>
</Dialog.Root>
| Prop | Type |
|---|---|
id attribute. If
omitted, a unique identifier will be automatically generated for accessibility. | string |
Allows you to replace the component's HTML element with a different tag or component. Learn more | | ReactElement |
string| ReactElement
| ((
props: object,
) => ReactElement)
| Attribute / Property | Value |
|---|---|
className | 'qui-drawer__content' |
data-part | 'content' |
data-placement | | 'start' |
data-scope | 'dialog' |
data-size | 'sm' | 'md' |
data-state | | 'open' |
hidden | boolean |
tabIndex | -1 |
className'qui-drawer__content'data-part'content'data-placement| 'start'
| 'end'
data-scope'dialog'data-size'sm' | 'md'
data-state| 'open'
| 'closed'
hiddenbooleantabIndex-1
<Drawer.Body>
<div> element by
default.| Prop | Type |
|---|---|
Allows you to replace the component's HTML element with a different tag or component. Learn more | | ReactElement |
| ReactElement
| ((
props: object,
) => ReactElement)
| Attribute / Property | Value |
|---|---|
className | 'qui-dialog__body' |
data-part | 'body' |
data-scope | 'dialog' |
data-size | 'sm' | 'md' |
className'qui-dialog__body'data-part'body'data-scope'dialog'data-size'sm' | 'md'
<Drawer.Heading>
| Prop | Type |
|---|---|
id attribute. If
omitted, a unique identifier will be automatically generated for accessibility. | string |
Allows you to replace the component's HTML element with a different tag or component. Learn more | | ReactElement |
string| ReactElement
| ((
props: object,
) => ReactElement)
| Attribute / Property | Value |
|---|---|
className | 'qui-dialog__heading' |
data-part | 'heading' |
data-scope | 'dialog' |
data-size | 'sm' | 'md' |
className'qui-dialog__heading'data-part'heading'data-scope'dialog'data-size'sm' | 'md'
<Drawer.IndicatorIcon>
<span> element by
default.| Prop | Type |
|---|---|
| LucideIcon | |
Allows you to replace the component's HTML element with a different tag or component. Learn more | | ReactElement |
| LucideIcon
| ReactNode
| ReactElement
| ((
props: object,
) => ReactElement)
| Attribute / Property | Value |
|---|---|
className | 'qui-dialog__indicator-icon' |
data-emphasis | | 'info' |
data-size | 'sm' | 'md' |
className'qui-dialog__indicator-icon'data-emphasis| 'info'
| 'success'
| 'warning'
| 'danger'
| 'neutral'
data-size'sm' | 'md'
<Drawer.CloseButton>
<button> element by default.| Prop | Type | Default |
|---|---|---|
LucideIcon | X | |
id attribute. If
omitted, a unique identifier will be automatically generated for accessibility. | string | |
Allows you to replace the component's HTML element with a different tag or component. Learn more | | ReactElement |
LucideIconstring| ReactElement
| ((
props: object,
) => ReactElement)
| Attribute / Property | Value |
|---|---|
className | 'qui-dialog__close-button' |
data-part | 'close-trigger' |
data-scope | 'dialog' |
className'qui-dialog__close-button'data-part'close-trigger'data-scope'dialog'