• Blog
  • Docs
  • Pricing
  • We’re hiring!
Log inSign up
drewmcdonald

drewmcdonald

promptCompare

Public
Like
promptCompare
Home
Code
7
.claude
3
backend
2
docs
1
frontend
4
shared
.mcp.json
deno.json
Environment variables
2
Branches
1
Pull requests
Remixes
History
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
Sign up now
Code
/
.claude
/
skills
/
ai-elements
/
references
/
mic-selector.md
Code
/
.claude
/
skills
/
ai-elements
/
references
/
mic-selector.md
Search
…
Viewing readonly version of main branch: v134
View latest version
mic-selector.md

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.

See scripts/mic-selector.tsx for this example.

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.

PropTypeDefaultDescription
defaultValuestring-The default selected device ID (uncontrolled).
valuestring-The selected device ID (controlled).
onValueChange(deviceId: string) => void-Callback fired when the selected device changes.
defaultOpenbooleanfalseThe default open state (uncontrolled).
openboolean-The open state (controlled).
onOpenChange(open: boolean) => void-Callback fired when the open state changes. Automatically requests microphone permission when opened without permission.
...propsReact.ComponentProps<typeof Popover>-Any other props are spread to the Popover component.

<MicSelectorTrigger />

Button that opens the microphone selector popover. Automatically tracks its width to match the popover content.

PropTypeDefaultDescription
...propsReact.ComponentProps<typeof Button>-Any other props are spread to the Button component.

<MicSelectorValue />

Displays the currently selected microphone name or a placeholder.

PropTypeDefaultDescription
...propsReact.ComponentProps<-Any other props are spread to the span element.

<MicSelectorContent />

Container for the Command component, rendered inside the popover.

PropTypeDefaultDescription
popoverOptionsReact.ComponentProps<typeof PopoverContent>-Props to pass to the underlying PopoverContent component.
...propsReact.ComponentProps<typeof Command>-Any other props are spread to the Command component.

<MicSelectorInput />

Search input for filtering microphones.

PropTypeDefaultDescription
...propsReact.ComponentProps<typeof CommandInput>-Any other props are spread to the CommandInput component.

<MicSelectorList />

Wrapper for the list of microphone items. Uses render props pattern to provide access to device data.

PropTypeDefaultDescription
children(devices: MediaDeviceInfo[]) => ReactNode-Render function that receives the array of available devices.
...propsOmit<React.ComponentProps<typeof CommandList>,-Any other props are spread to the CommandList component.

<MicSelectorEmpty />

Message shown when no microphones match the search.

PropTypeDefaultDescription
childrenReactNode-The message to display.
...propsReact.ComponentProps<typeof CommandEmpty>-Any other props are spread to the CommandEmpty component.

<MicSelectorItem />

Selectable item representing a microphone.

PropTypeDefaultDescription
valuestring-The device ID for this item.
...propsReact.ComponentProps<typeof CommandItem>-Any other props are spread to the CommandItem component.

<MicSelectorLabel />

Displays a formatted microphone label with intelligent device ID parsing. Automatically extracts and styles device IDs in the format (XXXX:XXXX).

PropTypeDefaultDescription
deviceMediaDeviceInfo-The MediaDeviceInfo object for the device.
...propsReact.ComponentProps<-Any other props are spread to the span element.

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.

Create val
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

PropTypeDefaultDescription
devicesMediaDeviceInfo[]-Array of available audio input devices.
loadingboolean-Whether devices are currently being loaded.
error`stringnull`-
hasPermissionboolean-Whether microphone permission has been granted.
loadDevices() => Promise<void>-Function to request microphone permission and load device names.

Behavior

Permission Handling

The component implements a two-stage permission approach:

  1. Without Permission: Initially loads devices without requesting permission. Device labels may show as generic names (e.g., "Microphone 1").
  2. 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 useControllableState for flexible controlled/uncontrolled patterns
FeaturesVersion controlCode intelligenceCLIMCP
Use cases
TeamsAI agentsSlackGTM
DocsShowcaseTemplatesNewestTrendingAPI examplesNPM packages
PricingNewsletterBlogAboutCareers
We’re hiring!
Brandhi@val.townStatus
X (Twitter)
Discord community
GitHub discussions
YouTube channel
Bluesky
Open Source Pledge
Terms of usePrivacy policyAbuse contact
© 2026 Val Town, Inc.