first commit
This commit is contained in:
@@ -0,0 +1,146 @@
|
||||
import { useMemo, useState } from "react";
|
||||
import type { ITimezoneOption, ITimezone, Props as SelectProps } from "react-timezone-select";
|
||||
import BaseSelect from "react-timezone-select";
|
||||
|
||||
import { classNames } from "@calcom/lib";
|
||||
import { CALCOM_VERSION } from "@calcom/lib/constants";
|
||||
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 type TimezoneSelectProps = SelectProps & {
|
||||
variant?: "default" | "minimal";
|
||||
timezoneSelectCustomClassname?: string;
|
||||
};
|
||||
export function TimezoneSelect(props: TimezoneSelectProps) {
|
||||
const { data, isPending } = trpc.viewer.timezones.cityTimezones.useQuery(
|
||||
{
|
||||
CalComVersion: CALCOM_VERSION,
|
||||
},
|
||||
{
|
||||
trpc: { context: { skipBatch: true } },
|
||||
}
|
||||
);
|
||||
|
||||
return <TimezoneSelectComponent data={data} isPending={isPending} {...props} />;
|
||||
}
|
||||
|
||||
export type TimezoneSelectComponentProps = SelectProps & {
|
||||
variant?: "default" | "minimal";
|
||||
isPending: boolean;
|
||||
data: ICity[] | undefined;
|
||||
timezoneSelectCustomClassname?: string;
|
||||
};
|
||||
export function TimezoneSelectComponent({
|
||||
className,
|
||||
classNames: timezoneClassNames,
|
||||
timezoneSelectCustomClassname,
|
||||
components,
|
||||
variant = "default",
|
||||
data,
|
||||
isPending,
|
||||
value,
|
||||
...props
|
||||
}: TimezoneSelectComponentProps) {
|
||||
const [cities, setCities] = useState<ICity[]>([]);
|
||||
const handleInputChange = (tz: string) => {
|
||||
if (data) setCities(filterByCities(tz, data));
|
||||
};
|
||||
|
||||
const reactSelectProps = useMemo(() => {
|
||||
return getReactSelectProps({
|
||||
components: components || {},
|
||||
});
|
||||
}, [components]);
|
||||
|
||||
return (
|
||||
<BaseSelect
|
||||
value={value}
|
||||
className={`${className} ${timezoneSelectCustomClassname}`}
|
||||
isLoading={isPending}
|
||||
isDisabled={isPending}
|
||||
{...reactSelectProps}
|
||||
timezones={{
|
||||
...(data ? addCitiesToDropdown(data) : {}),
|
||||
...addCitiesToDropdown(cities),
|
||||
}}
|
||||
onInputChange={handleInputChange}
|
||||
{...props}
|
||||
formatOptionLabel={(option) => (
|
||||
<p className="truncate">{(option as ITimezoneOption).value.replace(/_/g, " ")}</p>
|
||||
)}
|
||||
getOptionLabel={(option) => handleOptionLabel(option as ITimezoneOption, cities)}
|
||||
classNames={{
|
||||
...timezoneClassNames,
|
||||
input: (state) =>
|
||||
classNames(
|
||||
"text-emphasis h-6 md:max-w-[145px] max-w-[250px]",
|
||||
timezoneClassNames?.input && timezoneClassNames.input(state)
|
||||
),
|
||||
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",
|
||||
timezoneClassNames?.option && timezoneClassNames.option(state)
|
||||
),
|
||||
placeholder: (state) => classNames("text-muted", state.isFocused && "hidden"),
|
||||
dropdownIndicator: () => "text-default",
|
||||
control: (state) =>
|
||||
classNames(
|
||||
"!cursor-pointer",
|
||||
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",
|
||||
timezoneClassNames?.control && timezoneClassNames.control(state)
|
||||
),
|
||||
singleValue: (state) =>
|
||||
classNames(
|
||||
"text-emphasis placeholder:text-muted",
|
||||
timezoneClassNames?.singleValue && timezoneClassNames.singleValue(state)
|
||||
),
|
||||
valueContainer: (state) =>
|
||||
classNames(
|
||||
"text-emphasis placeholder:text-muted flex gap-1",
|
||||
timezoneClassNames?.valueContainer && timezoneClassNames.valueContainer(state)
|
||||
),
|
||||
multiValue: (state) =>
|
||||
classNames(
|
||||
"bg-subtle text-default rounded-md py-1.5 px-2 flex items-center text-sm leading-none",
|
||||
timezoneClassNames?.multiValue && timezoneClassNames.multiValue(state)
|
||||
),
|
||||
menu: (state) =>
|
||||
classNames(
|
||||
"rounded-md bg-default text-sm leading-4 text-default mt-1 border border-subtle",
|
||||
state.selectProps.menuIsOpen && "shadow-dropdown", // Add box-shadow when menu is open
|
||||
timezoneClassNames?.menu && timezoneClassNames.menu(state)
|
||||
),
|
||||
groupHeading: () => "leading-none text-xs uppercase text-default pl-2.5 pt-4 pb-2",
|
||||
menuList: (state) =>
|
||||
classNames(
|
||||
"scroll-bar scrollbar-track-w-20 rounded-md",
|
||||
timezoneClassNames?.menuList && timezoneClassNames.menuList(state)
|
||||
),
|
||||
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
|
||||
timezoneClassNames?.indicatorsContainer && timezoneClassNames.indicatorsContainer(state)
|
||||
),
|
||||
multiValueRemove: () => "text-default py-auto ml-2",
|
||||
noOptionsMessage: () => "h-12 py-2 flex items-center justify-center",
|
||||
}}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
export type { ITimezone, ITimezoneOption };
|
||||
Reference in New Issue
Block a user