2023-01-30 17:46:02 +00:00
|
|
|
// react-datepicker
|
|
|
|
import DatePicker from "react-datepicker";
|
|
|
|
import "react-datepicker/dist/react-datepicker.css";
|
2023-02-02 13:03:46 +00:00
|
|
|
// helpers
|
|
|
|
import { renderDateFormat } from "helpers/date-time.helper";
|
2023-01-30 17:46:02 +00:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
renderAs?: "input" | "button";
|
|
|
|
value: Date | string | null | undefined;
|
2023-02-01 15:03:18 +00:00
|
|
|
onChange: (val: string | null) => void;
|
2023-01-30 17:46:02 +00:00
|
|
|
placeholder?: string;
|
|
|
|
displayShortForm?: boolean;
|
|
|
|
error?: boolean;
|
|
|
|
className?: string;
|
|
|
|
isClearable?: boolean;
|
2023-02-01 15:03:18 +00:00
|
|
|
disabled?: boolean;
|
2023-01-30 17:46:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export const CustomDatePicker: React.FC<Props> = ({
|
|
|
|
renderAs = "button",
|
|
|
|
value,
|
|
|
|
onChange,
|
|
|
|
placeholder = "Select date",
|
|
|
|
displayShortForm = false,
|
|
|
|
error = false,
|
|
|
|
className = "",
|
|
|
|
isClearable = true,
|
2023-02-01 15:03:18 +00:00
|
|
|
disabled = false,
|
2023-01-30 17:46:02 +00:00
|
|
|
}) => (
|
|
|
|
<DatePicker
|
|
|
|
placeholderText={placeholder}
|
|
|
|
selected={value ? new Date(value) : null}
|
2023-02-01 15:03:18 +00:00
|
|
|
onChange={(val) => {
|
|
|
|
if (!val) onChange(null);
|
2023-02-02 13:03:46 +00:00
|
|
|
else onChange(renderDateFormat(val));
|
2023-02-01 15:03:18 +00:00
|
|
|
}}
|
2023-01-30 17:46:02 +00:00
|
|
|
className={`${className} ${
|
|
|
|
renderAs === "input"
|
2023-03-05 17:54:50 +00:00
|
|
|
? "block border-gray-300 bg-transparent px-3 py-2 text-sm focus:outline-none"
|
2023-01-30 17:46:02 +00:00
|
|
|
: renderAs === "button"
|
2023-03-05 17:54:50 +00:00
|
|
|
? `px-3 py-1.5 text-xs shadow-sm ${
|
2023-02-01 15:03:18 +00:00
|
|
|
disabled ? "" : "hover:bg-gray-100"
|
2023-03-05 17:54:50 +00:00
|
|
|
} duration-300 focus:border-indigo-500 focus:outline-none focus:ring-1 focus:ring-indigo-500`
|
2023-01-30 17:46:02 +00:00
|
|
|
: ""
|
2023-02-01 15:03:18 +00:00
|
|
|
} ${error ? "border-red-500 bg-red-100" : ""} ${
|
|
|
|
disabled ? "cursor-not-allowed" : "cursor-pointer"
|
2023-03-05 17:54:50 +00:00
|
|
|
} w-full rounded-md border bg-transparent caret-transparent`}
|
2023-02-01 15:03:18 +00:00
|
|
|
dateFormat="dd-MM-yyyy"
|
2023-01-30 17:46:02 +00:00
|
|
|
isClearable={isClearable}
|
2023-02-01 15:03:18 +00:00
|
|
|
disabled={disabled}
|
2023-01-30 17:46:02 +00:00
|
|
|
/>
|
|
|
|
);
|