forked from github/plane
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
72 lines
1.9 KiB
TypeScript
72 lines
1.9 KiB
TypeScript
// react-datepicker
|
|
import DatePicker from "react-datepicker";
|
|
import "react-datepicker/dist/react-datepicker.css";
|
|
// helpers
|
|
import { renderDateFormat } from "helpers/date-time.helper";
|
|
|
|
type Props = {
|
|
renderAs?: "input" | "button";
|
|
value: Date | string | null | undefined;
|
|
onChange: (val: string | null) => void;
|
|
handleOnOpen?: () => void;
|
|
handleOnClose?: () => void;
|
|
placeholder?: string;
|
|
displayShortForm?: boolean;
|
|
error?: boolean;
|
|
noBorder?: boolean;
|
|
wrapperClassName?: string;
|
|
className?: string;
|
|
isClearable?: boolean;
|
|
disabled?: boolean;
|
|
maxDate?: Date;
|
|
minDate?: Date;
|
|
};
|
|
|
|
export const CustomDatePicker: React.FC<Props> = ({
|
|
renderAs = "button",
|
|
value,
|
|
onChange,
|
|
handleOnOpen,
|
|
handleOnClose,
|
|
placeholder = "Select date",
|
|
displayShortForm = false,
|
|
error = false,
|
|
noBorder = false,
|
|
wrapperClassName = "",
|
|
className = "",
|
|
isClearable = true,
|
|
disabled = false,
|
|
maxDate,
|
|
minDate,
|
|
}) => (
|
|
<DatePicker
|
|
placeholderText={placeholder}
|
|
selected={value ? new Date(value) : null}
|
|
onChange={(val) => {
|
|
if (!val) onChange(null);
|
|
else onChange(renderDateFormat(val));
|
|
}}
|
|
onCalendarOpen={handleOnOpen}
|
|
onCalendarClose={handleOnClose}
|
|
wrapperClassName={wrapperClassName}
|
|
className={`${
|
|
renderAs === "input"
|
|
? "block px-2 py-2 text-sm focus:outline-none"
|
|
: renderAs === "button"
|
|
? `px-2 py-1 text-xs shadow-sm ${
|
|
disabled ? "" : "hover:bg-custom-background-80"
|
|
} duration-300`
|
|
: ""
|
|
} ${error ? "border-red-500 bg-red-100" : ""} ${
|
|
disabled ? "cursor-not-allowed" : "cursor-pointer"
|
|
} ${
|
|
noBorder ? "" : "border border-custom-border-200"
|
|
} w-full rounded-md caret-transparent outline-none ${className}`}
|
|
dateFormat="MMM dd, yyyy"
|
|
isClearable={isClearable}
|
|
disabled={disabled}
|
|
maxDate={maxDate}
|
|
minDate={minDate}
|
|
/>
|
|
);
|