mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
* chore: project access specifier description added * chore: project access specifier description added to the project settings form * chore: remove fullstop * fix: dropdown width
146 lines
4.5 KiB
TypeScript
146 lines
4.5 KiB
TypeScript
import React, { useRef, useState } from "react";
|
|
import { usePopper } from "react-popper";
|
|
import { Listbox } from "@headlessui/react";
|
|
import { Check, ChevronDown } from "lucide-react";
|
|
// hooks
|
|
import { useDropdownKeyDown } from "../hooks/use-dropdown-key-down";
|
|
import useOutsideClickDetector from "../hooks/use-outside-click-detector";
|
|
// helpers
|
|
import { cn } from "../../helpers";
|
|
// types
|
|
import { ICustomSelectItemProps, ICustomSelectProps } from "./helper";
|
|
|
|
const CustomSelect = (props: ICustomSelectProps) => {
|
|
const {
|
|
customButtonClassName = "",
|
|
buttonClassName = "",
|
|
placement,
|
|
children,
|
|
className = "",
|
|
customButton,
|
|
disabled = false,
|
|
input = false,
|
|
label,
|
|
maxHeight = "md",
|
|
noChevron = false,
|
|
onChange,
|
|
optionsClassName = "",
|
|
value,
|
|
tabIndex,
|
|
} = props;
|
|
// states
|
|
const [referenceElement, setReferenceElement] = useState<HTMLButtonElement | null>(null);
|
|
const [popperElement, setPopperElement] = useState<HTMLDivElement | null>(null);
|
|
const [isOpen, setIsOpen] = useState(false);
|
|
// refs
|
|
const dropdownRef = useRef<HTMLDivElement | null>(null);
|
|
|
|
const { styles, attributes } = usePopper(referenceElement, popperElement, {
|
|
placement: placement ?? "bottom-start",
|
|
});
|
|
|
|
const openDropdown = () => {
|
|
setIsOpen(true);
|
|
if (referenceElement) referenceElement.focus();
|
|
};
|
|
const closeDropdown = () => setIsOpen(false);
|
|
const handleKeyDown = useDropdownKeyDown(openDropdown, closeDropdown, isOpen);
|
|
useOutsideClickDetector(dropdownRef, closeDropdown);
|
|
|
|
return (
|
|
<Listbox
|
|
as="div"
|
|
ref={dropdownRef}
|
|
tabIndex={tabIndex}
|
|
value={value}
|
|
onChange={onChange}
|
|
className={cn("relative flex-shrink-0 text-left", className)}
|
|
onKeyDown={handleKeyDown}
|
|
disabled={disabled}
|
|
>
|
|
<>
|
|
{customButton ? (
|
|
<Listbox.Button as={React.Fragment}>
|
|
<button
|
|
ref={setReferenceElement}
|
|
type="button"
|
|
className={`flex items-center justify-between gap-1 text-xs ${
|
|
disabled ? "cursor-not-allowed text-custom-text-200" : "cursor-pointer hover:bg-custom-background-80"
|
|
} ${customButtonClassName}`}
|
|
onClick={openDropdown}
|
|
>
|
|
{customButton}
|
|
</button>
|
|
</Listbox.Button>
|
|
) : (
|
|
<Listbox.Button as={React.Fragment}>
|
|
<button
|
|
ref={setReferenceElement}
|
|
type="button"
|
|
className={`flex w-full items-center justify-between gap-1 rounded border-[0.5px] border-custom-border-300 ${
|
|
input ? "px-3 py-2 text-sm" : "px-2 py-1 text-xs"
|
|
} ${
|
|
disabled ? "cursor-not-allowed text-custom-text-200" : "cursor-pointer hover:bg-custom-background-80"
|
|
} ${buttonClassName}`}
|
|
onClick={openDropdown}
|
|
>
|
|
{label}
|
|
{!noChevron && !disabled && <ChevronDown className="h-3 w-3" aria-hidden="true" />}
|
|
</button>
|
|
</Listbox.Button>
|
|
)}
|
|
</>
|
|
{isOpen && (
|
|
<Listbox.Options className="fixed z-10" onClick={() => closeDropdown()} static>
|
|
<div
|
|
className={cn(
|
|
"my-1 overflow-y-scroll rounded-md border-[0.5px] border-custom-border-300 bg-custom-background-100 px-2 py-2.5 text-xs shadow-custom-shadow-rg focus:outline-none min-w-[12rem] whitespace-nowrap",
|
|
{
|
|
"max-h-60": maxHeight === "lg",
|
|
"max-h-48": maxHeight === "md",
|
|
"max-h-36": maxHeight === "rg",
|
|
"max-h-28": maxHeight === "sm",
|
|
},
|
|
optionsClassName
|
|
)}
|
|
ref={setPopperElement}
|
|
style={styles.popper}
|
|
{...attributes.popper}
|
|
>
|
|
{children}
|
|
</div>
|
|
</Listbox.Options>
|
|
)}
|
|
</Listbox>
|
|
);
|
|
};
|
|
|
|
const Option = (props: ICustomSelectItemProps) => {
|
|
const { children, value, className } = props;
|
|
return (
|
|
<Listbox.Option
|
|
value={value}
|
|
className={({ active }) =>
|
|
cn(
|
|
"cursor-pointer select-none truncate rounded px-1 py-1.5 text-custom-text-200 flex items-center justify-between gap-2",
|
|
{
|
|
"bg-custom-background-80": active,
|
|
},
|
|
className
|
|
)
|
|
}
|
|
>
|
|
{({ selected }) => (
|
|
<>
|
|
{children}
|
|
{selected && <Check className="h-3.5 w-3.5 flex-shrink-0" />}
|
|
</>
|
|
)}
|
|
</Listbox.Option>
|
|
);
|
|
};
|
|
|
|
CustomSelect.Option = Option;
|
|
|
|
export { CustomSelect };
|