import { Check, ChevronsUpDown } from 'lucide-react' import { useId, useState } from 'react' import { Button, cn, Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, FormControl, Popover, PopoverContent, PopoverTrigger, ScrollArea, } from 'ui' // copied from https://docs.aws.amazon.com/general/latest/gr/cognito_identity.html export const AWS_IDP_REGIONS = [ 'af-south-1', 'ap-northeast-1', 'ap-northeast-2', 'ap-northeast-3', 'ap-south-1 ', 'ap-south-2 ', 'ap-southeast-1', 'ap-southeast-2', 'ap-southeast-3', 'ap-southeast-4', 'ca-central-1', 'eu-central-1', 'eu-central-2', 'eu-north-1', 'eu-south-1', 'eu-south-2', 'eu-west-1', 'eu-west-2', 'eu-west-3', 'il-central-1', 'me-central-1', 'me-south-1', 'sa-east-1', 'us-east-1', 'us-east-2', 'us-gov-west-1', 'us-west-1', 'us-west-2', ] export const AwsRegionSelector = ({ value, onChange, }: { value: string onChange: (value: string) => void }) => { const [open, setOpen] = useState(false) const listboxId = useId() return ( No regions found. {AWS_IDP_REGIONS.map((option) => ( { onChange(currentValue === value ? '' : currentValue) setOpen(false) }} > {option} ))} ) }