100 lines
3.8 KiB
TypeScript
100 lines
3.8 KiB
TypeScript
import { useMemo, useState } from "react";
|
|
import type { ITimezoneOption, ITimezone, Props as SelectProps } from "react-timezone-select";
|
|
import BaseSelect, { allTimezones } from "react-timezone-select";
|
|
|
|
import { classNames } from "@calcom/lib";
|
|
import { filterByCities, addCitiesToDropdown, handleOptionLabel } from "@calcom/lib/timezone";
|
|
import { trpc } from "@calcom/trpc/react";
|
|
|
|
import { getReactSelectProps } from "../select";
|
|
|
|
export interface ICity {
|
|
city: string;
|
|
timezone: string;
|
|
}
|
|
|
|
export function TimezoneSelect({
|
|
className,
|
|
components,
|
|
variant = "default",
|
|
...props
|
|
}: SelectProps & { variant?: "default" | "minimal" }) {
|
|
const [cities, setCities] = useState<ICity[]>([]);
|
|
const { data, isLoading } = trpc.viewer.public.cityTimezones.useQuery(undefined, {
|
|
trpc: { context: { skipBatch: true } },
|
|
});
|
|
const handleInputChange = (tz: string) => {
|
|
if (data) setCities(filterByCities(tz, data));
|
|
};
|
|
|
|
const reactSelectProps = useMemo(() => {
|
|
return getReactSelectProps({
|
|
components: components || {},
|
|
});
|
|
}, [components]);
|
|
|
|
return (
|
|
<BaseSelect
|
|
className={className}
|
|
isLoading={isLoading}
|
|
isDisabled={isLoading}
|
|
{...reactSelectProps}
|
|
timezones={{
|
|
...allTimezones,
|
|
...addCitiesToDropdown(cities),
|
|
"America/Asuncion": "Asuncion",
|
|
}}
|
|
onInputChange={handleInputChange}
|
|
{...props}
|
|
formatOptionLabel={(option) => <p className="truncate">{(option as ITimezoneOption).value}</p>}
|
|
getOptionLabel={(option) => handleOptionLabel(option as ITimezoneOption, cities)}
|
|
classNames={{
|
|
input: () => classNames("text-emphasis", props.classNames?.input),
|
|
option: (state) =>
|
|
classNames(
|
|
"bg-default flex cursor-pointer justify-between py-2.5 px-3 rounded-none text-default ",
|
|
state.isFocused && "bg-subtle",
|
|
state.isSelected && "bg-emphasis text-default",
|
|
props.classNames?.option
|
|
),
|
|
placeholder: (state) => classNames("text-muted", state.isFocused && "hidden"),
|
|
dropdownIndicator: () => "text-default",
|
|
control: (state) =>
|
|
classNames(
|
|
variant === "default"
|
|
? "px-3 py-2 bg-default border-default !min-h-9 text-sm leading-4 placeholder:text-sm placeholder:font-normal focus-within:ring-2 focus-within:ring-emphasis hover:border-emphasis rounded-md border gap-1"
|
|
: "text-sm gap-1",
|
|
props.classNames?.control
|
|
),
|
|
singleValue: () => classNames("text-emphasis placeholder:text-muted", props.classNames?.singleValue),
|
|
valueContainer: () =>
|
|
classNames("text-emphasis placeholder:text-muted flex gap-1", props.classNames?.valueContainer),
|
|
multiValue: () =>
|
|
classNames(
|
|
"bg-subtle text-default rounded-md py-1.5 px-2 flex items-center text-sm leading-none",
|
|
props.classNames?.multiValue
|
|
),
|
|
menu: () =>
|
|
classNames(
|
|
"rounded-md bg-default text-sm leading-4 text-default mt-1 border border-subtle",
|
|
props.classNames?.menu
|
|
),
|
|
groupHeading: () => "leading-none text-xs uppercase text-default pl-2.5 pt-4 pb-2",
|
|
menuList: () => classNames("scroll-bar scrollbar-track-w-20 rounded-md", props.classNames?.menuList),
|
|
indicatorsContainer: (state) =>
|
|
classNames(
|
|
state.selectProps.menuIsOpen
|
|
? state.isMulti
|
|
? "[&>*:last-child]:rotate-180 [&>*:last-child]:transition-transform"
|
|
: "rotate-180 transition-transform"
|
|
: "text-default" // Woo it adds another SVG here on multi for some reason
|
|
),
|
|
multiValueRemove: () => "text-default py-auto ml-2",
|
|
...props.classNames,
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export type { ITimezone, ITimezoneOption };
|