mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
0f99fb302b
* dev: dropdown key down custom hook added * chore: plane ui dropdowns updated * chore: cycle and module tab index added in modals * chore: view and page tab index added in modals * chore: issue modal tab indexing added * chore: project modal tab indexing added * fix: build fix * build-error: build error in pages new structure and reverted back to old page structure --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
263 lines
8.2 KiB
TypeScript
263 lines
8.2 KiB
TypeScript
import React, { useRef, useState } from "react";
|
|
import { Popover } from "@headlessui/react";
|
|
import DatePicker from "react-datepicker";
|
|
import { usePopper } from "react-popper";
|
|
import { CalendarDays, X } from "lucide-react";
|
|
// import "react-datepicker/dist/react-datepicker.css";
|
|
// hooks
|
|
import { useDropdownKeyDown } from "hooks/use-dropdown-key-down";
|
|
import useOutsideClickDetector from "hooks/use-outside-click-detector";
|
|
// helpers
|
|
import { renderFormattedDate } from "helpers/date-time.helper";
|
|
import { cn } from "helpers/common.helper";
|
|
// types
|
|
import { TButtonVariants } from "./types";
|
|
import { Placement } from "@popperjs/core";
|
|
|
|
type Props = {
|
|
buttonClassName?: string;
|
|
buttonContainerClassName?: string;
|
|
buttonVariant: TButtonVariants;
|
|
disabled?: boolean;
|
|
icon?: React.ReactNode;
|
|
isClearable?: boolean;
|
|
minDate?: Date;
|
|
maxDate?: Date;
|
|
onChange: (val: Date | null) => void;
|
|
placeholder: string;
|
|
placement?: Placement;
|
|
value: Date | string | null;
|
|
closeOnSelect?: boolean;
|
|
tabIndex?: number;
|
|
};
|
|
|
|
type ButtonProps = {
|
|
className?: string;
|
|
date: string | Date | null;
|
|
icon: React.ReactNode;
|
|
isClearable: boolean;
|
|
hideText?: boolean;
|
|
onClear: () => void;
|
|
placeholder: string;
|
|
};
|
|
|
|
const BorderButton = (props: ButtonProps) => {
|
|
const { className, date, icon, isClearable, hideText = false, onClear, placeholder } = props;
|
|
|
|
return (
|
|
<div
|
|
className={cn(
|
|
"h-full flex items-center gap-1.5 border-[0.5px] border-custom-border-300 hover:bg-custom-background-80 rounded text-xs px-2 py-0.5",
|
|
className
|
|
)}
|
|
>
|
|
{icon}
|
|
{!hideText && <span className="flex-grow truncate">{date ? renderFormattedDate(date) : placeholder}</span>}
|
|
{isClearable && (
|
|
<X
|
|
className="h-2 w-2 flex-shrink-0"
|
|
onClick={(e) => {
|
|
e.stopPropagation();
|
|
onClear();
|
|
}}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const BackgroundButton = (props: ButtonProps) => {
|
|
const { className, date, icon, isClearable, hideText = false, onClear, placeholder } = props;
|
|
|
|
return (
|
|
<div
|
|
className={cn("h-full flex items-center gap-1.5 rounded text-xs px-2 py-0.5 bg-custom-background-80", className)}
|
|
>
|
|
{icon}
|
|
{!hideText && <span className="flex-grow truncate">{date ? renderFormattedDate(date) : placeholder}</span>}
|
|
{isClearable && (
|
|
<X
|
|
className="h-2 w-2 flex-shrink-0"
|
|
onClick={(e) => {
|
|
e.stopPropagation();
|
|
onClear();
|
|
}}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const TransparentButton = (props: ButtonProps) => {
|
|
const { className, date, icon, isClearable, hideText = false, onClear, placeholder } = props;
|
|
|
|
return (
|
|
<div
|
|
className={cn(
|
|
"h-full flex items-center gap-1.5 rounded text-xs px-2 py-0.5 hover:bg-custom-background-80",
|
|
className
|
|
)}
|
|
>
|
|
{icon}
|
|
{!hideText && <span className="flex-grow truncate">{date ? renderFormattedDate(date) : placeholder}</span>}
|
|
{isClearable && (
|
|
<X
|
|
className="h-2 w-2 flex-shrink-0"
|
|
onClick={(e) => {
|
|
e.stopPropagation();
|
|
onClear();
|
|
}}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export const DateDropdown: React.FC<Props> = (props) => {
|
|
const {
|
|
buttonClassName = "",
|
|
buttonContainerClassName,
|
|
buttonVariant,
|
|
disabled = false,
|
|
icon = <CalendarDays className="h-3 w-3 flex-shrink-0" />,
|
|
isClearable = true,
|
|
minDate,
|
|
maxDate,
|
|
onChange,
|
|
placeholder,
|
|
placement,
|
|
value,
|
|
closeOnSelect = true,
|
|
tabIndex,
|
|
} = props;
|
|
const [isOpen, setIsOpen] = useState(false);
|
|
// refs
|
|
const dropdownRef = useRef<HTMLDivElement | null>(null);
|
|
// popper-js refs
|
|
const [referenceElement, setReferenceElement] = useState<HTMLButtonElement | null>(null);
|
|
const [popperElement, setPopperElement] = useState<HTMLDivElement | null>(null);
|
|
// popper-js init
|
|
const { styles, attributes } = usePopper(referenceElement, popperElement, {
|
|
placement: placement ?? "bottom-start",
|
|
modifiers: [
|
|
{
|
|
name: "preventOverflow",
|
|
options: {
|
|
padding: 12,
|
|
},
|
|
},
|
|
],
|
|
});
|
|
|
|
const isDateSelected = value !== null && value !== undefined && value.toString().trim() !== "";
|
|
|
|
const openDropdown = () => {
|
|
setIsOpen(true);
|
|
if (referenceElement) referenceElement.focus();
|
|
};
|
|
const closeDropdown = () => setIsOpen(false);
|
|
const handleKeyDown = useDropdownKeyDown(openDropdown, closeDropdown, isOpen);
|
|
useOutsideClickDetector(dropdownRef, closeDropdown);
|
|
|
|
return (
|
|
<Popover ref={dropdownRef} tabIndex={tabIndex} className="h-full flex-shrink-0" onKeyDown={handleKeyDown}>
|
|
{({ close }) => (
|
|
<>
|
|
<Popover.Button as={React.Fragment}>
|
|
<button
|
|
ref={setReferenceElement}
|
|
type="button"
|
|
className={cn(
|
|
"block h-full max-w-full outline-none",
|
|
{
|
|
"cursor-not-allowed text-custom-text-200": disabled,
|
|
"cursor-pointer": !disabled,
|
|
},
|
|
buttonContainerClassName
|
|
)}
|
|
onClick={openDropdown}
|
|
>
|
|
{buttonVariant === "border-with-text" ? (
|
|
<BorderButton
|
|
date={value}
|
|
className={buttonClassName}
|
|
icon={icon}
|
|
placeholder={placeholder}
|
|
isClearable={isClearable && isDateSelected}
|
|
onClear={() => onChange(null)}
|
|
/>
|
|
) : buttonVariant === "border-without-text" ? (
|
|
<BorderButton
|
|
date={value}
|
|
className={buttonClassName}
|
|
icon={icon}
|
|
placeholder={placeholder}
|
|
isClearable={isClearable && isDateSelected}
|
|
onClear={() => onChange(null)}
|
|
hideText
|
|
/>
|
|
) : buttonVariant === "background-with-text" ? (
|
|
<BackgroundButton
|
|
date={value}
|
|
className={buttonClassName}
|
|
icon={icon}
|
|
placeholder={placeholder}
|
|
isClearable={isClearable && isDateSelected}
|
|
onClear={() => onChange(null)}
|
|
/>
|
|
) : buttonVariant === "background-without-text" ? (
|
|
<BackgroundButton
|
|
date={value}
|
|
className={buttonClassName}
|
|
icon={icon}
|
|
placeholder={placeholder}
|
|
isClearable={isClearable && isDateSelected}
|
|
onClear={() => onChange(null)}
|
|
hideText
|
|
/>
|
|
) : buttonVariant === "transparent-with-text" ? (
|
|
<TransparentButton
|
|
date={value}
|
|
className={buttonClassName}
|
|
icon={icon}
|
|
placeholder={placeholder}
|
|
isClearable={isClearable && isDateSelected}
|
|
onClear={() => onChange(null)}
|
|
/>
|
|
) : buttonVariant === "transparent-without-text" ? (
|
|
<TransparentButton
|
|
date={value}
|
|
className={buttonClassName}
|
|
icon={icon}
|
|
placeholder={placeholder}
|
|
isClearable={isClearable && isDateSelected}
|
|
onClear={() => onChange(null)}
|
|
hideText
|
|
/>
|
|
) : null}
|
|
</button>
|
|
</Popover.Button>
|
|
{isOpen && (
|
|
<Popover.Panel className="fixed z-10" static>
|
|
<div className="my-1" ref={setPopperElement} style={styles.popper} {...attributes.popper}>
|
|
<DatePicker
|
|
selected={value ? new Date(value) : null}
|
|
onChange={(val) => {
|
|
onChange(val);
|
|
if (closeOnSelect) close();
|
|
}}
|
|
dateFormat="dd-MM-yyyy"
|
|
minDate={minDate}
|
|
maxDate={maxDate}
|
|
calendarClassName="shadow-custom-shadow-rg rounded"
|
|
inline
|
|
/>
|
|
</div>
|
|
</Popover.Panel>
|
|
)}
|
|
</>
|
|
)}
|
|
</Popover>
|
|
);
|
|
};
|