mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
f79bd9df60
* dev: draft and archived issue store * connect draft and archived issues * kanban for draft issues * fix filter store for calendar and kanban * dev: profile issues store and draft issues filters in header * disble issue creation for draft issues * dev: profile issues store filters * disable kanban properties in draft issues * dev: profile issues store filters * dev: seperated adding issues to the cycle and module as seperate methds in cycle and module store * dev: workspace profile issues store * dev: sub group issues in the swimlanes * profile issues and create issue connection * fix profile issues * fix spreadsheet issues * fix dissapearing project from create issue modal * page level modifications * fix additional bugs * dev: issues profile and global iisues and filters update * fix issue related bugs * fix project views for list and kanban * fix build errors --------- Co-authored-by: rahulramesha <rahulramesham@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={`px-2.5 py-1 h-5 flex items-center rounded border-[0.5px] border-custom-border-300 duration-300 outline-none w-full ${
|
|
disabled
|
|
? "cursor-not-allowed text-custom-text-200 pointer-events-none"
|
|
: "cursor-pointer hover:bg-custom-background-80"
|
|
}`}
|
|
>
|
|
<div className="overflow-hidden flex justify-center items-center gap-2">
|
|
<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-shrink-0 flex justify-center items-center"
|
|
onClick={() => {
|
|
if (onChange) onChange(null);
|
|
}}
|
|
>
|
|
<X className="h-2.5 w-2.5" strokeWidth={2} />
|
|
</div>
|
|
</>
|
|
)}
|
|
</div>
|
|
</Popover.Button>
|
|
|
|
<div className={`${open ? "fixed z-20 top-0 left-0 h-full w-full cursor-auto" : ""}`}>
|
|
<Popover.Panel
|
|
ref={dropdownOptions}
|
|
className={`absolute z-10 rounded bg-custom-background-100 text-xs shadow-lg focus:outline-none whitespace-nowrap mt-1`}
|
|
>
|
|
{({ 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>
|
|
);
|
|
});
|