Components
Alert
A sophisticated modal dialog component for displaying critical information, warnings, and confirmation requests with full accessibility support and customizable styling
Alert
The Alert component is a highly customizable modal dialog designed for displaying important messages, warnings, and requesting user confirmations. Built on Headless UI for robust accessibility and smooth transitions, this component provides a consistent and user-friendly way to present critical information across your application.
Component Overview
- Purpose: Presents important information that requires immediate attention
- Use Cases: Confirmations, warnings, error messages, and important notifications
- Features:
- Multiple visual styles for different alert types
- Customizable animations and transitions
- Full keyboard navigation support
- Screen reader optimized
- Flexible content rendering
- Loading state management
- Destructive action handling
Props
Prop | Type | Default | Description |
---|---|---|---|
title | ReactNode | Required | The alert’s title - should be clear and concise |
description | ReactNode | Required | The main content of the alert - supports rich text and components |
show | boolean | Required | Controls the alert’s visibility state |
isDestructive | boolean | false | When true, applies destructive styling (red color scheme) for dangerous actions |
isPerformingAction | boolean | false | Displays a loading spinner and disables interactions while processing |
confirmText | string | 'Confirm' | Custom text for the confirmation button - should be action-specific |
children | ReactNode | - | Additional content rendered below the description - perfect for custom UI elements |
onConfirm | () => void | - | Callback function executed when the user confirms the action |
onClose | () => void | Required | Callback function for handling alert dismissal |
Advanced Features
Animation Configuration
The alert supports customizable enter/leave animations with the following properties:
- Fade in/out transitions
- Scale transformations
- Configurable timing functions
- Direction-based animations
Focus Management
- Automatically focuses the first focusable element
- Maintains focus trap within the modal
- Restores focus to the trigger element on close
- Supports custom focus handling
Keyboard Navigation
- Enter: Triggers primary action
- Escape: Closes the alert
- Tab: Cycles through focusable elements
- Arrow keys: Navigation within select elements
Usage Examples
Basic Alert
Destructive Alert
Alert with Custom Content
Accessibility
- Uses appropriate ARIA roles for modal dialog
- Handles focus trap correctly
- Supports ESC key dismissal
- Provides smooth transitions for better user experience
Technical Notes
- Built on @headlessui/react
- Supports customization through children
- Automatically handles enter/leave animations
- Responsive and adaptable to different use cases
Best Practices
- Use clear and concise titles
- Provide descriptive content in the description
- Use destructive styling only for irreversible actions
- Keep confirmation text actionable and specific
- Consider using loading states for async operations
Implementation Details
The Alert component is built using Headless UI’s Dialog component and includes:
- Transition animations for smooth entry/exit
- Backdrop click handling
- Keyboard interaction support
- Focus management
- Screen reader compatibility