forked from github/plane
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>
70 lines
2.4 KiB
TypeScript
70 lines
2.4 KiB
TypeScript
import React from "react";
|
|
|
|
import { Popover, Transition } from "@headlessui/react";
|
|
// react-datepicker
|
|
import DatePicker from "react-datepicker";
|
|
// icons
|
|
import { CalendarDays, X } from "lucide-react";
|
|
// import "react-datepicker/dist/react-datepicker.css";
|
|
import { renderDateFormat, renderShortDateWithYearFormat } from "helpers/date-time.helper";
|
|
|
|
type Props = {
|
|
value: string | null;
|
|
onChange: (val: string | null) => void;
|
|
label: string;
|
|
minDate?: Date;
|
|
maxDate?: Date;
|
|
closeOnSelect?: boolean;
|
|
};
|
|
|
|
export const DateSelect: React.FC<Props> = ({ value, onChange, label, minDate, maxDate, closeOnSelect = true }) => (
|
|
<Popover className="relative flex items-center justify-center rounded-lg">
|
|
{({ close }) => (
|
|
<>
|
|
<Popover.Button className="flex w-full cursor-pointer items-center justify-center gap-1 rounded border-[0.5px] border-custom-border-300 px-2 py-1 text-xs text-custom-text-200 hover:bg-custom-background-80">
|
|
{value ? (
|
|
<>
|
|
<CalendarDays className="h-3 w-3 flex-shrink-0" />
|
|
<span>{renderShortDateWithYearFormat(value)}</span>
|
|
<button onClick={() => onChange(null)}>
|
|
<X className="h-3 w-3" />
|
|
</button>
|
|
</>
|
|
) : (
|
|
<>
|
|
<CalendarDays className="h-3 w-3 flex-shrink-0 text-custom-text-300" />
|
|
<span className="text-custom-text-300">{label}</span>
|
|
</>
|
|
)}
|
|
</Popover.Button>
|
|
|
|
<Transition
|
|
as={React.Fragment}
|
|
enter="transition ease-out duration-200"
|
|
enterFrom="opacity-0 translate-y-1"
|
|
enterTo="opacity-100 translate-y-0"
|
|
leave="transition ease-in duration-150"
|
|
leaveFrom="opacity-100 translate-y-0"
|
|
leaveTo="opacity-0 translate-y-1"
|
|
>
|
|
<Popover.Panel className="absolute -left-10 top-10 z-20 transform overflow-hidden">
|
|
<DatePicker
|
|
selected={value ? new Date(value) : null}
|
|
onChange={(val) => {
|
|
if (!val) onChange("");
|
|
else onChange(renderDateFormat(val));
|
|
|
|
if (closeOnSelect) close();
|
|
}}
|
|
dateFormat="dd-MM-yyyy"
|
|
minDate={minDate}
|
|
maxDate={maxDate}
|
|
inline
|
|
/>
|
|
</Popover.Panel>
|
|
</Transition>
|
|
</>
|
|
)}
|
|
</Popover>
|
|
);
|