Files
OmniRoute/src/shared/components/Select.tsx
Diego Rodrigues de Sa e Souza 2c09f5c0c3 feat(dashboard): make identity grid visible + unify focus ring on accent (C6) (#4141)
Grid wallpaper opacity tuned up so it's actually visible on the dense
dashboard: light 0.045->0.07, dark 0.035->0.06 (the site's 0.045/0.035
read as invisible behind the cards/chrome that cover most of the viewport).

Focus-ring reconcile (design.md C6): the form controls (Input, Select,
Textarea, Toggle, Checkbox) now focus on the accent (violet) ring to match
the global --focus-ring, instead of the red ring-primary that collided with
the red error state. Error rings stay red.

Guard test updated (grid opacity + new C6 assertion). Build verified:
--grid-line compiles to #00000012 / #ffffff0f and focus:ring-accent/30 +
focus:border-accent/50 utilities are generated.
2026-06-18 01:45:22 -03:00

111 lines
3.3 KiB
TypeScript

"use client";
import { useId } from "react";
import { cn } from "@/shared/utils/cn";
interface SelectOption {
value: string;
label: string;
}
interface SelectProps extends Omit<React.SelectHTMLAttributes<HTMLSelectElement>, "size"> {
label?: React.ReactNode;
options?: SelectOption[];
placeholder?: string;
error?: React.ReactNode;
hint?: React.ReactNode;
selectClassName?: string;
}
export default function Select({
label,
options = [],
value,
onChange,
placeholder = "Select an option",
error,
hint,
disabled = false,
required = false,
className,
selectClassName,
id: externalId,
children,
...props
}: SelectProps) {
const generatedId = useId();
const selectId = externalId || generatedId;
const errorId = error ? `${selectId}-error` : undefined;
const hintId = hint && !error ? `${selectId}-hint` : undefined;
const describedBy = [errorId, hintId].filter(Boolean).join(" ") || undefined;
return (
<div className={cn("flex flex-col gap-1.5", className)}>
{label && (
<label htmlFor={selectId} className="text-sm font-medium text-text-main">
{label}
{required && (
<span className="text-red-500 ml-1" aria-hidden="true">
*
</span>
)}
</label>
)}
<div className="relative">
<select
id={selectId}
value={value}
onChange={onChange}
disabled={disabled}
required={required}
aria-required={required || undefined}
aria-invalid={error ? true : undefined}
aria-describedby={describedBy}
className={cn(
"w-full py-2 px-3 pe-10 text-sm text-text-main",
"bg-surface border border-black/10 dark:border-white/10 rounded-control appearance-none",
"focus:ring-1 focus:ring-accent/30 focus:border-accent/50 focus:outline-none",
"transition-all disabled:opacity-50 disabled:cursor-not-allowed",
"text-[16px] sm:text-sm",
error ? "border-red-500 focus:border-red-500 focus:ring-red-500/20" : "",
selectClassName
)}
{...props}
>
{!children && placeholder && (
<option value="" disabled className="bg-surface text-text-muted">
{placeholder}
</option>
)}
{!children &&
options.map((option) => (
<option key={option.value} value={option.value} className="bg-surface text-text-main">
{option.label}
</option>
))}
{children}
</select>
<div
className="absolute inset-y-0 end-0 flex items-center pe-3 pointer-events-none text-text-muted"
aria-hidden="true"
>
<span className="material-symbols-outlined text-[20px]">expand_more</span>
</div>
</div>
{error && (
<p id={errorId} className="text-xs text-red-500 flex items-center gap-1" role="alert">
<span className="material-symbols-outlined text-[14px]" aria-hidden="true">
error
</span>
{error}
</p>
)}
{hint && !error && (
<p id={hintId} className="text-xs text-text-muted">
{hint}
</p>
)}
</div>
);
}