mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-17 13:50:39 -07:00
- Improved the useNativePlayback logic to include detailed console logging for better debugging. - Updated auto-play functionality to fetch runtime profile channels and channels, ensuring accurate playback decisions. - Refactored audio playback handling to support native audio routing with enhanced error handling and logging. - Introduced a new MultiSelect component for improved channel selection in VoicesTab. - Updated FloatingGenerateBox to include selectedProfileId in audio setting. - Added new dependencies for audio processing in Cargo.toml and Cargo.lock.
103 lines
3.3 KiB
TypeScript
103 lines
3.3 KiB
TypeScript
import * as React from 'react';
|
|
import { ChevronDown, Check } from 'lucide-react';
|
|
import { cn } from '@/lib/utils/cn';
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuTrigger,
|
|
} from '@/components/ui/dropdown-menu';
|
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
|
|
export interface MultiSelectOption {
|
|
value: string;
|
|
label: string;
|
|
}
|
|
|
|
export interface MultiSelectProps {
|
|
options: MultiSelectOption[];
|
|
value: string[];
|
|
onChange: (value: string[]) => void;
|
|
placeholder?: string;
|
|
className?: string;
|
|
}
|
|
|
|
const MultiSelectCheckboxItem = React.forwardRef<
|
|
React.ElementRef<typeof DropdownMenuPrimitive.CheckboxItem>,
|
|
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.CheckboxItem>
|
|
>(({ className, children, checked, ...props }, ref) => (
|
|
<DropdownMenuPrimitive.CheckboxItem
|
|
ref={ref}
|
|
className={cn(
|
|
'relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-xs outline-none focus:bg-accent focus:text-accent-foreground data-disabled:pointer-events-none data-disabled:opacity-50',
|
|
className,
|
|
)}
|
|
checked={checked}
|
|
{...props}
|
|
>
|
|
<span className="absolute left-2 flex h-3.5 w-3.5 items-center justify-center">
|
|
<DropdownMenuPrimitive.ItemIndicator>
|
|
<Check className="h-4 w-4" />
|
|
</DropdownMenuPrimitive.ItemIndicator>
|
|
</span>
|
|
{children}
|
|
</DropdownMenuPrimitive.CheckboxItem>
|
|
));
|
|
MultiSelectCheckboxItem.displayName = DropdownMenuPrimitive.CheckboxItem.displayName;
|
|
|
|
export function MultiSelect({
|
|
options,
|
|
value,
|
|
onChange,
|
|
placeholder = 'Select...',
|
|
className,
|
|
}: MultiSelectProps) {
|
|
const [open, setOpen] = React.useState(false);
|
|
|
|
const handleSelect = (optionValue: string) => {
|
|
const newValue = value.includes(optionValue)
|
|
? value.filter((v) => v !== optionValue)
|
|
: [...value, optionValue];
|
|
onChange(newValue);
|
|
};
|
|
|
|
const displayText =
|
|
value.length === 0
|
|
? placeholder
|
|
: value.length === 1
|
|
? options.find((opt) => opt.value === value[0])?.label || placeholder
|
|
: `${value.length} selected`;
|
|
|
|
return (
|
|
<DropdownMenu open={open} onOpenChange={setOpen}>
|
|
<DropdownMenuTrigger asChild>
|
|
<button
|
|
type="button"
|
|
className={cn(
|
|
'flex h-8 w-full items-center justify-between rounded-full border border-border bg-card px-3 py-2 text-xs ring-offset-background placeholder:text-muted-foreground focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 hover:bg-background/50 transition-all',
|
|
className,
|
|
)}
|
|
>
|
|
<span className="line-clamp-1">{displayText}</span>
|
|
<ChevronDown className="h-4 w-4 opacity-50" />
|
|
</button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent
|
|
className="max-h-96 overflow-auto"
|
|
align="start"
|
|
onCloseAutoFocus={(e) => e.preventDefault()}
|
|
>
|
|
{options.map((option) => (
|
|
<MultiSelectCheckboxItem
|
|
key={option.value}
|
|
checked={value.includes(option.value)}
|
|
onSelect={() => handleSelect(option.value)}
|
|
onCheckedChange={() => handleSelect(option.value)}
|
|
>
|
|
{option.label}
|
|
</MultiSelectCheckboxItem>
|
|
))}
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
);
|
|
}
|