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

PropTypeDefaultDescription
titleReactNodeRequiredThe alert’s title - should be clear and concise
descriptionReactNodeRequiredThe main content of the alert - supports rich text and components
showbooleanRequiredControls the alert’s visibility state
isDestructivebooleanfalseWhen true, applies destructive styling (red color scheme) for dangerous actions
isPerformingActionbooleanfalseDisplays a loading spinner and disables interactions while processing
confirmTextstring'Confirm'Custom text for the confirmation button - should be action-specific
childrenReactNode-Additional content rendered below the description - perfect for custom UI elements
onConfirm() => void-Callback function executed when the user confirms the action
onClose() => voidRequiredCallback 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

import { Alert } from 'mycrumbs-uikit';

function Example() {
  const [isOpen, setIsOpen] = useState(false);

  return (
    <Alert
      show={isOpen}
      title="Confirm Action"
      description="Are you sure you want to proceed with this action?"
      onConfirm={() => {
        // handle confirmation
        setIsOpen(false);
      }}
      onClose={() => setIsOpen(false)}
    />
  );
}

Destructive Alert

<Alert
  show={isOpen}
  title="Delete Account"
  description="This action cannot be undone. All data will be permanently deleted."
  isDestructive
  confirmText="Delete"
  onConfirm={handleDelete}
  onClose={() => setIsOpen(false)}
/>

Alert with Custom Content

<Alert
  show={isOpen}
  title="Additional Information"
  description="Please review the following details:"
  onClose={() => setIsOpen(false)}
>
  <div className="mt-4">
    <ul className="list-disc pl-4">
      <li>Detail 1</li>
      <li>Detail 2</li>
    </ul>
  </div>
</Alert>

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

  1. Use clear and concise titles
  2. Provide descriptive content in the description
  3. Use destructive styling only for irreversible actions
  4. Keep confirmation text actionable and specific
  5. 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