mirror of
https://github.com/RayLabsHQ/gitea-mirror.git
synced 2025-12-08 04:26:44 +03:00
141 lines
4.3 KiB
TypeScript
141 lines
4.3 KiB
TypeScript
import * as React from "react";
|
|
import { ChevronsUpDown, Check } from "lucide-react";
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Command,
|
|
CommandEmpty,
|
|
CommandGroup,
|
|
CommandInput,
|
|
CommandItem,
|
|
CommandList,
|
|
} from "@/components/ui/command";
|
|
import {
|
|
Popover,
|
|
PopoverContent,
|
|
PopoverTrigger,
|
|
} from "@/components/ui/popover";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
type ComboboxProps = {
|
|
options: string[];
|
|
value: string;
|
|
onChange: (value: string) => void;
|
|
placeholder?: string;
|
|
label?: string;
|
|
};
|
|
|
|
export function OwnerCombobox({ options, value, onChange, placeholder = "Owner" }: ComboboxProps) {
|
|
const [open, setOpen] = React.useState(false);
|
|
return (
|
|
<Popover open={open} onOpenChange={setOpen}>
|
|
<PopoverTrigger asChild>
|
|
<Button
|
|
variant="outline"
|
|
role="combobox"
|
|
aria-expanded={open}
|
|
className="w-full sm:w-[160px] justify-between h-10"
|
|
>
|
|
<span className={cn(
|
|
"truncate",
|
|
!value && "text-muted-foreground"
|
|
)}>
|
|
{value || "All owners"}
|
|
</span>
|
|
<ChevronsUpDown className="ml-2 h-4 w-4 shrink-0 opacity-50" />
|
|
</Button>
|
|
</PopoverTrigger>
|
|
<PopoverContent className="w-[200px] sm:w-[160px] p-0">
|
|
<Command>
|
|
<CommandInput placeholder="Search owners..." />
|
|
<CommandList>
|
|
<CommandEmpty>No owners found.</CommandEmpty>
|
|
<CommandGroup>
|
|
<CommandItem
|
|
key="all"
|
|
value=""
|
|
onSelect={() => {
|
|
onChange("");
|
|
setOpen(false);
|
|
}}
|
|
>
|
|
<Check className={cn("mr-2 h-4 w-4", value === "" ? "opacity-100" : "opacity-0")} />
|
|
All owners
|
|
</CommandItem>
|
|
{options.map((option) => (
|
|
<CommandItem
|
|
key={option}
|
|
value={option}
|
|
onSelect={() => {
|
|
onChange(option);
|
|
setOpen(false);
|
|
}}
|
|
>
|
|
<Check className={cn("mr-2 h-4 w-4", value === option ? "opacity-100" : "opacity-0")} />
|
|
{option}
|
|
</CommandItem>
|
|
))}
|
|
</CommandGroup>
|
|
</CommandList>
|
|
</Command>
|
|
</PopoverContent>
|
|
</Popover>
|
|
);
|
|
}
|
|
|
|
export function OrganizationCombobox({ options, value, onChange, placeholder = "Organization" }: ComboboxProps) {
|
|
const [open, setOpen] = React.useState(false);
|
|
return (
|
|
<Popover open={open} onOpenChange={setOpen}>
|
|
<PopoverTrigger asChild>
|
|
<Button
|
|
variant="outline"
|
|
role="combobox"
|
|
aria-expanded={open}
|
|
className="w-full sm:w-[160px] justify-between h-10"
|
|
>
|
|
<span className={cn(
|
|
"truncate",
|
|
!value && "text-muted-foreground"
|
|
)}>
|
|
{value || "All organizations"}
|
|
</span>
|
|
<ChevronsUpDown className="ml-2 h-4 w-4 shrink-0 opacity-50" />
|
|
</Button>
|
|
</PopoverTrigger>
|
|
<PopoverContent className="w-[200px] sm:w-[160px] p-0">
|
|
<Command>
|
|
<CommandInput placeholder="Search organizations..." />
|
|
<CommandList>
|
|
<CommandEmpty>No organizations found.</CommandEmpty>
|
|
<CommandGroup>
|
|
<CommandItem
|
|
key="all"
|
|
value=""
|
|
onSelect={() => {
|
|
onChange("");
|
|
setOpen(false);
|
|
}}
|
|
>
|
|
<Check className={cn("mr-2 h-4 w-4", value === "" ? "opacity-100" : "opacity-0")} />
|
|
All organizations
|
|
</CommandItem>
|
|
{options.map((option) => (
|
|
<CommandItem
|
|
key={option}
|
|
value={option}
|
|
onSelect={() => {
|
|
onChange(option);
|
|
setOpen(false);
|
|
}}
|
|
>
|
|
<Check className={cn("mr-2 h-4 w-4", value === option ? "opacity-100" : "opacity-0")} />
|
|
{option}
|
|
</CommandItem>
|
|
))}
|
|
</CommandGroup>
|
|
</CommandList>
|
|
</Command>
|
|
</PopoverContent>
|
|
</Popover>
|
|
);
|
|
} |