mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
5b0066140f
* chore: format all files in the project * fix: removing @types/react from dependencies * fix: adding prettier and eslint config * chore: format files * fix: upgrading turbo version * chore: ignoring warnings and adding todos * fix: updated the type of bubble menu item in the document editor * chore: format files --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
99 lines
3.3 KiB
TypeScript
99 lines
3.3 KiB
TypeScript
import React from "react";
|
|
// headless ui
|
|
import { Popover } from "@headlessui/react";
|
|
// lucide icons
|
|
import { Calendar, X } from "lucide-react";
|
|
// react date picker
|
|
import DatePicker from "react-datepicker";
|
|
// mobx
|
|
import { observer } from "mobx-react-lite";
|
|
// components
|
|
import { Tooltip } from "@plane/ui";
|
|
// hooks
|
|
import useDynamicDropdownPosition from "hooks/use-dynamic-dropdown";
|
|
// helpers
|
|
import { renderDateFormat } from "helpers/date-time.helper";
|
|
|
|
export interface IIssuePropertyDate {
|
|
value: any;
|
|
onChange: (date: any) => void;
|
|
disabled?: boolean;
|
|
placeHolder?: string;
|
|
}
|
|
|
|
export const IssuePropertyDate: React.FC<IIssuePropertyDate> = observer((props) => {
|
|
const { value, onChange, disabled, placeHolder } = props;
|
|
|
|
const dropdownBtn = React.useRef<any>(null);
|
|
const dropdownOptions = React.useRef<any>(null);
|
|
|
|
const [isOpen, setIsOpen] = React.useState<boolean>(false);
|
|
|
|
useDynamicDropdownPosition(isOpen, () => setIsOpen(false), dropdownBtn, dropdownOptions);
|
|
|
|
return (
|
|
<Popover as="div" className="relative">
|
|
{({ open }) => {
|
|
if (open) {
|
|
if (!isOpen) setIsOpen(true);
|
|
} else if (isOpen) setIsOpen(false);
|
|
|
|
return (
|
|
<>
|
|
<Popover.Button
|
|
ref={dropdownBtn}
|
|
className={`flex h-5 w-full items-center rounded border-[0.5px] border-custom-border-300 px-2.5 py-1 outline-none duration-300 ${
|
|
disabled
|
|
? "pointer-events-none cursor-not-allowed text-custom-text-200"
|
|
: "cursor-pointer hover:bg-custom-background-80"
|
|
}`}
|
|
>
|
|
<div className="flex items-center justify-center gap-2 overflow-hidden">
|
|
<Calendar className="h-3 w-3" strokeWidth={2} />
|
|
{value && (
|
|
<>
|
|
<Tooltip tooltipHeading={placeHolder} tooltipContent={value ?? "None"}>
|
|
<div className="text-xs">{value}</div>
|
|
</Tooltip>
|
|
|
|
<div
|
|
className="flex flex-shrink-0 items-center justify-center"
|
|
onClick={() => {
|
|
if (onChange) onChange(null);
|
|
}}
|
|
>
|
|
<X className="h-2.5 w-2.5" strokeWidth={2} />
|
|
</div>
|
|
</>
|
|
)}
|
|
</div>
|
|
</Popover.Button>
|
|
|
|
<div className={`${open ? "fixed left-0 top-0 z-20 h-full w-full cursor-auto" : ""}`}>
|
|
<Popover.Panel
|
|
ref={dropdownOptions}
|
|
className={`absolute z-10 mt-1 whitespace-nowrap rounded bg-custom-background-100 text-xs shadow-lg focus:outline-none`}
|
|
>
|
|
{({ close }) => (
|
|
<DatePicker
|
|
selected={value ? new Date(value) : new Date()}
|
|
onChange={(val: any) => {
|
|
if (onChange && val) {
|
|
onChange(renderDateFormat(val));
|
|
close();
|
|
}
|
|
}}
|
|
dateFormat="dd-MM-yyyy"
|
|
calendarClassName="h-full"
|
|
inline
|
|
/>
|
|
)}
|
|
</Popover.Panel>
|
|
</div>
|
|
</>
|
|
);
|
|
}}
|
|
</Popover>
|
|
);
|
|
});
|