Mic Selector
A composable dropdown component for selecting audio input devices with permission handling and device change detection.
The MicSelector component provides a flexible and composable interface for selecting microphone input devices. Built on shadcn/ui's Command and Popover components, it features automatic device detection, permission handling, dynamic device list updates, and intelligent device name parsing.
Installation
npx ai-elements@latest add mic-selector
Features
- Fully composable architecture with granular control components
- Automatic audio input device enumeration
- Permission-based device name display
- Real-time device change detection via devicechange events
- Intelligent device label parsing with ID extraction
- Controlled and uncontrolled component patterns
- Responsive width matching between trigger and content
- Built on shadcn/ui Command and Popover components
- Full TypeScript support with proper types for all components
Props
<MicSelector />
Root Popover component that provides context for all child components.
Prop
Type
<MicSelectorTrigger />
Button that opens the microphone selector popover. Automatically tracks its width to match the popover content.
Prop
Type
<MicSelectorValue />
Displays the currently selected microphone name or a placeholder.
Prop
Type
<MicSelectorContent />
Container for the Command component, rendered inside the popover.
Prop
Type
<MicSelectorInput />
Search input for filtering microphones.
Prop
Type
<MicSelectorList />
Wrapper for the list of microphone items. Uses render props pattern to provide access to device data.
Prop
Type
<MicSelectorEmpty />
Message shown when no microphones match the search.
Prop
Type
<MicSelectorItem />
Selectable item representing a microphone.
Prop
Type
<MicSelectorLabel />
Displays a formatted microphone label with intelligent device ID parsing. Automatically extracts and styles device IDs in the format (XXXX:XXXX).
Prop
Type
Hooks
useAudioDevices()
A custom hook for managing audio input devices. This hook is used internally by the MicSelector component but can also be used independently.
import { useAudioDevices } from "@repo/elements/mic-selector";
export default function Example() {
const { devices, loading, error, hasPermission, loadDevices } = useAudioDevices();
return (
<div>
{loading && <p>Loading devices...</p>}
{error && <p>Error: {error}</p>}
{devices.map(device => (
<div key={device.deviceId}>{device.label}</div>
))}
{!hasPermission && (
<button onClick={loadDevices}>Grant Permission</button>
)}
</div>
);
}Return Value
Prop
Type
Behavior
Permission Handling
The component implements a two-stage permission approach:
- Without Permission: Initially loads devices without requesting permission. Device labels may show as generic names (e.g., "Microphone 1").
- With Permission: When the popover is opened and permission hasn't been granted, automatically requests microphone access and displays actual device names.
Device Label Parsing
The MicSelectorLabel component intelligently parses device names that include hardware IDs in the format (XXXX:XXXX). It splits the label into the device name and ID, styling the ID with muted text for better readability.
For example: "MacBook Pro Microphone (1a2b:3c4d)" becomes:
- Device name:
"MacBook Pro Microphone" - Device ID:
"(1a2b:3c4d)"(styled with muted color)
Width Synchronization
The MicSelectorTrigger uses a ResizeObserver to track its width and automatically synchronizes it with the MicSelectorContent popover width for a cohesive appearance.
Device Change Detection
The component listens for devicechange events (e.g., plugging/unplugging microphones) and automatically updates the device list in real-time.
Accessibility
- Uses semantic HTML with proper ARIA attributes via shadcn/ui components
- Full keyboard navigation support through Command component
- Screen reader friendly with proper labels and roles
- Searchable device list for quick selection
Notes
- Requires a secure context (HTTPS or localhost) for microphone access
- Browser may prompt user for microphone permission on first open
- Device labels are only fully descriptive after permission is granted
- Component handles cleanup of temporary media streams during permission requests
- Uses Radix UI's
useControllableStatefor flexible controlled/uncontrolled patterns