You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
849 B

"use client";
import { Component } from "@/typings/component";
import { Region } from "@/utils/getRegionCodes";
import { Autocomplete, AutocompleteItem } from "@nextui-org/autocomplete";
import { useRouter } from "next/navigation";
export const RegionSwitcher: Component<{
regions: Region[];
currentRegion: Region | null;
}> = ({ currentRegion, regions }) => {
const router = useRouter();
return (
<Autocomplete
defaultItems={regions}
label="Region"
placeholder="Select your region"
isClearable={false}
selectedKey={currentRegion?.code}
onSelectionChange={(key) => {
if (typeof key === "string" && key.length != 0)
return router.push(`/trending?region=${key}`);
}}
className="max-w-xs"
>
{(item) => (
<AutocompleteItem key={item.code}>{item.name}</AutocompleteItem>
)}
</Autocomplete>
);
};