feat: implemented dynamic select

This commit is contained in:
ghost2023
2026-05-22 17:32:35 +03:00
parent 724a99a2fc
commit bf4d9550f1
2 changed files with 101 additions and 0 deletions

View File

@@ -0,0 +1,99 @@
import { useQuery } from "@tanstack/react-query";
import { cn } from "@/lib/utils";
import { api } from "@/services/api";
import { Loader2, AlertCircle } from "lucide-react";
import * as React from "react";
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@edr/ui-common";
export interface DynamicSelectProps {
code: string;
placeholder?: string;
value?: string;
onValueChange?: (value: string) => void;
disabled?: boolean;
className?: string;
}
export function DynamicSelect({
code,
placeholder,
value,
onValueChange,
disabled,
className,
}: DynamicSelectProps) {
const { data, isLoading, isError } = useQuery(
api.dropdownSettings.getByCode.queryOptions({ input: { code } }),
);
if (isLoading) {
return (
<div
className={cn(
"flex h-9 w-full items-center gap-2 rounded-md border border-input bg-transparent px-3 py-2 text-sm text-muted-foreground",
className,
)}
>
<Loader2 className="size-4 animate-spin" />
Loading...
</div>
);
}
if (isError || !data) {
return (
<div
className={cn(
"flex h-9 w-full items-center gap-2 rounded-md border border-destructive/50 bg-destructive/10 px-3 py-2 text-sm text-destructive",
className,
)}
>
<AlertCircle className="size-4 shrink-0" />
Failed to load options
</div>
);
}
const options = [...data.children].sort((a, b) => a.order - b.order);
return (
<Select
value={value}
onValueChange={onValueChange}
disabled={disabled}
>
<SelectTrigger className={cn("w-full", className)}>
<SelectValue placeholder={placeholder ?? `Select ${data.label}`} />
</SelectTrigger>
<SelectContent>
{options.length === 0 ? (
<div className="p-2 text-center text-sm text-muted-foreground">
No options available
</div>
) : (
options.map((option) => (
<SelectItem
key={option.id}
value={option.value}
disabled={option.disabled}
>
{option.label}
{option.note ? (
<span className="ml-1 text-xs text-muted-foreground">
{option.note}
</span>
) : null}
</SelectItem>
))
)}
</SelectContent>
</Select>
);
}

View File

@@ -0,0 +1,2 @@
export { DynamicSelect } from "./DynamicSelect";
export type { DynamicSelectProps } from "./DynamicSelect";